A Vertex exposing Vec3f vertex- and texture-coordinates.
More...
|
| | Vertex () |
| |
| | Vertex (final Vertex src) |
| | Copy ctor. More...
|
| |
| | Vertex (final int id, final boolean onCurve, final Vec3f texCoord) |
| |
| | Vertex (final int id, final boolean onCurve, final float texCoordX, final float texCoordY, final float texCoordZ) |
| |
| | Vertex (final Vec3f coord, final boolean onCurve) |
| |
| | Vertex (final Vec2f coord, final boolean onCurve) |
| |
| | Vertex (final float x, final float y, final boolean onCurve) |
| |
| | Vertex (final float[] coordsBuffer, final int offset, final int length, final boolean onCurve) |
| |
| | Vertex (final float x, final float y, final float z, final boolean onCurve) |
| |
| final void | setCoord (final Vec3f coord) |
| |
| void | setCoord (final Vec2f coord) |
| |
| final void | setCoord (final float x, final float y, final float z) |
| |
| final void | setCoord (final float x, final float y) |
| |
| int | getCoordCount () |
| |
| final Vec3f | getCoord () |
| |
| final void | setX (final float x) |
| |
| final void | setY (final float y) |
| |
| final void | setZ (final float z) |
| |
| final float | x () |
| |
| final float | y () |
| |
| final float | z () |
| |
| final boolean | isOnCurve () |
| |
| final void | setOnCurve (final boolean onCurve) |
| |
| final int | getId () |
| |
| final void | setId (final int id) |
| |
| boolean | equals (final Object obj) |
| |
| final int | hashCode () |
| |
| final Vec3f | getTexCoord () |
| |
| final void | setTexCoord (final Vec3f v) |
| |
| final void | setTexCoord (final float s, final float t, final float p) |
| |
| Vertex | copy () |
| |
| String | toString () |
| |
| float | z () |
| |
| Vec3f | getCoord () |
| |
| float | x () |
| |
| float | y () |
| |
| int | getCoordCount () |
| |
A Vertex exposing Vec3f vertex- and texture-coordinates.
Definition at line 37 of file Vertex.java.
◆ Vertex() [1/9]
| com.jogamp.graph.geom.Vertex.Vertex |
( |
| ) |
|
◆ Vertex() [2/9]
| com.jogamp.graph.geom.Vertex.Vertex |
( |
final Vertex |
src | ) |
|
◆ Vertex() [3/9]
| com.jogamp.graph.geom.Vertex.Vertex |
( |
final int |
id, |
|
|
final boolean |
onCurve, |
|
|
final Vec3f |
texCoord |
|
) |
| |
◆ Vertex() [4/9]
| com.jogamp.graph.geom.Vertex.Vertex |
( |
final int |
id, |
|
|
final boolean |
onCurve, |
|
|
final float |
texCoordX, |
|
|
final float |
texCoordY, |
|
|
final float |
texCoordZ |
|
) |
| |
◆ Vertex() [5/9]
| com.jogamp.graph.geom.Vertex.Vertex |
( |
final Vec3f |
coord, |
|
|
final boolean |
onCurve |
|
) |
| |
◆ Vertex() [6/9]
| com.jogamp.graph.geom.Vertex.Vertex |
( |
final Vec2f |
coord, |
|
|
final boolean |
onCurve |
|
) |
| |
◆ Vertex() [7/9]
| com.jogamp.graph.geom.Vertex.Vertex |
( |
final float |
x, |
|
|
final float |
y, |
|
|
final boolean |
onCurve |
|
) |
| |
◆ Vertex() [8/9]
| com.jogamp.graph.geom.Vertex.Vertex |
( |
final float[] |
coordsBuffer, |
|
|
final int |
offset, |
|
|
final int |
length, |
|
|
final boolean |
onCurve |
|
) |
| |
◆ Vertex() [9/9]
| com.jogamp.graph.geom.Vertex.Vertex |
( |
final float |
x, |
|
|
final float |
y, |
|
|
final float |
z, |
|
|
final boolean |
onCurve |
|
) |
| |
◆ copy()
| Vertex com.jogamp.graph.geom.Vertex.copy |
( |
| ) |
|
◆ equals()
| boolean com.jogamp.graph.geom.Vertex.equals |
( |
final Object |
obj | ) |
|
- Parameters
-
| obj | the Object to compare this Vertex with |
- Returns
- true if
obj is a Vertex and not null, on-curve flag is equal and has same vertex- and tex-coords.
Definition at line 167 of file Vertex.java.
◆ getCoord()
| final Vec3f com.jogamp.graph.geom.Vertex.getCoord |
( |
| ) |
|
◆ getCoordCount()
| int com.jogamp.graph.geom.Vertex.getCoordCount |
( |
| ) |
|
◆ getId()
| final int com.jogamp.graph.geom.Vertex.getId |
( |
| ) |
|
◆ getTexCoord()
| final Vec3f com.jogamp.graph.geom.Vertex.getTexCoord |
( |
| ) |
|
◆ hashCode()
| final int com.jogamp.graph.geom.Vertex.hashCode |
( |
| ) |
|
◆ isOnCurve()
| final boolean com.jogamp.graph.geom.Vertex.isOnCurve |
( |
| ) |
|
◆ setCoord() [1/4]
| final void com.jogamp.graph.geom.Vertex.setCoord |
( |
final float |
x, |
|
|
final float |
y |
|
) |
| |
◆ setCoord() [2/4]
| final void com.jogamp.graph.geom.Vertex.setCoord |
( |
final float |
x, |
|
|
final float |
y, |
|
|
final float |
z |
|
) |
| |
◆ setCoord() [3/4]
| void com.jogamp.graph.geom.Vertex.setCoord |
( |
final Vec2f |
coord | ) |
|
◆ setCoord() [4/4]
| final void com.jogamp.graph.geom.Vertex.setCoord |
( |
final Vec3f |
coord | ) |
|
◆ setId()
| final void com.jogamp.graph.geom.Vertex.setId |
( |
final int |
id | ) |
|
◆ setOnCurve()
| final void com.jogamp.graph.geom.Vertex.setOnCurve |
( |
final boolean |
onCurve | ) |
|
◆ setTexCoord() [1/2]
| final void com.jogamp.graph.geom.Vertex.setTexCoord |
( |
final float |
s, |
|
|
final float |
t, |
|
|
final float |
p |
|
) |
| |
◆ setTexCoord() [2/2]
| final void com.jogamp.graph.geom.Vertex.setTexCoord |
( |
final Vec3f |
v | ) |
|
◆ setX()
| final void com.jogamp.graph.geom.Vertex.setX |
( |
final float |
x | ) |
|
◆ setY()
| final void com.jogamp.graph.geom.Vertex.setY |
( |
final float |
y | ) |
|
◆ setZ()
| final void com.jogamp.graph.geom.Vertex.setZ |
( |
final float |
z | ) |
|
◆ toString()
| String com.jogamp.graph.geom.Vertex.toString |
( |
| ) |
|
◆ x()
| final float com.jogamp.graph.geom.Vertex.x |
( |
| ) |
|
◆ y()
| final float com.jogamp.graph.geom.Vertex.y |
( |
| ) |
|
◆ z()
| final float com.jogamp.graph.geom.Vertex.z |
( |
| ) |
|
The documentation for this class was generated from the following file: