Added is_collapse_ok and split_edge for polymeshes

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@396 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2011-07-01 07:10:15 +00:00
parent 92d0d9b3b6
commit 39f1eecc82
3 changed files with 205 additions and 2 deletions

View File

@@ -430,10 +430,11 @@ public:
{ Kernel::split(_fh, _vh); }
inline void split(EdgeHandle _eh, const Point& _p)
{ Kernel::split(_eh, add_vertex(_p)); }
{ Kernel::split_edge(_eh, add_vertex(_p)); }
inline void split(EdgeHandle _eh, VertexHandle _vh)
{ Kernel::split(_eh, _vh); }
{ Kernel::split_edge(_eh, _vh); }
};