57 #ifndef OPENMESH_TRIMESH_HH 58 #define OPENMESH_TRIMESH_HH 65 #include <OpenMesh/Core/Mesh/PolyMeshT.hh> 94 template <
class Kernel>
106 enum { IsPolyMesh = 0 };
108 enum { IsTriMesh = 1 };
131 typedef typename PolyMesh::HalfedgeHandle HalfedgeHandle;
132 typedef typename PolyMesh::EdgeHandle EdgeHandle;
133 typedef typename PolyMesh::FaceHandle FaceHandle;
138 typedef typename PolyMesh::VertexIter VertexIter;
139 typedef typename PolyMesh::ConstVertexIter ConstVertexIter;
140 typedef typename PolyMesh::EdgeIter EdgeIter;
141 typedef typename PolyMesh::ConstEdgeIter ConstEdgeIter;
142 typedef typename PolyMesh::FaceIter FaceIter;
143 typedef typename PolyMesh::ConstFaceIter ConstFaceIter;
214 VertexHandle _vl, VertexHandle _vr)
215 {
return PolyMesh::vertex_split(this->
add_vertex(_v0_point), _v1, _vl, _vr); }
254 VertexHandle _vl, VertexHandle _vr)
255 {
return PolyMesh::vertex_split(_v0, _v1, _vl, _vr); }
266 inline VertexHandle
split(EdgeHandle _eh,
const Point& _p)
269 const VertexHandle vh = this->
add_vertex(_p); Kernel::split(_eh, vh);
return vh;
280 inline VertexHandle
split_copy(EdgeHandle _eh,
const Point& _p)
283 const VertexHandle vh = this->
add_vertex(_p); Kernel::split_copy(_eh, vh);
return vh;
293 inline void split(EdgeHandle _eh, VertexHandle _vh)
296 Kernel::split(_eh, _vh);
309 Kernel::split_copy(_eh, _vh);
321 inline VertexHandle
split(FaceHandle _fh,
const Point& _p)
333 inline VertexHandle
split_copy(FaceHandle _fh,
const Point& _p)
334 {
const VertexHandle vh = this->
add_vertex(_p); PolyMesh::split_copy(_fh, vh);
return vh; }
343 inline void split(FaceHandle _fh, VertexHandle _vh)
354 { PolyMesh::split_copy(_fh, _vh); }
370 #if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESH_TRIMESH_C) 371 #define OPENMESH_TRIMESH_TEMPLATES 372 #include "TriMeshT.cc" 375 #endif // OPENMESH_TRIMESH_HH defined void split(FaceHandle _fh, VertexHandle _vh)
Face split (= 1-to-3 split, calls corresponding PolyMeshT function).
Kernel::TexCoord3D TexCoord3D
TexCoord3D type.
void split_copy(FaceHandle _fh, VertexHandle _vh)
Face split (= 1-to-3 split, calls corresponding PolyMeshT function).
static bool is_polymesh()
Determine whether this is a PolyMeshT or TriMeshT ( This function does not check the per face vertex ...
Kernel::FaceHalfedgeIter FaceHalfedgeIter
Circulator.
Kernel::ConstVertexEdgeIter ConstVertexEdgeIter
Circulator.
Kernel::Edge Edge
Edge type.
Kernel::TexCoord1D TexCoord1D
TexCoord1D type.
Kernel::VertexEdgeIter VertexEdgeIter
Circulator.
void split(FaceHandle _fh, const Point &_p)
Face split (= 1-to-n split)
Kernel::VertexIHalfedgeIter VertexIHalfedgeIter
Circulator.
VertexHandle split_copy(FaceHandle _fh, const Point &_p)
Face split (= 1-to-3 split, calls corresponding PolyMeshT function).
void split_copy(EdgeHandle _eh, VertexHandle _vh)
Edge split (= 2-to-4 split)
Kernel::FaceEdgeIter FaceEdgeIter
Circulator.
Kernel::Color Color
Color type.
virtual ~TriMeshT()
Destructor.
VertexHandle split(FaceHandle _fh, const Point &_p)
Face split (= 1-to-3 split, calls corresponding PolyMeshT function).
Kernel::Normal Normal
Normal type.
Kernel::ConstFaceHalfedgeIter ConstFaceHalfedgeIter
Circulator.
Kernel::Halfedge Halfedge
Halfedge type.
Kernel::FaceVertexIter FaceVertexIter
Circulator.
Kernel::ConstVertexVertexIter ConstVertexVertexIter
Circulator.
Kernel::ConstFaceFaceIter ConstFaceFaceIter
Circulator.
static bool is_trimesh()
Determine whether this is a PolyMeshT or TriMeshT ( This function does not check the per face vertex ...
Kernel::Vertex Vertex
Vertex type.
Kernel::ConstFaceVertexIter ConstFaceVertexIter
Circulator.
Kernel::VertexHandle VertexHandle
Handle for referencing the corresponding item.
VertexHandle split_copy(EdgeHandle _eh, const Point &_p)
Edge split (= 2-to-4 split)
Kernel::VertexVertexIter VertexVertexIter
Circulator.
Kernel::Face Face
Face type.
Kernel::TexCoord2D TexCoord2D
TexCoord2D type.
VertexHandle split(EdgeHandle _eh, const Point &_p)
Edge split (= 2-to-4 split)
HalfedgeHandle vertex_split(VertexHandle _v0, VertexHandle _v1, VertexHandle _vl, VertexHandle _vr)
Vertex Split: inverse operation to collapse().
Kernel::VertexFaceIter VertexFaceIter
Circulator.
Kernel::ConstVertexOHalfedgeIter ConstVertexOHalfedgeIter
Circulator.
Kernel::ConstVertexFaceIter ConstVertexFaceIter
Circulator.
VertexHandle add_vertex(const Point &_p)
Alias for new_vertex(const Point&).
Kernel::ConstFaceEdgeIter ConstFaceEdgeIter
Circulator.
Kernel::VertexOHalfedgeIter VertexOHalfedgeIter
Circulator.
void split(EdgeHandle _eh, VertexHandle _vh)
Edge split (= 2-to-4 split)
Kernel::Point Point
Coordinate type.
Kernel::ConstVertexIHalfedgeIter ConstVertexIHalfedgeIter
Circulator.
TriMeshT()
Default constructor.
Kernel::Scalar Scalar
Scalar type.
Kernel::FaceFaceIter FaceFaceIter
Circulator.
HalfedgeHandle vertex_split(Point _v0_point, VertexHandle _v1, VertexHandle _vl, VertexHandle _vr)
Vertex Split: inverse operation to collapse().
Normal calc_face_normal(FaceHandle _fh) const