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