fix links

This commit is contained in:
Andreas Fabri 2025-10-31 12:25:24 +01:00
parent f28e643ed0
commit 64e33bd6cb
3 changed files with 14 additions and 12 deletions

View File

@ -67,14 +67,14 @@ simplification, etc.).
\cgalCRPSection{I/O (XYZ/OFF Formats)} \cgalCRPSection{I/O (XYZ/OFF Formats)}
- \link PkgPointSetProcessing3IOOff OFF I/O Functions (`read_OFF()` and `write_OFF()`)\endlink - \link PkgStreamSupportIoFuncsOFF OFF I/O Functions (`read_OFF()` and `write_OFF()`)\endlink
- \link PkgPointSetProcessing3IOXyz XYZ I/O Functions (`read_XYZ()` and `write_XYZ()`)\endlink - \link PkgStreamSupportIoFuncsXYZ XYZ I/O Functions (`read_XYZ()` and `write_XYZ()`)\endlink
\cgalCRPSection{I/O (PLY Format)} \cgalCRPSection{I/O (PLY Format)}
- \link PkgPointSetProcessing3IOPly `CGAL::IO::read_PLY()` \endlink - \link PkgStreamSupportIoFuncsPLY `CGAL::IO::read_PLY()` \endlink
- `CGAL::IO::read_PLY_with_properties()` - `CGAL::IO::read_PLY_with_properties()`
- \link PkgPointSetProcessing3IOPly `CGAL::IO::write_PLY()` \endlink - \link PkgStreamSupportIoFuncsPLY `CGAL::IO::write_PLY()` \endlink
- `CGAL::IO::write_PLY_with_properties()` - `CGAL::IO::write_PLY_with_properties()`
- `CGAL::IO::PLY_property<T>` - `CGAL::IO::PLY_property<T>`
- `CGAL::IO::make_ply_point_reader()` - `CGAL::IO::make_ply_point_reader()`

View File

@ -306,23 +306,23 @@ The following table shows which file formats can be read from and written for po
</tr> </tr>
<tr> <tr>
<th>\ref IOStreamOFF "OFF"</th> <th>\ref IOStreamOFF "OFF"</th>
<td>\link PkgPointSetProcessing3IOOff `CGAL::IO::read_OFF()` \endlink</td> <td>\link PkgStreamSupportIoFuncsOFF `CGAL::IO::read_OFF()` \endlink</td>
<td>\link PkgPointSetProcessing3IOOff `CGAL::IO::write_OFF()` \endlink</td> <td>\link PkgStreamSupportIoFuncsOFF `CGAL::IO::write_OFF()` \endlink</td>
</tr> </tr>
<tr> <tr>
<th>\ref IOStreamXYZ "XYZ"</th> <th>\ref IOStreamXYZ "XYZ"</th>
<td>\link PkgPointSetProcessing3IOXyz `CGAL::IO::read_XYZ()` \endlink</td> <td>\link PkgStreamSupportIoFuncsXYZ `CGAL::IO::read_XYZ()` \endlink</td>
<td>\link PkgPointSetProcessing3IOXyz `CGAL::IO::write_XYZ()` \endlink</td> <td>\link PkgStreamSupportIoFuncsXYZ `CGAL::IO::write_XYZ()` \endlink</td>
</tr> </tr>
<tr> <tr>
<th>\ref IOStreamPLY "PLY"</th> <th>\ref IOStreamPLY "PLY"</th>
<td>\link PkgPointSetProcessing3IOPly `CGAL::IO::read_PLY()` \endlink</td> <td>\link PkgStreamSupportIoFuncsPLY `CGAL::IO::read_PLY()` \endlink</td>
<td>\link PkgPointSetProcessing3IOPly `CGAL::IO::write_PLY()` \endlink</td> <td>\link PkgStreamSupportIoFuncsPLY `CGAL::IO::write_PLY()` \endlink</td>
</tr> </tr>
<tr> <tr>
<th>\ref IOStreamLAS "LAS"</th> <th>\ref IOStreamLAS "LAS"</th>
<td>\link PkgPointSetProcessing3IOLas `CGAL::IO::read_LAS()` \endlink</td> <td>\link PkgStreamSupportIoFuncsLAS `CGAL::IO::read_LAS()` \endlink</td>
<td>\link PkgPointSetProcessing3IOLas `CGAL::IO::write_LAS()` \endlink</td> <td>\link PkgStreamSupportIoFuncsLAS `CGAL::IO::write_LAS()` \endlink</td>
</tr> </tr>
</table> </table>

View File

@ -11,6 +11,8 @@
#ifndef CGAL_IO_LAS_LAS_PROPERTY_H #ifndef CGAL_IO_LAS_LAS_PROPERTY_H
#define CGAL_IO_LAS_LAS_PROPERTY_H #define CGAL_IO_LAS_LAS_PROPERTY_H
#include <tuple>
namespace CGAL { namespace CGAL {
namespace IO { namespace IO {