This commit is contained in:
Andreas Fabri 2025-10-30 18:11:15 +01:00
parent 25060734a0
commit 44306e981a
6 changed files with 20 additions and 12 deletions

View File

@ -17,7 +17,7 @@ each specific format.
- \ref IOStreamGocad
- \ref IOStream3MF
- \ref IOStreamWRL
- \ref IOStreamPkgStreamSupportIoFuncsLas
- \ref IOStreamLAS
- \ref IOStreamAvizo
- \ref IOStreamMedit
- \ref IOStreamTetgen
@ -298,7 +298,7 @@ A precise specification of those formats is available
</tr>
<tr>
<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>
<td rowspan="2">Output</td>
@ -331,7 +331,7 @@ of its coordinates and other properties. Only coordinates and normals are curren
</tr>
<tr>
<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>
<td rowspan="2">Output</td>
@ -341,7 +341,7 @@ of its coordinates and other properties. Only coordinates and normals are curren
</tr>
<tr>
<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>
</table>

View File

@ -36,6 +36,14 @@
/// I/O Functions for the \ref IOStream3MF
/// \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
/// \ingroup PkgStreamSupportRef
@ -99,5 +107,7 @@ the printing mode.
- \link PkgStreamSupportIoFuncsVTK I/O for VTK files \endlink
- \link PkgStreamSupportIoFuncs3MF I/O for 3MF 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
*/

View File

@ -29,7 +29,7 @@ namespace CGAL {
namespace IO {
/**
\ingroup PkgStreamSupportIoFuncsLas
\ingroup PkgStreamSupportIoFuncsLAS
generates a %LAS property handler to read 3D points. Points are
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.
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.
@ -165,7 +165,7 @@ bool read_LAS(std::istream& is,
/**
\ingroup PkgStreamSupportIoFuncsLas
\ingroup PkgStreamSupportIoFuncsLAS
\brief reads points (position only) using the \ref IOStreamLAS.

View File

@ -73,7 +73,6 @@ typedef Base<unsigned short, Id::G> G;
typedef Base<unsigned short, Id::B> B;
typedef Base<unsigned short, Id::I> I;
} // namespace LAS_property
/// \endcond
// documenation in ../LAS.h
template <typename PointMap>

View File

@ -225,7 +225,6 @@ void process_properties (const LASpoint& reader, OutputValueType& new_element,
} // namespace LAS
} // namespace internal
/// \endcond
// documenation in ../LAS.h
template <typename OutputIteratorValueType,

View File

@ -29,7 +29,7 @@ namespace CGAL {
namespace IO {
/**
\ingroup PkgStreamSupportIoFuncsIOXyz
\ingroup PkgStreamSupportIoFuncsXYZ
\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.