Skip to content

Commit

Permalink
fix broken dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
micycle1 committed Jul 27, 2024
1 parent f65e231 commit 28fe7a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>micycle</groupId>
<artifactId>PGS</artifactId>
<version>1.4.0</version>
<version>1.4.1</version>
<name>Processing Geometry Suite</name>
<description>Geometric algorithms for Processing</description>

Expand Down Expand Up @@ -302,7 +302,7 @@
<dependency>
<groupId>com.github.openjump-gis</groupId>
<artifactId>topology-extension</artifactId>
<version>v2.0.5</version>
<version>9c1d788f8d</version>
</dependency>
<dependency>
<groupId>com.github.scoutant</groupId>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/micycle/pgs/PGS_Meshing.java
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ public static PShape simplifyMesh(PShape mesh, double tolerance, boolean preserv
CoverageSimplifier simplifier = new CoverageSimplifier(geometries);
Geometry[] output;
if (preservePerimeter) {
output = simplifier.simplifyInner(tolerance);
output = CoverageSimplifier.simplifyInner(geometries, tolerance);
} else {
output = simplifier.simplify(tolerance);
}
Expand Down

0 comments on commit 28fe7a9

Please sign in to comment.