ACloudViewer  3.9.4
A Modern Library for 3D Data Processing
t.cpp
Go to the documentation of this file.
1 // ----------------------------------------------------------------------------
2 // - CloudViewer: www.cloudViewer.org -
3 // ----------------------------------------------------------------------------
4 // Copyright (c) 2018-2024 www.cloudViewer.org
5 // SPDX-License-Identifier: MIT
6 // ----------------------------------------------------------------------------
7 
8 #include "pybind/t/t.h"
9 
12 #include "pybind/t/io/io.h"
14 
15 namespace cloudViewer {
16 namespace t {
17 
18 void pybind_t(py::module& m) {
19  py::module m_submodule = m.def_submodule("t");
20  pipelines::pybind_pipelines(m_submodule);
21  geometry::pybind_geometry(m_submodule);
22  io::pybind_io(m_submodule);
23 }
24 
25 } // namespace t
26 } // namespace cloudViewer
void pybind_geometry(py::module &m)
Definition: geometry.cpp:43
void pybind_io(py::module &m)
Definition: io.cpp:16
void pybind_pipelines(py::module &m)
Definition: pipelines.cpp:20
void pybind_t(py::module &m)
Definition: t.cpp:18
Generic file read and write utility for python interface.