A few more simple IFC classes to fill in things

This commit is contained in:
Ken Arroyo Ohori
2017-03-23 20:20:43 -06:00
parent 12967790ba
commit dd206a2a52
6 changed files with 114 additions and 20 deletions
@@ -26,7 +26,7 @@ void IfcGeom::CgalKernel::remove_duplicate_points_from_loop(cgal_wire_t& polygon
CGAL::Polyhedron_3<Kernel> IfcGeom::CgalKernel::create_polyhedron(std::list<cgal_face_t> &face_list) {
// Naive creation
CGAL::Polyhedron_3<Kernel> polyhedron = CGAL::Polyhedron_3<Kernel>();
CGAL::Polyhedron_3<Kernel> polyhedron;
PolyhedronBuilder builder(&face_list);
polyhedron.delegate(builder);