Fixed pointer bug, wires seem okay now

This commit is contained in:
Ken Arroyo Ohori
2017-02-01 15:57:25 -06:00
parent 233aaeaca2
commit f2a45b7057
3 changed files with 17 additions and 29 deletions
+2 -2
View File
@@ -40,11 +40,11 @@ if ( it != cache.T.end() ) { e = it->second; return true; }
#undef Handle
#include <CGAL/Exact_predicates_exact_constructions_kernel.h>
#include <CGAL/Nef_polyhedron_3.h>
#include <CGAL/Polyhedron_3.h>
typedef CGAL::Exact_predicates_exact_constructions_kernel Kernel;
typedef CGAL::Nef_polyhedron_3<Kernel> *cgal_shape_t;
typedef CGAL::Polyhedron_3<Kernel> *cgal_shape_t;
typedef std::vector<Kernel::Point_3> *cgal_face_t;
typedef std::vector<Kernel::Point_3> *cgal_wire_t;
typedef std::vector<Kernel::Point_3> *cgal_curve_t;