All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class javax.vecmath.TexCoord2f

java.lang.Object
   |
   +----javax.vecmath.Tuple2f
           |
           +----javax.vecmath.TexCoord2f

public class TexCoord2f
extends javax.vecmath.Tuple2f
implements java.io.Serializable
A 2 element texture coordinate that is represented by single precision floating point x,y coordinates.

Version:
specification 1.1, implementation $Revision: 1.7 $, $Date: 1999/03/04 09:16:33 $
Author:
Kenji hiranabe

Constructor Index

 o TexCoord2f()
Constructs and initializes a TexCoord2f to (0,0).
 o TexCoord2f(float, float)
Constructs and initializes a TexCoord2f from the specified xy coordinates.
 o TexCoord2f(float[])
Constructs and initializes a TexCoord2f from the specified array.
 o TexCoord2f(TexCoord2f)
Constructs and initializes a TexCoord2f from the specified TexCoord2f.
 o TexCoord2f(Tuple2f)
Constructs and initializes a TexCoord2f from the specified Tuple2f.

Constructors

 o TexCoord2f
 public TexCoord2f(float x,
                   float y)
Constructs and initializes a TexCoord2f from the specified xy coordinates.

Parameters:
x - the x coordinate
y - the y coordinate
 o TexCoord2f
 public TexCoord2f(float v[])
Constructs and initializes a TexCoord2f from the specified array.

Parameters:
p - the array of length 2 containing xy in order
 o TexCoord2f
 public TexCoord2f(javax.vecmath.TexCoord2f v1)
Constructs and initializes a TexCoord2f from the specified TexCoord2f.

Parameters:
v1 - the TexCoord2f containing the initialization x y data
 o TexCoord2f
 public TexCoord2f(javax.vecmath.Tuple2f t1)
Constructs and initializes a TexCoord2f from the specified Tuple2f.

Parameters:
t1 - the Tuple2f containing the initialization x y data
 o TexCoord2f
 public TexCoord2f()
Constructs and initializes a TexCoord2f to (0,0).


All Packages  Class Hierarchy  This Package  Previous  Next  Index