diff options
Diffstat (limited to 'src/CGALRenderer.cc')
-rw-r--r-- | src/CGALRenderer.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/CGALRenderer.cc b/src/CGALRenderer.cc index 4963814..f5bcbda 100644 --- a/src/CGALRenderer.cc +++ b/src/CGALRenderer.cc @@ -60,6 +60,11 @@ void CGALRenderer::process(CGAL_Nef_polyhedron &target, const CGAL_Nef_polyhedro case MINKOWSKI: target.p2 = minkowski2(target.p2, src.p2); break; + case HULL: + //FIXME: Port convex hull to a binary operator or process it all in the end somehow + // target.p2 = convexhull2(target.p2, src.p2); + // target.p2 = convexhull2(polys); + break; } } else if (target.dim == 3) { @@ -76,6 +81,9 @@ void CGALRenderer::process(CGAL_Nef_polyhedron &target, const CGAL_Nef_polyhedro case MINKOWSKI: target.p3 = minkowski3(target.p3, src.p3); break; + case HULL: + // FIXME: Print warning: hull() not supported in 3D + break; } } } |