diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-07 20:04:59 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-07 20:04:59 (GMT) |
commit | 27a99044d8388ff30080bd0298eb936b8dd1341a (patch) | |
tree | ddc03a541c8a9708ac76581706188700f445abbc /src/cgalutils.h | |
parent | 75784844eaad1aa77757eb7640547146e0a96209 (diff) |
Implemented OFF import, refactored PolySet/Polyhedron conversion
Diffstat (limited to 'src/cgalutils.h')
-rw-r--r-- | src/cgalutils.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/cgalutils.h b/src/cgalutils.h new file mode 100644 index 0000000..a249697 --- /dev/null +++ b/src/cgalutils.h @@ -0,0 +1,9 @@ +#ifndef CGALUTILS_H_ +#define CGALUTILS_H_ + +#include <cgalfwd.h> + +class PolySet *createPolySetFromPolyhedron(const CGAL_Polyhedron &p); +CGAL_Polyhedron *createPolyhedronFromPolySet(const class PolySet &ps); + +#endif |