summaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com/jogamp/graph
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2023-04-20 21:39:21 +0200
committerSven Gothel <[email protected]>2023-04-20 21:39:21 +0200
commita251f5734cc1f5c907f239c3ca3a4f1d4c262058 (patch)
treefe485e886202b6f424d622d93d38cc2d71aa46b2 /src/jogl/classes/com/jogamp/graph
parent97751b036e945fc3afe5e46a6a0b5f96d2b9698b (diff)
Graph OutlineShape.get{Outline->}VectexCount() renamed
Diffstat (limited to 'src/jogl/classes/com/jogamp/graph')
-rw-r--r--src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
index 20eaca236..1a1bd94dd 100644
--- a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
+++ b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java
@@ -224,7 +224,7 @@ public final class OutlineShape implements Comparable<OutlineShape> {
}
/** Returns the total {@link Outline#getVertexCount() vertex number} of all {@link Outline}s. */
- public final int getOutlineVectexCount() {
+ public final int getVertexCount() {
int res = 0;
for(final Outline o : outlines) {
res += o.getVertexCount();