GEL
2
GEL is a library for Geometry and Linear Algebra
|
00001 /* ----------------------------------------------------------------------- * 00002 * This file is part of GEL, www.imm.dtu.dk/GEL 00003 * Copyright (C) the authors (see AUTHORS.txt) and DTU Informatics 00004 * 00005 * Principal authors: 00006 * Christian Thode Larsen (thode2d@gmail.com) 00007 * J. Andreas Baerentzen (jab@imm.dtu.dk) 00008 * 00009 * See LICENSE.txt for licensing information 00010 * ----------------------------------------------------------------------- */ 00011 00012 #ifndef __HMESH_TRIANGULATE__H 00013 #define __HMESH_TRIANGULATE__H 00014 00015 #include "Manifold.h" 00016 00017 namespace HMesh 00018 { 00020 void triangulate_by_edge_face_split(Manifold& m); 00021 00023 void curvature_triangulate(Manifold& m); 00024 00026 void triangulate_by_vertex_face_split(Manifold& m); 00027 00029 void shortest_edge_triangulate(Manifold& m); 00030 00034 void triangulate_face_by_edge_split(Manifold& m, FaceID f); 00035 00036 00037 } 00038 00039 #endif