mirror of https://github.com/CGAL/cgal
59 lines
1.9 KiB
Plaintext
59 lines
1.9 KiB
Plaintext
/// \defgroup PkgPointSet3Ref 3D Point Set Reference
|
|
|
|
/*!
|
|
\code
|
|
#include <CGAL/draw_point_set_3.h>
|
|
\endcode
|
|
*/
|
|
/// \defgroup PkgDrawPointSet3D Draw a 3D Point Set
|
|
/// \ingroup PkgPointSet3Ref
|
|
|
|
/*!
|
|
\addtogroup PkgPointSet3Ref
|
|
|
|
\cgalPkgDescriptionBegin{3D Point Set, PkgPointSet3}
|
|
\cgalPkgPicture{point_set_3.png}
|
|
\cgalPkgSummaryBegin
|
|
\cgalPkgAuthors{Simon Giraudot}
|
|
\cgalPkgDesc{This component provides the user with a flexible 3D point set data structure. The user can define any additional property needed such as normal vectors, colors or labels. \cgal algorithms can be easily applied to this data structure.}
|
|
\cgalPkgManuals{Chapter_Point_Set_3, PkgPointSet3Ref}
|
|
\cgalPkgSummaryEnd
|
|
\cgalPkgShortInfoBegin
|
|
\cgalPkgSince{4.10}
|
|
\cgalPkgBib{cgal:g-ps}
|
|
\cgalPkgLicense{\ref licensesGPL "GPL"}
|
|
\cgalPkgDemo{Polyhedron demo,polyhedron_3.zip}
|
|
\cgalPkgShortInfoEnd
|
|
\cgalPkgDescriptionEnd
|
|
|
|
\cgalClassifedRefPages
|
|
|
|
\cgalCRPSection{Class}
|
|
- `CGAL::Point_set_3<Point,Vector>`
|
|
|
|
\cgalCRPSection{Draw a 3D Point Set}
|
|
- \link PkgDrawPointSet3D CGAL::draw<PS>() \endlink
|
|
|
|
\defgroup PkgPointSet3IO Input/Output
|
|
\ingroup PkgPointSet3Ref
|
|
|
|
\brief This module offers convenience overloads of input/ouput
|
|
functions available in the \ref PkgPointSetProcessing3 package.
|
|
These overloads, available after including `CGAL/Point_set_3/IO.h`,
|
|
allow the user to call point set processing algorithms without having
|
|
to handle manually property maps and iterators.
|
|
|
|
Input functions instanciate all the necessary property maps:
|
|
|
|
- if found in the input, normal vectors are stored in the usual
|
|
`CGAL::Point_set_3` property `normal` with template type `Vector`
|
|
|
|
- for PLY and LAS input, other properties are stored as properties in
|
|
the `CGAL::Point_set_3` class with the name and type given by the PLY
|
|
header or by the LAS standard.
|
|
|
|
For a complete documentation of these functions, please refer to the
|
|
\ref PkgPointSetProcessing3Ref manual.
|
|
|
|
*/
|