KrisLibrary  1.0.0
LSConformalMapping.h
1 #ifndef MESHING_LS_CONFORMAL_MAPPING_H
2 #define MESHING_LS_CONFORMAL_MAPPING_H
3 
4 #include "TriMeshAtlas.h"
5 
6 namespace Meshing {
7 
16 {
17  public:
19  bool Calculate();
20 
21  TriMeshWithTopology& mesh;
22  TriMeshChart& chart;
23 };
24 
25 } //namespace Meshing
26 
27 #endif
28 
The namespace for all classes/functions in the Meshing package.
Definition: AnyGeometry.h:11
A triangle mesh that contains connectivity relations between vertices and triangles.
Definition: TriMeshTopology.h:31
A chart maps a genus 0 triangle mesh to a 2d disk.
Definition: TriMeshAtlas.h:12
An approximately-conformal parameterization a genus-0 mesh, found by a least-squares method...
Definition: LSConformalMapping.h:15