We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf86134 commit 670f01dCopy full SHA for 670f01d
src/main/java/com/menecats/polybool/helpers/PolyBoolHelper.java
@@ -24,7 +24,7 @@ public static Epsilon epsilon(double epsilon) {
24
25
public static Epsilon epsilon(double epsilon, boolean experimental) {
26
return experimental
27
- ? new ExperimentalEpsilon()
+ ? new ExperimentalEpsilon(epsilon)
28
: new Epsilon(epsilon);
29
}
30
@@ -43,7 +43,7 @@ public static Polygon polygon(List<double[]>... regions) {
43
44
@SafeVarargs
45
public static Polygon polygon(boolean inverted, List<double[]>... regions) {
46
- return new Polygon(Arrays.asList(regions));
+ return new Polygon(Arrays.asList(regions), inverted);
47
48
49
private PolyBoolHelper() {
0 commit comments