|
CGAL 4.7 - 3D Convex Hulls
|
Requirements of the polyhedron type built by the function CGAL::convex_hull_3().
Types | |
| typedef unspecified_type | Point_3 |
| type of point stored in a vertex More... | |
| typedef unspecified_type | Vertex |
a model of ConvexHullPolyhedronVertex_3 More... | |
| typedef unspecified_type | Halfedge |
a model of ConvexHullPolyhedronHalfedge_3 More... | |
| typedef unspecified_type | Facet |
a model of ConvexHullPolyhedronFacet_3 More... | |
| typedef unspecified_type | Halfedge_data_structure |
| halfedge data structure More... | |
| typedef unspecified_type | Halfedge_handle |
| handle to halfedge More... | |
| typedef unspecified_type | Halfedge_iterator |
| iterator for halfedge More... | |
| typedef unspecified_type | Facet_handle |
| handle to facet More... | |
| typedef unspecified_type | Facet_iterator |
| iterator for facet More... | |
Creation | |
| ConvexHullPolyhedron_3 () | |
Operations | |
| Facet_iterator | facets_begin () |
| iterator over all facets (excluding holes). More... | |
| Facet_iterator | facets_end () |
| past-the-end iterator. More... | |
| Halfedge_iterator P | halfedges_begin () |
| iterator over all halfedges. More... | |
| Halfedge_iterator P | halfedges_end () |
| past-the-end iterator. More... | |
| Halfedge_handle | make_tetrahedron (Point_3 p1, Point_3 p2, Point_3 p3, Point_3 p4) |
adds a new tetrahedron to the polyhedral surface with its vertices initialized with p1, p2, p3 and p4. More... | |
| void | erase_facet (Halfedge_handle h) |
removes the incident facet of h and changes all halfedges incident to the facet into border edges or removes them from the polyhedral surface if they were already border edges. More... | |
| Halfedge_handle | add_vertex_and_facet_to_border (Halfedge_handle h, Halfedge_handle g) |
creates a new facet within the hole incident to h and g by connecting the tip of g with the tip of h with two new halfedges and a new vertex and filling this separated part of the hole with a new facet, such that the new facet is incident to g. More... | |
| Halfedge_handle | add_facet_to_border (Halfedge_handle h, Halfedge_handle g) |
creates a new facet within the hole incident to h and g by connecting the tip of g with the tip of h with a new halfedge and filling this separated part of the hole with a new facet, such that the new facet is incident to g. More... | |
| Halfedge_handle | fill_hole (Halfedge_handle h) |
| fills a hole with a newly created facet. More... | |
| void | delegate (Modifier_base< Halfedge_data_structure > &m) |
calls the operator() of the modifier m. More... | |
a model of ConvexHullPolyhedronFacet_3
handle to facet
iterator for facet
a model of ConvexHullPolyhedronHalfedge_3
halfedge data structure
handle to halfedge
iterator for halfedge
type of point stored in a vertex
a model of ConvexHullPolyhedronVertex_3
| ConvexHullPolyhedron_3::ConvexHullPolyhedron_3 | ( | ) |
| Halfedge_handle ConvexHullPolyhedron_3::add_facet_to_border | ( | Halfedge_handle | h, |
| Halfedge_handle | g | ||
| ) |
creates a new facet within the hole incident to h and g by connecting the tip of g with the tip of h with a new halfedge and filling this separated part of the hole with a new facet, such that the new facet is incident to g.
Returns the halfedge of the new edge that is incident to the new facet.
| Halfedge_handle ConvexHullPolyhedron_3::add_vertex_and_facet_to_border | ( | Halfedge_handle | h, |
| Halfedge_handle | g | ||
| ) |
creates a new facet within the hole incident to h and g by connecting the tip of g with the tip of h with two new halfedges and a new vertex and filling this separated part of the hole with a new facet, such that the new facet is incident to g.
Returns the halfedge of the new edge that is incident to the new facet and the new vertex.
| void ConvexHullPolyhedron_3::delegate | ( | Modifier_base< Halfedge_data_structure > & | m | ) |
calls the operator() of the modifier m.
See Modifier_base for a description of modifier design and its usage.
| void ConvexHullPolyhedron_3::erase_facet | ( | Halfedge_handle | h | ) |
removes the incident facet of h and changes all halfedges incident to the facet into border edges or removes them from the polyhedral surface if they were already border edges.
| Facet_iterator ConvexHullPolyhedron_3::facets_begin | ( | ) |
iterator over all facets (excluding holes).
| Facet_iterator ConvexHullPolyhedron_3::facets_end | ( | ) |
past-the-end iterator.
| Halfedge_handle ConvexHullPolyhedron_3::fill_hole | ( | Halfedge_handle | h | ) |
fills a hole with a newly created facet.
Makes all border halfedges of the hole denoted by h incident to the new facet. Returns h.
| Halfedge_iterator P ConvexHullPolyhedron_3::halfedges_begin | ( | ) |
iterator over all halfedges.
| Halfedge_iterator P ConvexHullPolyhedron_3::halfedges_end | ( | ) |
past-the-end iterator.
| Halfedge_handle ConvexHullPolyhedron_3::make_tetrahedron | ( | Point_3 | p1, |
| Point_3 | p2, | ||
| Point_3 | p3, | ||
| Point_3 | p4 | ||
| ) |
adds a new tetrahedron to the polyhedral surface with its vertices initialized with p1, p2, p3 and p4.
Returns that halfedge of the tetrahedron which incident vertex is initialized with p1, the incident vertex of the next halfedge with p2, and the vertex thereafter with p3. The remaining fourth vertex is initialized with p4.