Bugfix: incomplete slicing when a horizontal surface was tangent to the slicing plane and it shared an edge with an adjacent volume. #1672

This commit is contained in:
Alessandro Ranellucci 2014-01-13 00:45:19 +01:00
parent b0a7baa454
commit fcaa3a03c2
2 changed files with 22 additions and 10 deletions

View file

@ -49,7 +49,7 @@ class TriangleMesh
void require_shared_vertices();
};
enum FacetEdgeType { feNone, feTop, feBottom };
enum FacetEdgeType { feNone, feTop, feBottom, feHorizontal };
class IntersectionPoint : public Point
{