We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b0ba10f commit a8b084bCopy full SHA for a8b084b
1 file changed
src/main/java/eu/mihosoft/vrl/v3d/CSG.java
@@ -1098,6 +1098,10 @@ public CSG union(CSG csg) {
1098
* @throws ColinearPointsException
1099
*/
1100
public CSG dumbUnion(CSG csg) {
1101
+ if (defaultOptType == OptType.Manifold3d) {
1102
+ // in manifold mode, take no action that could become non-manifold
1103
+ return union(csg);
1104
+ }
1105
// boolean tri = triangulated && csg.triangulated;
1106
CSG result = this.clone();
1107
CSG other = csg.clone();
0 commit comments