Polyhedral-net Splines
Loading...
Searching...
No Matches
subdivision.hpp
1#pragma once
2#include <OpenMesh/Core/Mesh/PolyMesh_ArrayKernelT.hh>
3#include <OpenMesh/Core/Utils/PropertyManager.hh>
4#include <map>
5#include <numeric>
6#include "VertexMapping.hpp"
7
15
16typedef OpenMesh::PolyMesh_ArrayKernelT<> MeshType;
17
29MeshType subdividePnsControlMeshCatmullClark(MeshType& a_Mesh);
30
42MeshType subdividePnsControlMeshDooSabin(MeshType& a_Mesh);
MeshType subdividePnsControlMeshCatmullClark(MeshType &a_Mesh)
Subdivide the input mesh using Catmull-Clark subdivision scheme. Used for iterative refinement of reg...
Definition subdivision.cpp:3
MeshType subdividePnsControlMeshDooSabin(MeshType &a_Mesh)
Subdivide the input mesh using Doo-Sabin subdivision scheme. Used for iterative refinement of regions...
Definition subdivision.cpp:135