Subversion Repositories gelsvn

Rev

Rev 149 | Rev 182 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
149 jab 1
#ifndef __HMESHUTIL_TRIANGULATE__H
2
#define __HMESHUTIL_TRIANGULATE__H
3
 
4
#include "HMesh/Manifold.h"
5
 
150 jab 6
namespace HMesh
149 jab 7
{
8
 
9
  /// Naive division of polygons into triangles.
10
  void triangulate(HMesh::Manifold&);
11
 
12
  /// Try to respect curvature to create a better triangulation.
13
  void curvature_triangulate(HMesh::Manifold& m);
14
 
15
  /// Naive triangulation by connecting to center point.
16
  void safe_triangulate(HMesh::Manifold& m);
17
 
18
}
19
 
20
#endif