diff options
author | Sven Gothel <[email protected]> | 2023-02-05 12:34:20 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-02-05 12:34:20 +0100 |
commit | a671e88c59153a39e46a64f2cb924d205f06e3f8 (patch) | |
tree | fea5c021511412585e4cc1248e5824352958870d /src/jogl/classes/com | |
parent | dddb088571d2d5174ba68aa0a34ad62eaa06243a (diff) |
Graph: OutlineShape: Add positional addVertex() variants for component based addVertex methods
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r-- | src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java | 60 |
1 files changed, 53 insertions, 7 deletions
diff --git a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java index 4f12612b0..4bc1d0820 100644 --- a/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java +++ b/src/jogl/classes/com/jogamp/graph/curve/OutlineShape.java @@ -356,7 +356,7 @@ public final class OutlineShape implements Comparable<OutlineShape> { /** * Adds a vertex to the last open outline to the shape at {@code position} - * @param position indx at which the vertex will be added + * @param position index within the last open outline, at which the vertex will be added * @param v the vertex to be added to the OutlineShape */ public final void addVertex(final int position, final Vertex v) { @@ -369,8 +369,8 @@ public final class OutlineShape implements Comparable<OutlineShape> { } /** - * Add a 2D {@link Vertex} to the last outline by defining the coordinate attribute - * of the vertex. The 2D vertex will be represented as Z=0. + * Add a 2D {@link Vertex} to the last open outline to the shape's tail. + * The 2D vertex will be represented as Z=0. * * @param x the x coordinate * @param y the y coordniate @@ -382,8 +382,21 @@ public final class OutlineShape implements Comparable<OutlineShape> { } /** - * Add a 3D {@link Vertex} to the last outline by defining the coordniate attribute - * of the vertex. + * Add a 2D {@link Vertex} to the last open outline to the shape at {@code position}. + * The 2D vertex will be represented as Z=0. + * + * @param position index within the last open outline, at which the vertex will be added + * @param x the x coordinate + * @param y the y coordniate + * @param onCurve flag if this vertex is on the final curve or defines a curved region + * of the shape around this vertex. + */ + public final void addVertex(final int position, final float x, final float y, final boolean onCurve) { + addVertex(position, vertexFactory.create(x, y, 0f, onCurve)); + } + + /** + * Add a 3D {@link Vertex} to the last open outline to the shape's tail. * @param x the x coordinate * @param y the y coordinate * @param z the z coordinate @@ -395,8 +408,23 @@ public final class OutlineShape implements Comparable<OutlineShape> { } /** - * Add a vertex to the last outline by passing a float array and specifying the - * offset and length in which. The attributes of the vertex are located. + * Add a 3D {@link Vertex} to the last open outline to the shape at {@code position}. + * + * @param position index within the last open outline, at which the vertex will be added + * @param x the x coordinate + * @param y the y coordniate + * @param z the z coordinate + * @param onCurve flag if this vertex is on the final curve or defines a curved region + * of the shape around this vertex. + */ + public final void addVertex(final int position, final float x, final float y, final float z, final boolean onCurve) { + addVertex(position, vertexFactory.create(x, y, z, onCurve)); + } + + /** + * Add a vertex to the last open outline to the shape's tail. + * + * The vertex is passed as a float array and its offset where its attributes are located. * The attributes should be continuous (stride = 0). * Attributes which value are not set (when length less than 3) * are set implicitly to zero. @@ -411,6 +439,24 @@ public final class OutlineShape implements Comparable<OutlineShape> { } /** + * Add a vertex to the last open outline to the shape at {@code position}. + * + * The vertex is passed as a float array and its offset where its attributes are located. + * The attributes should be continuous (stride = 0). + * Attributes which value are not set (when length less than 3) + * are set implicitly to zero. + * @param position index within the last open outline, at which the vertex will be added + * @param coordsBuffer the coordinate array where the vertex attributes are to be picked from + * @param offset the offset in the buffer to the x coordinate + * @param length the number of attributes to pick from the buffer (maximum 3) + * @param onCurve flag if this vertex is on the final curve or defines a curved region + * of the shape around this vertex. + */ + public final void addVertex(final int position, final float[] coordsBuffer, final int offset, final int length, final boolean onCurve) { + addVertex(position, vertexFactory.create(coordsBuffer, offset, length, onCurve)); + } + + /** * Closes the last outline in the shape. * <p> * Checks whether the last vertex equals to the first of the last outline. |