mirror of https://github.com/CGAL/cgal
integrating reviews
This commit is contained in:
parent
5e2ba724eb
commit
a8cd0902a8
|
|
@ -1131,11 +1131,7 @@ public:
|
||||||
/*
|
/*
|
||||||
* Returns a point in the intersection of the primitive `type`
|
* Returns a point in the intersection of the primitive `type`
|
||||||
* with some boundary surface.
|
* with some boundary surface.
|
||||||
* `Type1` is either `Segment_3`, `Ray_3` or `Line_3`.
|
* `Type` 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.
|
|
||||||
*/
|
*/
|
||||||
struct Construct_intersection
|
struct Construct_intersection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -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
|
The computed implicit functions can be iso-contoured to reconstruct a
|
||||||
surface by using the \ref PkgMesh3 :
|
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_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.
|
- `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.
|
- `Non_manifold_tag`: the output mesh has no guarantee and hence is outputted as a polygon soup.
|
||||||
|
|
|
||||||
|
|
@ -39,7 +39,9 @@ namespace CGAL {
|
||||||
*/
|
*/
|
||||||
template<class BGT>
|
template<class BGT>
|
||||||
class Poisson_mesh_domain_3
|
class Poisson_mesh_domain_3
|
||||||
|
#ifndef DOXYGEN_RUNNING
|
||||||
: public Labeled_mesh_domain_3<BGT>
|
: public Labeled_mesh_domain_3<BGT>
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
using Base = Labeled_mesh_domain_3<BGT>;
|
using Base = Labeled_mesh_domain_3<BGT>;
|
||||||
|
|
@ -264,11 +266,7 @@ public:
|
||||||
/*
|
/*
|
||||||
* Returns a point in the intersection of the primitive `type`
|
* Returns a point in the intersection of the primitive `type`
|
||||||
* with some boundary surface.
|
* with some boundary surface.
|
||||||
* `Type1` is either `Segment_3`, `Ray_3` or `Line_3`.
|
* `Type` 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.
|
|
||||||
*/
|
*/
|
||||||
struct Construct_intersection
|
struct Construct_intersection
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue