mirror of https://github.com/CGAL/cgal
doc
This commit is contained in:
parent
25060734a0
commit
44306e981a
|
|
@ -17,7 +17,7 @@ each specific format.
|
||||||
- \ref IOStreamGocad
|
- \ref IOStreamGocad
|
||||||
- \ref IOStream3MF
|
- \ref IOStream3MF
|
||||||
- \ref IOStreamWRL
|
- \ref IOStreamWRL
|
||||||
- \ref IOStreamPkgStreamSupportIoFuncsLas
|
- \ref IOStreamLAS
|
||||||
- \ref IOStreamAvizo
|
- \ref IOStreamAvizo
|
||||||
- \ref IOStreamMedit
|
- \ref IOStreamMedit
|
||||||
- \ref IOStreamTetgen
|
- \ref IOStreamTetgen
|
||||||
|
|
@ -298,7 +298,7 @@ A precise specification of those formats is available
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Any point range</td>
|
<td>Any point range</td>
|
||||||
<td>\link PkgStreamSupportIoFuncsLas CGAL::IO::read_LAS(const std::string&, PointRange&)\endlink</td>
|
<td>\link PkgStreamSupportIoFuncsLAS CGAL::IO::read_LAS(const std::string&, PointRange&)\endlink</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td rowspan="2">Output</td>
|
<td rowspan="2">Output</td>
|
||||||
|
|
@ -331,7 +331,7 @@ of its coordinates and other properties. Only coordinates and normals are curren
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Any point range</td>
|
<td>Any point range</td>
|
||||||
<td>\link PkgStreamSupportIoFuncsIOXyz CGAL::IO::read_XYZ(const std::string&, PointRange&)\endlink</td>
|
<td>\link PkgStreamSupportIoFuncsIoXYZ CGAL::IO::read_XYZ(const std::string&, PointRange&)\endlink</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td rowspan="2">Output</td>
|
<td rowspan="2">Output</td>
|
||||||
|
|
@ -341,7 +341,7 @@ of its coordinates and other properties. Only coordinates and normals are curren
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Any point range</td>
|
<td>Any point range</td>
|
||||||
<td>\link PkgStreamSupportIoFuncsIOXyz CGAL::IO::write_XYZ(const std::string&, const PointRange&)\endlink</td>
|
<td>\link PkgStreamSupportIoFuncsIOX CGAL::IO::write_XYZ(const std::string&, const PointRange&)\endlink</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -36,6 +36,14 @@
|
||||||
/// I/O Functions for the \ref IOStream3MF
|
/// I/O Functions for the \ref IOStream3MF
|
||||||
/// \ingroup IOstreamFunctions
|
/// \ingroup IOstreamFunctions
|
||||||
|
|
||||||
|
/// \defgroup PkgStreamSupportIoFuncsLAS LAS I/O Functions
|
||||||
|
/// I/O Functions for the \ref IOStreamLAS
|
||||||
|
/// \ingroup IOstreamFunctions
|
||||||
|
|
||||||
|
/// \defgroup PkgStreamSupportIoFuncsXYZ XYZ I/O Functions
|
||||||
|
/// I/O Functions for the \ref IOStreamXYZ
|
||||||
|
/// \ingroup IOstreamFunctions
|
||||||
|
|
||||||
/// \defgroup PkgStreamSupportEnumRef I/O Enums
|
/// \defgroup PkgStreamSupportEnumRef I/O Enums
|
||||||
/// \ingroup PkgStreamSupportRef
|
/// \ingroup PkgStreamSupportRef
|
||||||
|
|
||||||
|
|
@ -99,5 +107,7 @@ the printing mode.
|
||||||
- \link PkgStreamSupportIoFuncsVTK I/O for VTK files \endlink
|
- \link PkgStreamSupportIoFuncsVTK I/O for VTK files \endlink
|
||||||
- \link PkgStreamSupportIoFuncs3MF I/O for 3MF files \endlink
|
- \link PkgStreamSupportIoFuncs3MF I/O for 3MF files \endlink
|
||||||
- \link PkgStreamSupportIoFuncsWKT I/O for WKT files \endlink
|
- \link PkgStreamSupportIoFuncsWKT I/O for WKT files \endlink
|
||||||
|
- \link PkgStreamSupportIoFuncsLAS I/O for LAS files \endlink
|
||||||
|
- \link PkgStreamSupportIoFuncsXYZ I/O for XYZ files \endlink
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ namespace CGAL {
|
||||||
namespace IO {
|
namespace IO {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\ingroup PkgStreamSupportIoFuncsLas
|
\ingroup PkgStreamSupportIoFuncsLAS
|
||||||
|
|
||||||
generates a %LAS property handler to read 3D points. Points are
|
generates a %LAS property handler to read 3D points. Points are
|
||||||
constructed from the input the using 3 %LAS properties
|
constructed from the input the using 3 %LAS properties
|
||||||
|
|
@ -48,7 +48,7 @@ make_las_point_reader(PointMap point_map);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\ingroup PkgStreamSupportIoFuncsLas
|
\ingroup PkgStreamSupportIoFuncsLAS
|
||||||
|
|
||||||
\brief reads user-selected points properties from a .las or .laz stream.
|
\brief reads user-selected points properties from a .las or .laz stream.
|
||||||
Potential additional properties are ignored.
|
Potential additional properties are ignored.
|
||||||
|
|
@ -118,7 +118,7 @@ bool read_LAS_with_properties(std::istream& is,
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\ingroup PkgStreamSupportIoFuncsLas
|
\ingroup PkgStreamSupportIoFuncsLAS
|
||||||
|
|
||||||
\brief reads points (position only) using the \ref IOStreamLAS.
|
\brief reads points (position only) using the \ref IOStreamLAS.
|
||||||
|
|
||||||
|
|
@ -165,7 +165,7 @@ bool read_LAS(std::istream& is,
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\ingroup PkgStreamSupportIoFuncsLas
|
\ingroup PkgStreamSupportIoFuncsLAS
|
||||||
|
|
||||||
\brief reads points (position only) using the \ref IOStreamLAS.
|
\brief reads points (position only) using the \ref IOStreamLAS.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,6 @@ typedef Base<unsigned short, Id::G> G;
|
||||||
typedef Base<unsigned short, Id::B> B;
|
typedef Base<unsigned short, Id::B> B;
|
||||||
typedef Base<unsigned short, Id::I> I;
|
typedef Base<unsigned short, Id::I> I;
|
||||||
} // namespace LAS_property
|
} // namespace LAS_property
|
||||||
/// \endcond
|
|
||||||
|
|
||||||
// documenation in ../LAS.h
|
// documenation in ../LAS.h
|
||||||
template <typename PointMap>
|
template <typename PointMap>
|
||||||
|
|
|
||||||
|
|
@ -225,7 +225,6 @@ void process_properties (const LASpoint& reader, OutputValueType& new_element,
|
||||||
} // namespace LAS
|
} // namespace LAS
|
||||||
} // namespace internal
|
} // namespace internal
|
||||||
|
|
||||||
/// \endcond
|
|
||||||
|
|
||||||
// documenation in ../LAS.h
|
// documenation in ../LAS.h
|
||||||
template <typename OutputIteratorValueType,
|
template <typename OutputIteratorValueType,
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,7 @@ namespace CGAL {
|
||||||
namespace IO {
|
namespace IO {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\ingroup PkgStreamSupportIoFuncsIOXyz
|
\ingroup PkgStreamSupportIoFuncsXYZ
|
||||||
|
|
||||||
\brief reads points (positions + normals, if available), using the \ref IOStreamXYZ.
|
\brief reads points (positions + normals, if available), using the \ref IOStreamXYZ.
|
||||||
|
|
||||||
|
|
@ -78,7 +78,7 @@ bool read_XYZ(std::istream& is,
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
\ingroup PkgStreamSupportIoFuncsIOXyz
|
\ingroup PkgStreamSupportIoFuncsXYZ
|
||||||
|
|
||||||
\brief reads points (positions + normals, if available), using the \ref IOStreamXYZ.
|
\brief reads points (positions + normals, if available), using the \ref IOStreamXYZ.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue