integrating reviews

This commit is contained in:
Sven Oesau 2025-04-17 15:46:21 +02:00
parent 5e2ba724eb
commit a8cd0902a8
3 changed files with 7 additions and 13 deletions

View File

@ -1131,11 +1131,7 @@ public:
/*
* Returns a point in the intersection of the primitive `type`
* with some boundary surface.
* `Type1` is either `Segment_3`, `Ray_3` or `Line_3`.
* The integer `dimension` is set to the dimension of the lowest
* dimensional face in the input complex containing the returned point, and
* `index` is set to the index to be stored at a mesh vertex lying
* on this face.
* `Type` is either `Segment_3`, `Ray_3` or `Line_3`.
*/
struct Construct_intersection
{

View File

@ -119,9 +119,9 @@ The following example reads a point set, creates a Poisson implicit function and
The computed implicit functions can be iso-contoured to reconstruct a
surface by using the \ref PkgMesh3 :
`make_mesh_3()` with the `surface_only()` parameter for using parallel Mesh_3
`make_mesh_3()` with the `surface_only()` parameter to only mesh the surface
The parameter `Tag` affects the behavior of `make_mesh_3()`:
The following `Tag` parameters affect the behavior of `make_mesh_3()`:
- `Manifold_tag`: the output mesh is guaranteed to be a manifold surface without boundary.
- `Manifold_with_boundary_tag`: the output mesh is guaranteed to be manifold and may have boundaries.
- `Non_manifold_tag`: the output mesh has no guarantee and hence is outputted as a polygon soup.

View File

@ -39,7 +39,9 @@ namespace CGAL {
*/
template<class BGT>
class Poisson_mesh_domain_3
#ifndef DOXYGEN_RUNNING
: public Labeled_mesh_domain_3<BGT>
#endif
{
public:
using Base = Labeled_mesh_domain_3<BGT>;
@ -264,11 +266,7 @@ public:
/*
* Returns a point in the intersection of the primitive `type`
* with some boundary surface.
* `Type1` is either `Segment_3`, `Ray_3` or `Line_3`.
* The integer `dimension` is set to the dimension of the lowest
* dimensional face in the input complex containing the returned point, and
* `index` is set to the index to be stored at a mesh vertex lying
* on this face.
* `Type` is either `Segment_3`, `Ray_3` or `Line_3`.
*/
struct Construct_intersection
{