diff options
author | Marius Kintel <marius@kintel.net> | 2011-04-12 18:35:44 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-04-12 18:35:44 (GMT) |
commit | d24b3cc84d0701a5423925765e515db7df9614c5 (patch) | |
tree | 0d63867d8b5a3c6ffe107371caa6b29cf8ad0f02 /src/CGALRenderer.cc | |
parent | 633343c47e0d2bced64d47f62e814489b8e76dc2 (diff) | |
parent | 1754a970a76c071fff91cc7c716aa0b78b4ac6be (diff) |
Ported recent changes to master into the visitor branch
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; } } } |