All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.vecmath.TexCoord3f

java.lang.Object
   |
   +----java.vecmath.Tuple3f
           |
           +----java.vecmath.TexCoord3f

public class TexCoord3f
extends Tuple3f
A 3 element texture coordinate that is represented by single precision floating point x,y,z coordinates.


Constructor Index

 o TexCoord3f()
Constructs and initializes a TexCoord3f to (0,0,0).
 o TexCoord3f(float, float, float)
Constructs and initializes a TexCoord3f from the specified xyz coordinates.
 o TexCoord3f(float[])
Constructs and initializes a TexCoord3f from the array of length 3.
 o TexCoord3f(TexCoord3f)
Constructs and initializes a TexCoord3f from the specified TexCoord3f.

Constructors

 o TexCoord3f
 public TexCoord3f(float x,
                   float y,
                   float z)
Constructs and initializes a TexCoord3f from the specified xyz coordinates.

Parameters:
x - the x coordinate
y - the y coordinate
z - the z coordinate
 o TexCoord3f
 public TexCoord3f(float v[])
Constructs and initializes a TexCoord3f from the array of length 3.

Parameters:
v - the array of length 3 containing xyz in order
 o TexCoord3f
 public TexCoord3f(TexCoord3f v1)
Constructs and initializes a TexCoord3f from the specified TexCoord3f.

Parameters:
v1 - the TexCoord3f containing the initialization x y z data
 o TexCoord3f
 public TexCoord3f()
Constructs and initializes a TexCoord3f to (0,0,0).


All Packages  Class Hierarchy  This Package  Previous  Next  Index