Skip to content

Commit

Permalink
removed duplicate method
Browse files Browse the repository at this point in the history
  • Loading branch information
JansenSmith authored Jul 31, 2024
1 parent 4382fa6 commit 7daeb38
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/main/java/eu/mihosoft/vrl/v3d/CSG.java
Original file line number Diff line number Diff line change
Expand Up @@ -2954,9 +2954,6 @@ public static List<CSG> tessellate(CSG incoming, int xSteps, int ySteps, int zSt
};
return tessellate(incoming, xSteps, ySteps, zSteps, incoming.getTotalX(), incoming.getTotalY(), incoming.getTotalZ(), offsets);
}
public static List<CSG> tessellate(CSG incoming, int xSteps, int ySteps, int zSteps) {
return tessellate(incoming, xSteps, ySteps, zSteps, incoming.getTotalX(), incoming.getTotalY(), incoming.getTotalZ(), 0, 0, 0, 0, 0, 0, 0, 0, 0);
}
public static List<CSG> tessellate(CSG incoming, int steps, double gridSpacing) {
return tessellate(incoming, steps, steps, steps, gridSpacing, gridSpacing, gridSpacing, 0, 0, 0, 0, 0, 0, 0, 0, 0);
}
Expand Down

0 comments on commit 7daeb38

Please sign in to comment.