The class Alpha_shape_3<Dt> represents the family of alpha shapes of points in the 3D space for all positive . It maintains an underlying triangulation of the class Dt which represents connectivity and order among its faces. Each -dimensional face of the Dt is associated with an interval that specifies for which values of the face belongs to the alpha shape.
Note that this class is at the same time used for basic and for weighted Alpha Shapes .
Dt
This class is the underlying triangulation class.
The modifying functions insert and remove will overwrite the inherited functions. At the moment, only the static version is implemented.
| |
the alpha shape traits type.
|
|
| the number type of alpha values. |
| |
A bidirectional and non-mutable iterator that allow to traverse
the increasing sequence of different alpha values. Precondition: Its value_type is NT
| |
| |
In GENERAL mode, the alpha complex can have singular faces,
i. e. faces of dimension , for
that are not subfaces of a face of the complex.
In REGULARIZED mode, the complex is regularized, that is
singular faces are dropped and the alpha complex
includes only a subset of the tetrahedral cells
of the triangulation and the subfaces of those cells.
| |
| |
Enum to classify the faces of the underlying
triangulation with respect to the alpha shape. In GENERAL mode, for , each k-dimensional simplex of the triangulation can be classified as EXTERIOR, SINGULAR, REGULAR or INTERIOR. In GENERAL mode a simplex is REGULAR if it is on the boundary f the alpha complex and belongs to a simplex in this complex and it is SINGULAR if it is a boundary simplex that is not included in a simplex of the complex. In REGULARIZED mode, for each k-dimensional simplex of the triangulation can be classified as EXTERIOR, REGULAR or INTERIOR, i.e. there is no singular faces. A simplex is REGULAR if it is on the boundary of alpha complex and belongs to a tetrahedral cell of the complex.
|
| |||
Introduces an empty alpha shape data structure
A for and set the
current alpha value to alpha and the mode to m.
| |||
| |||
Build an alpha shape of mode m
from the triangulation dt.
Be carefull that this operation destroy the triangulation.
| |||
| |||
| |||
Buil an alpha shape data structure in mode m
for the points in the range
first, last and
set the current alpha value to alpha. Precondition: The value_type of first and last is Point (the type point of the underlying triangulation.)
|
| ||||
|
| |||
Initialize the alpha shape data structure
for points in the range
first, last.
Returns the number of data points inserted in the underlying
triangulation. If the function is applied to an non-empty alpha shape data structure, it is cleared before initialization. Precondition: The value_type of first and last is Point. | ||||
|
| Clears the structure. | ||
|
| |||
Sets the -value to alpha.
Returns the previous -value. Precondition: alpha . | ||||
|
| |||
Sets A in GENERAL or REGULARIZED. Returns the previous mode. Changing the mode of an alpha shape data structure entails a partial recomputation of the data structure. |
|
| Returns whether A is general or regularized. | ||
|
| |||
Returns the current -value. | ||||
|
| |||
Returns the -th alpha-value, sorted in an increasing order. Precondition: n < number of alphas. | ||||
|
| |||
Returns the number of different alpha-values. | ||||
| ||||
| ||||
Locates a point p in the underlying triangulation and Classifies the associated k-face with respect to alpha. | ||||
| ||||
| ||||
Classifies the cell f of the underlying triangulation with respect to alpha. | ||||
| ||||
| ||||
Classifies the facet e of the underlying triangulation with respect to alpha. | ||||
| ||||
| ||||
Classifies the facet of the cell f opposite to the vertex with index i of the underlying triangulation with respect to alpha. | ||||
| ||||
| ||||
Classifies the edge e with respect to alpha . | ||||
| ||||
| ||||
Classifies the vertex v of the underlying triangulation with respect to alpha. | ||||
| ||||
|
| |||
Write the cells which are of type type for the alpha value alpha to the sequence pointed to by the output iterator it. Return past the end of the output sequence. | ||||
| ||||
|
| |||
Write the facets which are of type type for the alpha value alpha to the sequence pointed to by the output iterator it. Return past the end of the output sequence. | ||||
| ||||
|
| |||
Write the edges which are of type type for the alpha value alpha to the sequence pointed to by the output iterator it. Return past the end of the output sequence. | ||||
| ||||
|
| |||
) |
The I/O operators are defined for iostream, and for the window stream provided by CGAL. The format for the iostream is an internal format.
#include <CGAL/IO/io.h>
|
|
Inserts the alpha shape A for the current alpha value into the stream os. Precondition: The insert operator must be defined for Point. |
#include <CGAL/IO/Geomview_stream.h>
#include <CGAL/IO/alpha_shape_geomview_ostream_3.h>
|
| |
Inserts the alpha shape A for the current alpha value into the Geomview stream W. Precondition: The insert operator must be defined for Point and Triangle. |
In GENERAL mode, the alpha intervals of each triangulation face is computed and stored at initialization time. In REGULARIZED mode, the alpha shape intervals of edges are not stored nor computed at initialization. Edges are simply classified on the fly upon request. This allows to have much faster building of alpha shapes in REGULARIZED mode.
A.alpha find uses linear search, while A.alpha lower bound and A.alpha upper bound use binary search. A.number of solid components performs a graph traversal and takes time linear in the number of cells of the underlying triangulation. A.find of optimal alpha uses binary search and takes time n log n , where is the number of points.