mirror of https://github.com/CGAL/cgal
20 lines
976 B
Plaintext
20 lines
976 B
Plaintext
Planar Parameterization of Triangulated Surface Meshes
|
|
|
|
Parameterizing a surface amounts to finding a one-to-one mapping from a
|
|
suitable domain to the surface. In this package, we focus on triangulated
|
|
surfaces that are homeomorphic to a disk and on piecewise linear mappings
|
|
into a planar domain.
|
|
|
|
This CGAL package implements several surface mesh parameterization methods, such as
|
|
As Rigid As Possible Parameterization, Discrete Authalic Parameterization,
|
|
Discrete Conformal Map, Floater Mean Value Coordinates, Least Squares Conformal Maps,
|
|
Orbifold Tutte Embedding, or Tutte Barycentric Mapping.
|
|
|
|
The package proposes an interface with the Boost Graph Library API data structure.
|
|
It can thus be used either with Polyhedron_3, Surface_mesh, or any class model of the concept `FaceGraph`.
|
|
|
|
Since parameterizing meshes requires an efficient representation of sparse matrices
|
|
and efficient iterative or direct linear solvers, we provide links to the standard
|
|
library Eigen3.
|
|
|