|
CGAL 4.7 - Planar Parameterization of Triangulated Surface Meshes
|
#include <CGAL/Discrete_authalic_parameterizer_3.h>
The class Discrete_authalic_parameterizer_3 implements the Discrete Authalic Parameterization algorithm [cgal:dma-ipsm-02.] This method is sometimes called DAP or just Authalic parameterization.
DAP is a weak area-preserving parameterization. It is a compromise between area-preserving and angle-preserving.
One-to-one mapping is guaranteed if surface's border is mapped onto a convex polygon.
This class is a Strategy [3] called by the main parameterization algorithm Fixed_border_parameterizer_3::parameterize(). Discrete_authalic_parameterizer_3:
BorderParameterizer_3 and SparseLinearAlgebraTraits_d template parameters that make sense.compute_w_ij() to compute w_ij = (i, j) coefficient of matrix A for j neighbor vertex of i based on Discrete Authalic Parameterization algorithm.CGAL::Parameterizer_traits_3<ParameterizationMesh_3> CGAL::Fixed_border_parameterizer_3<ParameterizationMesh_3, BorderParameterizer_3, SparseLinearAlgebraTraits_d> CGAL::Barycentric_mapping_parameterizer_3<ParameterizationMesh_3, BorderParameterizer_3, SparseLinearAlgebraTraits_d> CGAL::Discrete_conformal_map_parameterizer_3<ParameterizationMesh_3, BorderParameterizer_3, SparseLinearAlgebraTraits_d> CGAL::LSCM_parameterizer_3<ParameterizationMesh_3, BorderParameterizer_3, SparseLinearAlgebraTraits_d> CGAL::Mean_value_coordinates_parameterizer_3<ParameterizationMesh_3, BorderParameterizer_3, SparseLinearAlgebraTraits_d> Public Member Functions | |
| Discrete_authalic_parameterizer_3 (Border_param border_param=Border_param(), Sparse_LA sparse_la=Sparse_LA()) | |
| Constructor. More... | |
Public Member Functions inherited from CGAL::Fixed_border_parameterizer_3< ParameterizationMesh_3, BorderParameterizer_3, SparseLinearAlgebraTraits_d > | |
| Fixed_border_parameterizer_3 (Border_param border_param=Border_param(), Sparse_LA sparse_la=Sparse_LA()) | |
| Constructor. More... | |
| virtual Error_code | parameterize (Adaptor &mesh) |
| Compute a one-to-one mapping from a triangular 3D surface mesh to a piece of the 2D space. More... | |
Public Member Functions inherited from CGAL::Parameterizer_traits_3< ParameterizationMesh_3 > | |
| virtual | ~Parameterizer_traits_3 () |
| Destructor of base class should be virtual. | |
Protected Member Functions | |
| virtual NT | compute_w_ij (const Adaptor &mesh, Vertex_const_handle main_vertex_v_i, Vertex_around_vertex_const_circulator neighbor_vertex_v_j) |
| Compute w_ij = (i, j) coefficient of matrix A for j neighbor vertex of i. | |
Protected Member Functions inherited from CGAL::Fixed_border_parameterizer_3< ParameterizationMesh_3, BorderParameterizer_3, SparseLinearAlgebraTraits_d > | |
| virtual Error_code | check_parameterize_preconditions (Adaptor &mesh) |
| Check parameterize() preconditions: More... | |
| void | initialize_system_from_mesh_border (Matrix &A, Vector &Bu, Vector &Bv, const Adaptor &mesh) |
| Initialize A, Bu and Bv after border parameterization. More... | |
| virtual Error_code | setup_inner_vertex_relations (Matrix &A, Vector &Bu, Vector &Bv, const Adaptor &mesh, Vertex_const_handle vertex) |
| Compute the line i of matrix A for i inner vertex: More... | |
| void | set_mesh_uv_from_system (Adaptor &mesh, const Vector &Xu, const Vector &Xv) |
| Copy Xu and Xv coordinates into the (u,v) pair of each surface vertex. | |
| virtual Error_code | check_parameterize_postconditions (const Adaptor &mesh, const Matrix &A, const Vector &Bu, const Vector &Bv) |
| Check parameterize() postconditions: More... | |
| virtual bool | is_one_to_one_mapping (const Adaptor &mesh, const Matrix &A, const Vector &Bu, const Vector &Bv) |
| Check if 3D -> 2D mapping is one-to-one. More... | |
| Border_param & | get_border_parameterizer () |
| Get the object that maps the surface's border onto a 2D space. | |
| Sparse_LA & | get_linear_algebra_traits () |
| Get the sparse linear algebra (traits object to access the linear system). | |
| CGAL::Discrete_authalic_parameterizer_3< ParameterizationMesh_3, BorderParameterizer_3, SparseLinearAlgebraTraits_d >::Discrete_authalic_parameterizer_3 | ( | Border_param | border_param = Border_param(), |
| Sparse_LA | sparse_la = Sparse_LA() |
||
| ) |
Constructor.
| border_param | Object that maps the surface's border to 2D space. |
| sparse_la | Traits object to access a sparse linear system. |