javax.vecmath

Class TexCoord3f

Implemented Interfaces:
Serializable

public class TexCoord3f
extends Tuple3f
implements Serializable

A 3 element texture coordinate that is represented by single precision floating point x,y,z coordinates.
Version:
specification 1.1, implementation $Revision: 1.7 $, $Date: 1999/10/05 07:03:50 $
Author:
Kenji hiranabe

Field Summary

Fields inherited from class javax.vecmath.Tuple3f

x, y, z

Constructor Summary

TexCoord3f()
Constructs and initializes a TexCoord3f to (0,0,0).
TexCoord3f(float x, float y, float z)
Constructs and initializes a TexCoord3f from the specified xy coordinates.
TexCoord3f(TexCoord3f v1)
Constructs and initializes a TexCoord3f from the specified TexCoord3f.
TexCoord3f(v[] )
Constructs and initializes a TexCoord3f from the specified array.

Method Summary

Methods inherited from class javax.vecmath.Tuple3f

absolute, absolute, add, add, clamp, clamp, clampMax, clampMax, clampMin, clampMin, epsilonEquals, equals, get, get, hashCode, interpolate, interpolate, negate, negate, scale, scale, scaleAdd, scaleAdd, set, set, set, set, sub, sub, toString

Constructor Details

TexCoord3f

public TexCoord3f()
Constructs and initializes a TexCoord3f to (0,0,0).

TexCoord3f

public TexCoord3f(float x,
                  float y,
                  float z)
Constructs and initializes a TexCoord3f from the specified xy coordinates.
Parameters:
x - the x coordinate
y - the y coordinate
z - the z coordinate

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

TexCoord3f

public TexCoord3f(v[] )
Constructs and initializes a TexCoord3f from the specified array.
Parameters: