Serializable
, Cloneable
public class TexCoord3f extends Tuple3f implements Serializable
Constructor | Description |
---|---|
TexCoord3f() |
Constructs and initializes a TexCoord3f to (0,0,0).
|
TexCoord3f(float[] v) |
Constructs and initializes a TexCoord3f from the array of length 3.
|
TexCoord3f(float x,
float y,
float z) |
Constructs and initializes a TexCoord3f from the specified xyz
coordinates.
|
TexCoord3f(TexCoord3f v1) |
Constructs and initializes a TexCoord3f from the specified TexCoord3f.
|
TexCoord3f(Tuple3d t1) |
Constructs and initializes a TexCoord3f from the specified Tuple3d.
|
TexCoord3f(Tuple3f t1) |
Constructs and initializes a TexCoord3f from the specified Tuple3f.
|
finalize, getClass, notify, notifyAll, wait, wait, wait
absolute, absolute, add, add, clamp, clamp, clampMax, clampMax, clampMin, clampMin, clone, epsilonEquals, equals, equals, get, get, getX, getY, getZ, hashCode, interpolate, interpolate, negate, negate, scale, scale, scaleAdd, scaleAdd, set, set, set, set, setX, setY, setZ, sub, sub, toString
public TexCoord3f(float x, float y, float z)
x
- the x coordinatey
- the y coordinatez
- the z coordinatepublic TexCoord3f(float[] v)
v
- the array of length 3 containing xyz in orderpublic TexCoord3f(TexCoord3f v1)
v1
- the TexCoord3f containing the initialization x y z datapublic TexCoord3f(Tuple3f t1)
t1
- the Tuple3f containing the initialization x y z datapublic TexCoord3f(Tuple3d t1)
t1
- the Tuple3d containing the initialization x y z datapublic TexCoord3f()