Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <CGAL/bounding_box.h>
#include <CGAL/tags.h>
#include <CGAL/IO/read_points.h>
#include <CGAL/IO/write_ply_points.h>
#include <CGAL/IO/PLY.h>

#include <CGAL/Real_timer.h>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Modular_arithmetic
Number_types
Orthtree
Point_set_3
Point_set_processing_3
Polygon
Polygon_mesh_processing
Principal_component_analysis
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Modular_arithmetic
Number_types
Orthtree
Point_set_3
Point_set_processing_3
Polygon
Polygon_mesh_processing
Principal_component_analysis
Expand Down
5 changes: 5 additions & 0 deletions Point_set_3/doc/Point_set_3/Doxyfile.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
@INCLUDE = ${CGAL_DOC_PACKAGE_DEFAULTS}
PROJECT_NAME = "CGAL ${CGAL_DOC_VERSION} - 3D Point Set"

EXTRACT_ALL = false
HIDE_UNDOC_MEMBERS = true
HIDE_UNDOC_CLASSES = true

3 changes: 0 additions & 3 deletions Point_set_3/doc/Point_set_3/PackageDescription.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@
/// I/O Functions for the \ref IOStreamXYZ
/// \ingroup PkgPointSet3IO

/// \defgroup PkgPointSet3IODeprecated Input/Output (Deprecated)
/// \ingroup PkgPointSet3IO
/// These I/O functions are deprecated and newer versions should be used.

/*!
\addtogroup PkgPointSet3Ref
Expand Down
6 changes: 2 additions & 4 deletions Point_set_3/include/CGAL/Point_set_3/IO/LAS.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@

#include <CGAL/license/Point_set_3.h>

#ifdef CGAL_LINKED_WITH_LASLIB
#include <CGAL/IO/read_las_points.h>
#include <CGAL/IO/write_las_points.h>
#endif // LAS
#include <CGAL/IO/LAS/read_las_points.h>
#include <CGAL/IO/LAS/write_las_points.h>

#include <fstream>
#include <string>
Expand Down
4 changes: 2 additions & 2 deletions Point_set_3/include/CGAL/Point_set_3/IO/OFF.h
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
#include <CGAL/Named_function_parameters.h>
#include <CGAL/boost/graph/named_params_helper.h>
#include <CGAL/IO/helpers.h>
#include <CGAL/IO/read_off_points.h>
#include <CGAL/IO/write_off_points.h>
#include <CGAL/IO/OFF/read_off_points.h>
#include <CGAL/IO/OFF/write_off_points.h>

#include <fstream>
#include <string>
Expand Down
4 changes: 2 additions & 2 deletions Point_set_3/include/CGAL/Point_set_3/IO/XYZ.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

#include <CGAL/Named_function_parameters.h>
#include <CGAL/boost/graph/named_params_helper.h>
#include <CGAL/IO/read_xyz_points.h>
#include <CGAL/IO/write_xyz_points.h>
#include <CGAL/IO/XYZ/read_xyz_points.h>
#include <CGAL/IO/XYZ/write_xyz_points.h>

#include <fstream>
#include <string>
Expand Down
1 change: 0 additions & 1 deletion Point_set_3/package_info/Point_set_3/dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ Kernel_d
Modular_arithmetic
Number_types
Point_set_3
Point_set_processing_3
Polygon
Profiling_tools
Property_map
Expand Down
1 change: 0 additions & 1 deletion Point_set_3/test/Point_set_3/point_set_test_join.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

#include <CGAL/Point_set_3.h>
#include <CGAL/IO/write_xyz_points.h>
#include <CGAL/grid_simplify_point_set.h>

#include <fstream>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,6 @@ simplification, etc.).
\defgroup PkgPointSetProcessing3IO I/O Functions
\ingroup PkgPointSetProcessing3Ref

\defgroup PkgPointSetProcessing3IOOff I/O (OFF Formats)
\ingroup PkgPointSetProcessing3Ref

\defgroup PkgPointSetProcessing3IOXyz I/O (XYZ Formats)
\ingroup PkgPointSetProcessing3Ref

\defgroup PkgPointSetProcessing3IOPly I/O (PLY Format)
\ingroup PkgPointSetProcessing3Ref

Read and write points (with or without additional properties) in PLY
format.

\defgroup PkgPointSetProcessing3IOLas I/O (LAS Format)
\ingroup PkgPointSetProcessing3Ref

Read and write points (with or without additional properties) in LAS
format.

\addtogroup PkgPointSetProcessing3Ref
\cgalPkgDescriptionBegin{Point Set Processing,PkgPointSetProcessing3}
Expand Down Expand Up @@ -84,14 +67,14 @@ format.

\cgalCRPSection{I/O (XYZ/OFF Formats)}

- \link PkgPointSetProcessing3IOOff OFF I/O Functions (`read_OFF()` and `write_OFF()`)\endlink
- \link PkgPointSetProcessing3IOXyz XYZ I/O Functions (`read_XYZ()` and `write_XYZ()`)\endlink
- \link PkgStreamSupportIoFuncsOFF OFF I/O Functions (`read_OFF()` and `write_OFF()`)\endlink
- \link PkgStreamSupportIoFuncsXYZ XYZ I/O Functions (`read_XYZ()` and `write_XYZ()`)\endlink

\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()`
- \link PkgPointSetProcessing3IOPly `CGAL::IO::write_PLY()` \endlink
- \link PkgStreamSupportIoFuncsPLY `CGAL::IO::write_PLY()` \endlink
- `CGAL::IO::write_PLY_with_properties()`
- `CGAL::IO::PLY_property<T>`
- `CGAL::IO::make_ply_point_reader()`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#include <CGAL/Simple_cartesian.h>
#include <CGAL/IO/read_las_points.h>
#include <CGAL/IO/write_ply_points.h>
#include <CGAL/Point_set_3/IO/LAS.h>
#include <CGAL/IO/LAS.h>
#include <CGAL/IO/PLY.h>
#include <CGAL/jet_estimate_normals.h>
#include <CGAL/scanline_orient_normals.h>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

#include <CGAL/property_map.h>
#include <CGAL/IO/read_las_points.h>
#include <CGAL/IO/LAS.h>

#include <utility>
#include <vector>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

#include <CGAL/property_map.h>
#include <CGAL/IO/read_ply_points.h>
#include <CGAL/IO/PLY.h>

#include <utility>
#include <vector>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

#include <CGAL/property_map.h>
#include <CGAL/IO/read_xyz_points.h>
#include <CGAL/IO/write_xyz_points.h>
#include <CGAL/IO/XYZ.h>

#include <utility> // defines std::pair
#include <vector>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

#include <CGAL/property_map.h>
#include <CGAL/IO/read_las_points.h>
#include <CGAL/IO/write_las_points.h>
#include <CGAL/IO/LAS.h>

#include <utility>
#include <vector>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#include <CGAL/Exact_predicates_inexact_constructions_kernel.h>

#include <CGAL/property_map.h>
#include <CGAL/IO/write_ply_points.h>
#include <CGAL/IO/PLY.h>

#include <utility>
#include <vector>
Expand Down
Loading