diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-01 02:09:06 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-01 02:09:06 (GMT) |
commit | 1633fb0344c92631562c2a802e8deddf2ce4637f (patch) | |
tree | e6e71a9d9a524119db9cc430c5f8409c6839aa9a /src/cgaladv.cc | |
parent | c193372d2ff20d32900d72e817e7c9608ae36112 (diff) |
Refactoring of CGAL functionality to allow for forward-declaration of CGAL classes in header files, reducing coupling and thus compilation times
Diffstat (limited to 'src/cgaladv.cc')
-rw-r--r-- | src/cgaladv.cc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/cgaladv.cc b/src/cgaladv.cc index 6e26713..5b2e5df 100644 --- a/src/cgaladv.cc +++ b/src/cgaladv.cc @@ -29,17 +29,10 @@ #include "context.h" #include "builtin.h" #include "printutils.h" -#include "cgal.h" #include "visitor.h" #include <sstream> #include <assert.h> -#ifdef ENABLE_CGAL -extern CGAL_Nef_polyhedron3 minkowski3(CGAL_Nef_polyhedron3 a, CGAL_Nef_polyhedron3 b); -extern CGAL_Nef_polyhedron2 minkowski2(CGAL_Nef_polyhedron2 a, CGAL_Nef_polyhedron2 b); -extern CGAL_Nef_polyhedron2 convexhull2(std::list<CGAL_Nef_polyhedron2> a); -#endif - enum cgaladv_type_e { MINKOWSKI, GLIDE, |