mirror of https://github.com/CGAL/cgal
fix doc issues
This commit is contained in:
parent
a8e4050206
commit
c55edba1a0
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \ingroup PkgShapeDetectionRef
|
* \ingroup PkgShapeDetectionRef
|
||||||
* \file CGAL/Shape_detection/Region_growing/Region_growing_on_point_set.h
|
* \file CGAL/Shape_detection/Region_growing/Point_set.h
|
||||||
* A convenience header that includes all classes related to the region growing algorithm on a point set.
|
* A convenience header that includes all classes related to the region growing algorithm on a point set.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -254,11 +254,11 @@ namespace Point_set {
|
||||||
its normal and the circle radius is within the `maximum_angle`. If both conditions
|
its normal and the circle radius is within the `maximum_angle`. If both conditions
|
||||||
are satisfied, it returns `true`, otherwise `false`.
|
are satisfied, it returns `true`, otherwise `false`.
|
||||||
|
|
||||||
\param query_index
|
\param query
|
||||||
index of the query point
|
item of the query point
|
||||||
|
|
||||||
\param indices
|
\param region
|
||||||
indices of the inliers of the region
|
inlier items of the region
|
||||||
|
|
||||||
The first parameter is not used in this implementation.
|
The first parameter is not used in this implementation.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -255,11 +255,11 @@ namespace Point_set {
|
||||||
its normal and the cylinder radius is within the `maximum_angle`. If both conditions
|
its normal and the cylinder radius is within the `maximum_angle`. If both conditions
|
||||||
are satisfied, it returns `true`, otherwise `false`.
|
are satisfied, it returns `true`, otherwise `false`.
|
||||||
|
|
||||||
\param query_index
|
\param query
|
||||||
index of the query point
|
item of the query point
|
||||||
|
|
||||||
\param indices
|
\param region
|
||||||
indices of the inliers of the region
|
inlier items of the region
|
||||||
|
|
||||||
The first parameter is not used in this implementation.
|
The first parameter is not used in this implementation.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -229,8 +229,8 @@ namespace Point_set {
|
||||||
its normal and the line's normal is within the `maximum_angle`. If both conditions
|
its normal and the line's normal is within the `maximum_angle`. If both conditions
|
||||||
are satisfied, it returns `true`, otherwise `false`.
|
are satisfied, it returns `true`, otherwise `false`.
|
||||||
|
|
||||||
\param query_index
|
\param query
|
||||||
index of the query point
|
item of the query point
|
||||||
|
|
||||||
The first and third parameters are not used in this implementation.
|
The first and third parameters are not used in this implementation.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,7 @@ namespace Point_set {
|
||||||
|
|
||||||
\tparam GeomTraits
|
\tparam GeomTraits
|
||||||
a model of `Kernel`
|
a model of `Kernel`
|
||||||
|
g
|
||||||
\tparam InputRange
|
\tparam InputRange
|
||||||
a model of `ConstRange` whose iterator type is `RandomAccessIterator`
|
a model of `ConstRange` whose iterator type is `RandomAccessIterator`
|
||||||
|
|
||||||
|
|
@ -253,11 +253,11 @@ namespace Point_set {
|
||||||
its normal and the sphere radius is within the `maximum_angle`. If both conditions
|
its normal and the sphere radius is within the `maximum_angle`. If both conditions
|
||||||
are satisfied, it returns `true`, otherwise `false`.
|
are satisfied, it returns `true`, otherwise `false`.
|
||||||
|
|
||||||
\param query_index
|
\param query
|
||||||
index of the query point
|
item of the query point
|
||||||
|
|
||||||
\param indices
|
\param region
|
||||||
indices of the inliers of the region
|
inlier items of the region
|
||||||
|
|
||||||
The first parameter is not used in this implementation.
|
The first parameter is not used in this implementation.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \ingroup PkgShapeDetectionRef
|
* \ingroup PkgShapeDetectionRef
|
||||||
* \file CGAL/Shape_detection/Region_growing/Region_growing_on_polyline.h
|
* \file CGAL/Shape_detection/Region_growing/Polyline.h
|
||||||
* A convenience header that includes all classes related to the region growing algorithm on a polyline.
|
* A convenience header that includes all classes related to the region growing algorithm on a polyline.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -232,9 +232,6 @@ namespace Polyline {
|
||||||
\param query
|
\param query
|
||||||
`Item` of the query vertex
|
`Item` of the query vertex
|
||||||
|
|
||||||
\param region
|
|
||||||
Vertices of the region represented as `Items`.
|
|
||||||
|
|
||||||
\return Boolean `true` or `false`
|
\return Boolean `true` or `false`
|
||||||
|
|
||||||
\pre `region.size() > 0`
|
\pre `region.size() > 0`
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \ingroup PkgShapeDetectionRef
|
* \ingroup PkgShapeDetectionRef
|
||||||
* \file CGAL/Shape_detection/Region_growing/Region_growing_on_segment_set.h
|
* \file CGAL/Shape_detection/Region_growing/Segment_set.h
|
||||||
* A convenience header that includes all classes related to the region growing algorithm on a segment set.
|
* A convenience header that includes all classes related to the region growing algorithm on a segment set.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -98,7 +98,7 @@ namespace Triangle_mesh {
|
||||||
\tparam NamedParameters
|
\tparam NamedParameters
|
||||||
a sequence of \ref bgl_namedparameters "Named Parameters"
|
a sequence of \ref bgl_namedparameters "Named Parameters"
|
||||||
|
|
||||||
\param pmesh
|
\param tmesh
|
||||||
an instance of `TriangleMesh` that represents a triangle mesh
|
an instance of `TriangleMesh` that represents a triangle mesh
|
||||||
|
|
||||||
\param neighbor_query
|
\param neighbor_query
|
||||||
|
|
|
||||||
|
|
@ -64,7 +64,7 @@ namespace Triangle_mesh {
|
||||||
/*!
|
/*!
|
||||||
\brief initializes all internal data structures.
|
\brief initializes all internal data structures.
|
||||||
|
|
||||||
\param pmesh
|
\param tmesh
|
||||||
an instance of a `TriangleMesh` that represents a triangle mesh
|
an instance of a `TriangleMesh` that represents a triangle mesh
|
||||||
|
|
||||||
\pre `faces(pmesh).size() > 0`
|
\pre `faces(pmesh).size() > 0`
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue