1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-20 09:34:26 +00:00

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

Conflicts:

	xs/src/TriangleMesh.cpp
This commit is contained in:
Alessandro Ranellucci
2014-01-13 00:45:19 +01:00
parent a712284afb
commit 2d9c399d96
3 changed files with 28 additions and 12 deletions
+1 -1
View File
@@ -40,7 +40,7 @@ class TriangleMesh
#endif
};
enum FacetEdgeType { feNone, feTop, feBottom };
enum FacetEdgeType { feNone, feTop, feBottom, feHorizontal };
class IntersectionPoint : public Point
{