59#ifndef OPENMESH_SUBDIVIDER_UNIFORM_CATMULLCLARKT_HH
60#define OPENMESH_SUBDIVIDER_UNIFORM_CATMULLCLARKT_HH
68#if defined(OM_CC_MIPS)
91template <
typename MeshType,
typename RealType =
float>
96 typedef typename MeshType::FaceHandle FaceHandle;
97 typedef typename MeshType::VertexHandle VertexHandle;
98 typedef typename MeshType::EdgeHandle EdgeHandle;
99 typedef typename MeshType::HalfedgeHandle HalfedgeHandle;
101 typedef typename MeshType::Point Point;
102 typedef typename MeshType::Normal Normal;
103 typedef typename MeshType::FaceIter FaceIter;
104 typedef typename MeshType::EdgeIter EdgeIter;
105 typedef typename MeshType::VertexIter VertexIter;
107 typedef typename MeshType::VertexEdgeIter VertexEdgeIter;
108 typedef typename MeshType::VertexFaceIter VertexFaceIter;
110 typedef typename MeshType::VOHIter VOHIter;
124 const char *
name()
const {
return "Uniform CatmullClark"; }
141 virtual bool subdivide( MeshType& _m,
size_t _n ,
const bool _update_points =
true);
150 void split_edge( MeshType& _m,
const EdgeHandle& _eh);
152 void split_face( MeshType& _m,
const FaceHandle& _fh);
154 void compute_midpoint( MeshType& _m,
const EdgeHandle& _eh,
const bool _update_points);
156 void update_vertex(MeshType& _m,
const VertexHandle& _vh);
175#if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESH_SUBDIVIDER_UNIFORM_CATMULLCLARK_CC)
176# define OPENMESH_SUBDIVIDER_TEMPLATES
177# include "CatmullClarkT.cc"
Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition MeshItems.hh:64
Software related to uniform subdivision of meshes.
Based on code from Leon Kos, CAD lab, Mech.Eng., University of Ljubljana, Slovenia (http://www....
Definition CatmullClarkT.hh:93
virtual bool cleanup(MeshType &_m)
Remove properties and weights.
Definition CatmullClarkT.cc:90
CatmullClarkT(MeshType &_m)
Constructor.
Definition CatmullClarkT.hh:118
const char * name() const
Return name of subdivision algorithm.
Definition CatmullClarkT.hh:124
virtual bool prepare(MeshType &_m)
Initialize properties and weights.
Definition CatmullClarkT.cc:72
virtual bool subdivide(MeshType &_m, size_t _n, const bool _update_points=true)
Execute n subdivision steps.
Definition CatmullClarkT.cc:103
CatmullClarkT()
Constructor.
Definition CatmullClarkT.hh:115
SubdividerT(void)
Definition SubdividerT.hh:107