KrisLibrary  1.0.0
Expand.h
1 #ifndef MESHING_EXPAND_H
2 #define MESHING_EXPAND_H
3 
4 #include "TriMeshTopology.h"
5 
6 namespace Meshing {
7 
8 void Expand(const TriMeshWithTopology& in,Real distance,int divs,TriMesh& m);
9 void Expand2Sided(const TriMeshWithTopology& in,Real distance,int divs,TriMesh& m);
10 
11 } //namespace Meshing
12 
13 #endif
14 
The namespace for all classes/functions in the Meshing package.
Definition: AnyGeometry.h:10