javax.vecmath
public class TexCoord3f extends Tuple3f implements Serializable
Constructor Summary | |
---|---|
TexCoord3f(float x, float y, float z)
Constructs and initializes a TexCoord3f from the specified xy coordinates. | |
TexCoord3f(float[] v)
Constructs and initializes a TexCoord3f from the specified array. | |
TexCoord3f(TexCoord3f v1)
Constructs and initializes a TexCoord3f from the specified TexCoord3f. | |
TexCoord3f()
Constructs and initializes a TexCoord3f to (0,0,0). |
Parameters: x the x coordinate y the y coordinate z the z coordinate
Parameters: p the array of length 3 containing xyz in order
Parameters: v1 the TexCoord3f containing the initialization x y z data