CGAL 5.4.1 - 3D Mesh Generation
|
#include <CGAL/Polyhedral_mesh_domain_3.h>
The class Polyhedral_mesh_domain_3
implements a domain defined by a simplicial polyhedral surface.
The input polyhedral surface must be free of intersection. It must include (at least) one closed connected component that defines the boundary of the domain to be meshed. Inside this bounding component, the input polyhedral surface may contain several other components (closed or not) that will be represented in the final mesh. This class is a model of the concept MeshDomain_3
.
Polyhedron | stands for the type of the input polyhedral surface(s), model of FaceListGraph . |
IGT | stands for a geometric traits class providing the types and functors required to implement the intersection tests and intersection computations for polyhedral boundary surfaces. This parameter has to be instantiated with a model of the concept IntersectionGeometricTraits_3 . |
Creation | |
Polyhedral_mesh_domain_3 (const Polyhedron &bounding_polyhedron) | |
Construction from a bouding polyhedral surface which must be closed, and free of intersections. More... | |
Polyhedral_mesh_domain_3 (const Polyhedron &polyhedron, const Polyhedron &bounding_polyhedron) | |
Construction from a polyhedral surface, and a bounding polyhedral surface,. More... | |
CGAL::Polyhedral_mesh_domain_3< Polyhedron, IGT, TriangleAccessor >::Polyhedral_mesh_domain_3 | ( | const Polyhedron & | bounding_polyhedron | ) |
Construction from a bouding polyhedral surface which must be closed, and free of intersections.
The inside of bounding_polyhedron
will be meshed.
CGAL::Polyhedral_mesh_domain_3< Polyhedron, IGT, TriangleAccessor >::Polyhedral_mesh_domain_3 | ( | const Polyhedron & | polyhedron, |
const Polyhedron & | bounding_polyhedron | ||
) |
Construction from a polyhedral surface, and a bounding polyhedral surface,.
The first polyhedron must be entirely included inside bounding_polyhedron
, which must be closed and free of intersections. Using this constructor allows to mesh a polyhedral surface which is not closed, or has holes. The inside of bounding_polyhedron
will be meshed.