diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/CGALEvaluator.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CGALEvaluator.cc b/src/CGALEvaluator.cc index c84d21f..75b9097 100644 --- a/src/CGALEvaluator.cc +++ b/src/CGALEvaluator.cc @@ -257,7 +257,7 @@ Response CGALEvaluator::visit(State &state, const TransformNode &node) // Unfortunately CGAL provides no transform method for CGAL_Nef_polyhedron2 // objects. So we convert in to our internal 2d data format, transform it, // tesselate it and create a new CGAL_Nef_polyhedron2 from it.. What a hack! - + Eigen::Matrix2f testmat; testmat << node.matrix(0,0), node.matrix(0,1), node.matrix(1,0), node.matrix(1,1); if (testmat.determinant() == 0) { |