MRPT  2.0.4
pointcloud_adapters.h
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 #pragma once
10 
11 #include <cstdint>
12 
13 namespace mrpt::opengl
14 {
15 // clang-format off
16 /** \defgroup mrpt_adapters_grp Pointcloud adapter (wrapper) template classes (in #include <mrpt/opengl/pointcloud_adapters.h>)
17  * \addtogroup mrpt_opengl_grp
18  */
19 // clang-format on
20 
21 /** \addtogroup mrpt_adapters_grp
22  * @{ */
23 
24 /** An adapter to different kinds of point cloud object.
25  * Implemented as a pure C++ template with specializations for the highest
26  * flexibility and efficiency in compiler-generated implementations.
27  * Usage:
28  * \code
29  * PC my_obj;
30  * my_obj.specific_methods();
31  * // ...
32  * PointCloudAdapter<PC> pca(my_obj);
33  * pca.unified_interface_methods();
34  * // ...
35  * \endcode
36  * See specializations for details on the exposed API.
37  */
38 template <class POINTCLOUD>
40 
41 /** @} */ // end of grouping
42 
43 } // namespace mrpt::opengl
An adapter to different kinds of point cloud object.
The namespace for 3D scene representation and rendering.
Definition: CGlCanvasBase.h:13



Page generated by Doxygen 1.8.14 for MRPT 2.0.4 Git: 33de1d0ad Sat Jun 20 11:02:42 2020 +0200 at sáb jun 20 17:35:17 CEST 2020