57 #ifndef OPENMESH_POLYMESHT_HH 58 #define OPENMESH_POLYMESHT_HH 65 #include <OpenMesh/Core/Geometry/MathDefs.hh> 66 #include <OpenMesh/Core/Mesh/PolyConnectivity.hh> 67 #include <OpenMesh/Core/Mesh/FinalMeshItemsT.hh> 93 template <
class Kernel>
103 enum { IsPolyMesh = 1 };
105 enum { IsTriMesh = 0 };
112 typedef typename Kernel::Scalar
Scalar;
115 typedef typename Kernel::Point
Point;
131 typedef typename Kernel::Edge
Edge;
133 typedef typename Kernel::Face
Face;
140 typedef typename Kernel::HalfedgeHandle HalfedgeHandle;
141 typedef typename Kernel::EdgeHandle EdgeHandle;
142 typedef typename Kernel::FaceHandle FaceHandle;
146 typedef typename Kernel::VertexIter VertexIter;
147 typedef typename Kernel::HalfedgeIter HalfedgeIter;
148 typedef typename Kernel::EdgeIter EdgeIter;
149 typedef typename Kernel::FaceIter FaceIter;
151 typedef typename Kernel::ConstVertexIter ConstVertexIter;
152 typedef typename Kernel::ConstHalfedgeIter ConstHalfedgeIter;
153 typedef typename Kernel::ConstEdgeIter ConstEdgeIter;
154 typedef typename Kernel::ConstFaceIter ConstFaceIter;
203 {
return Kernel::new_vertex(); }
212 VertexHandle vh(Kernel::new_vertex());
213 this->set_point(vh, _p);
230 VertexHandle vh(Kernel::new_vertex_dirty());
231 this->set_point(vh, _p);
274 const Point& _p2)
const;
310 virtual Normal
calc_halfedge_normal(HalfedgeHandle _heh,
const double _feature_angle = 0.8)
const;
387 return this->point(this->to_vertex_handle(_heh)) -
388 this->point(this->from_vertex_handle(_heh));
392 Scalar calc_edge_length(EdgeHandle _eh)
const 393 {
return calc_edge_length(this->halfedge_handle(_eh,0)); }
398 {
return (Scalar)sqrt(calc_edge_sqr_length(_heh)); }
400 Scalar calc_edge_sqr_length(EdgeHandle _eh)
const 401 {
return calc_edge_sqr_length(this->halfedge_handle(_eh,0)); }
403 Scalar calc_edge_sqr_length(HalfedgeHandle _heh)
const 407 return edge_vec.sqrnorm();
429 Scalar denom = v0.norm()*v1.norm();
434 Scalar cos_a =
dot(v0 , v1) / denom;
435 if (this->is_boundary(_in_heh))
437 FaceHandle fh(this->face_handle(this->opposite_halfedge_handle(_in_heh)));
439 Scalar sign_a =
dot(
cross(v0, v1), f_n);
440 return angle(cos_a, sign_a);
474 _sector_normal =
cross(vec0, vec1);
482 Normal sector_normal;
484 return sector_normal.norm()/2;
492 assert(Kernel::has_face_normals());
494 if (this->is_boundary(this->edge_handle(_heh)))
498 const Normal& n0 = this->normal(this->face_handle(_heh));
499 const Normal& n1 = this->normal(this->face_handle(this->opposite_halfedge_handle(_heh)));
502 Scalar da_cos =
dot(n0, n1);
504 Scalar da_sin_sign =
dot(
cross(n0, n1), he);
505 return angle(da_cos, da_sin_sign);
514 Scalar calc_dihedral_angle(HalfedgeHandle _heh)
const 516 if (this->is_boundary(this->edge_handle(_heh)))
524 Scalar denom = n0.norm()*n1.norm();
529 Scalar da_cos =
dot(n0, n1)/denom;
531 Scalar da_sin_sign =
dot(
cross(n0, n1), he);
532 return angle(da_cos, da_sin_sign);
536 Scalar calc_dihedral_angle(EdgeHandle _eh)
const 537 {
return calc_dihedral_angle(this->halfedge_handle(_eh,0)); }
545 inline void split(FaceHandle _fh,
const Point& _p)
548 inline void split(FaceHandle _fh, VertexHandle _vh)
549 { Kernel::split(_fh, _vh); }
551 inline void split(EdgeHandle _eh,
const Point& _p)
554 inline void split(EdgeHandle _eh, VertexHandle _vh)
555 { Kernel::split_edge(_eh, _vh); }
560 Normal calc_face_normal_impl(FaceHandle,
PointIs3DTag)
const;
562 Normal calc_face_normal_impl(
const Point&,
const Point&,
const Point&,
PointIs3DTag)
const;
563 Normal calc_face_normal_impl(
const Point&,
const Point&,
const Point&,
PointIsNot3DTag)
const;
591 template<
typename LHS,
typename KERNEL>
596 template<
typename LHS,
typename KERNEL>
601 template<
typename LHS,
typename KERNEL>
606 template<
typename LHS,
typename KERNEL>
614 #if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESH_POLYMESH_C) 615 # define OPENMESH_POLYMESH_TEMPLATES 616 # include "PolyMeshT.cc" 619 #endif // OPENMESH_POLYMESHT_HH defined Normal calc_edge_vector(HalfedgeHandle _heh) const
Scalar calc_edge_length(HalfedgeHandle _heh) const
Kernel::TexCoord3D TexCoord3D
TexCoord3D type.
Kernel::FaceHalfedgeIter FaceHalfedgeIter
Circulator.
Add normals to mesh item (vertices/faces)
Normal calc_vertex_normal(VertexHandle _vh) const
Calculate vertex normal for one specific vertex.
Kernel::ConstVertexEdgeIter ConstVertexEdgeIter
Circulator.
Scalar calc_sector_angle(HalfedgeHandle _in_heh) const
Kernel::Edge Edge
Edge type.
Kernel::TexCoord1D TexCoord1D
TexCoord1D type.
void update_normals()
Compute normals for all primitives.
Kernel::VertexEdgeIter VertexEdgeIter
Circulator.
void update_normal(FaceHandle _fh)
Update normal for face _fh.
Add 3D texture coordinates (vertices, halfedges)
void split(FaceHandle _fh, const Point &_p)
Face split (= 1-to-n split)
Kernel::VertexIHalfedgeIter VertexIHalfedgeIter
Circulator.
VertexHandle new_vertex_dirty(const Point &_p)
VertexHandle new_vertex(const Point &_p)
Adds a new vertex initialized to a custom position.
void update_halfedge_normals(const double _feature_angle=0.8)
Update normal vectors for all halfedges.
Kernel::FaceEdgeIter FaceEdgeIter
Circulator.
void calc_face_centroid(FaceHandle _fh, Point &_pt) const
calculates the average of the vertices defining _fh
Kernel::Color Color
Color type.
static bool is_trimesh()
Determine whether this is a PolyMeshT or TriMeshT ( This function does not check the per face vertex ...
void calc_sector_vectors(HalfedgeHandle _in_heh, Normal &_vec0, Normal &_vec1) const
Normal calc_edge_vector(EdgeHandle _eh) const
Scalar calc_sector_area(HalfedgeHandle _in_heh) const
T sane_aarg(T _aarg)
Trigonometry/angles - related.
Kernel::Normal Normal
Normal type.
Kernel::ConstFaceHalfedgeIter ConstFaceHalfedgeIter
Circulator.
void calc_sector_normal(HalfedgeHandle _in_heh, Normal &_sector_normal) const
Kernel::Halfedge Halfedge
Halfedge type.
unsigned int find_feature_edges(Scalar _angle_tresh=OpenMesh::deg_to_rad(44.0))
Kernel::FaceVertexIter FaceVertexIter
Circulator.
VertexHandle new_vertex()
Adds a new default-initialized vertex.
Kernel::ConstVertexVertexIter ConstVertexVertexIter
Circulator.
Kernel::ConstFaceFaceIter ConstFaceFaceIter
Circulator.
Kernel::Vertex Vertex
Vertex type.
Add 1D texture coordinates (vertices, halfedges)
Scalar calc_dihedral_angle_fast(HalfedgeHandle _heh) const
virtual Normal calc_face_normal(FaceHandle _fh) const
void calc_edge_vector(EdgeHandle _eh, Normal &_edge_vec) const
bool is_estimated_feature_edge(HalfedgeHandle _heh, const double _feature_angle) const
T angle(T _cos_angle, T _sin_angle)
Kernel::ConstFaceVertexIter ConstFaceVertexIter
Circulator.
Add colors to mesh item (vertices/faces/edges)
Kernel::VertexHandle VertexHandle
Handle for referencing the corresponding item.
Kernel::VertexVertexIter VertexVertexIter
Circulator.
Kernel::Face Face
Face type.
Kernel::TexCoord2D TexCoord2D
TexCoord2D type.
Kernel::VertexFaceIter VertexFaceIter
Circulator.
void calc_edge_vector(HalfedgeHandle _heh, Normal &_edge_vec) const
osg::Vec3f::ValueType dot(const osg::Vec3f &_v1, const osg::Vec3f &_v2)
Adapter for osg vector member computing a scalar product.
osg::Vec3f cross(const osg::Vec3f &_v1, const osg::Vec3f &_v2)
Adapter for osg vector member computing a scalar product.
Kernel::ConstVertexOHalfedgeIter ConstVertexOHalfedgeIter
Circulator.
LHS mesh_cast(PolyMeshT< KERNEL > &rhs)
Cast a mesh with different but identical traits into each other.
Kernel::ConstVertexFaceIter ConstVertexFaceIter
Circulator.
void calc_vertex_normal_loop(VertexHandle _vh, Normal &_n) const
Compute normals for all primitives.
void update_normal(HalfedgeHandle _heh, const double _feature_angle=0.8)
Update normal for halfedge _heh.
Add 2D texture coordinates (vertices, halfedges)
VertexHandle add_vertex(const Point &_p)
Alias for new_vertex(const Point&).
Kernel::ConstFaceEdgeIter ConstFaceEdgeIter
Circulator.
void update_face_normals()
Update normal vectors for all faces.
void calc_vertex_normal_fast(VertexHandle _vh, Normal &_n) const
Kernel::VertexOHalfedgeIter VertexOHalfedgeIter
Circulator.
Kernel::Point Point
Coordinate type.
Kernel::ConstVertexIHalfedgeIter ConstVertexIHalfedgeIter
Circulator.
void update_vertex_normals()
Update normal vectors for all vertices.
Scalar calc_dihedral_angle_fast(EdgeHandle _eh) const
void calc_vertex_normal_correct(VertexHandle _vh, Normal &_n) const
Compute normals for all primitives.
void update_normal(VertexHandle _vh)
Update normal for vertex _vh.
static bool is_polymesh()
Determine whether this is a PolyMeshT or TriMeshT ( This function does not check the per face vertex ...
Kernel::Scalar Scalar
Scalar type.
VertexHandle add_vertex_dirty(const Point &_p)
Alias for new_vertex_dirty().
PolyMeshT< Kernel > This
Self type. Used to specify iterators/circulators.
virtual Normal calc_halfedge_normal(HalfedgeHandle _heh, const double _feature_angle=0.8) const
Calculate halfedge normal for one specific halfedge.
Cast a mesh with different but identical traits into each other.
Kernel::FaceFaceIter FaceFaceIter
Circulator.
bool is_zero(const T &_a, Real _eps)