better comments
This commit is contained in:
parent
6ba1493e3e
commit
855280fc08
|
@ -37,8 +37,8 @@ namespace tri {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
This class contains two members that allow to build a triangular mesh from a polygonal mesh
|
This class contains two members that allow to build a triangular mesh from a polygonal mesh
|
||||||
and viceversa. In a trimesh, the generic polygons with n sides are codified represented by tagging the internal edge of the face
|
and viceversa. In a trimesh, the generic polygons with n sides are codified represented by
|
||||||
with the SetF.
|
tagging the internal edge of the face as 'faux' with the SetF.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
template <class TriMeshType,class PolyMeshType >
|
template <class TriMeshType,class PolyMeshType >
|
||||||
|
@ -53,6 +53,7 @@ namespace tri {
|
||||||
/**
|
/**
|
||||||
Given a tri mesh (with per-face normals and FF connectivity),
|
Given a tri mesh (with per-face normals and FF connectivity),
|
||||||
merges flat faces into larger polygons.
|
merges flat faces into larger polygons.
|
||||||
|
The merging is done only by setting the faux bit
|
||||||
**/
|
**/
|
||||||
static void MergeFlatFaces(TriMeshType & tm, double tolerance = 0.1E-4)
|
static void MergeFlatFaces(TriMeshType & tm, double tolerance = 0.1E-4)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue