blob: 3fb9360f15ffcb7c6e9a6d8f694db4be662724da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef CGALUTILS_H_
#define CGALUTILS_H_
#include <cgalfwd.h>
class PolySet *createPolySetFromPolyhedron(const CGAL_Polyhedron &p);
CGAL_Polyhedron *createPolyhedronFromPolySet(const class PolySet &ps);
std::string dump_cgal_nef_polyhedron2( const CGAL_Nef_polyhedron2 &N );
std::string dump_cgal_nef_polyhedron3( const CGAL_Nef_polyhedron3 &N );
std::string dump_cgal_nef_polyhedron2_svg( const CGAL_Nef_polyhedron2 &N );
std::string dump_cgal_nef_polyhedron3_svg( const CGAL_Nef_polyhedron3 &N );
static int svg_counter = 0;
#endif
|