We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e45b5c commit 7c85608Copy full SHA for 7c85608
src/main/java/eu/mihosoft/vrl/v3d/TextExtrude.java
@@ -40,6 +40,7 @@
40
public class TextExtrude {
41
private static final String default_font = "FreeSerif";
42
private final static int POINTS_CURVE = 10;
43
+ private static final double CURVE_SEGMENTS = 4; // Number of segments to approximate curves
44
45
private final String text;
46
// private List<Vector3d> points;
@@ -200,7 +201,6 @@ public List<Vector3d> getOffset() {
200
201
}
202
203
// Below is AI slop
- private static final double CURVE_SEGMENTS = 2; // Number of segments to approximate curves
204
//private static final double POINT_EPSILON = 0.0001; // Distance threshold for considering points equal
205
206
/**
0 commit comments