Uses of Class
javax.media.ding3d.vecmath.Tuple4b

Packages that use Tuple4b
javax.media.ding3d.vecmath Provides 3D vector mathematics classes. 
 

Uses of Tuple4b in javax.media.ding3d.vecmath
 

Subclasses of Tuple4b in javax.media.ding3d.vecmath
 class Color4b
          A four-byte color value represented by byte x, y, z, and w values.
 

Methods in javax.media.ding3d.vecmath with parameters of type Tuple4b
 boolean Tuple4b.equals(Tuple4b t1)
          Returns true if all of the data members of tuple t1 are equal to the corresponding data members in this tuple.
 void Tuple4b.get(Tuple4b t1)
          Places the value of the x,y,z,w components of this Tuple4b into the tuple t1.
 void Tuple4b.set(Tuple4b t1)
          Sets the value of the data members of this tuple to the value of the argument tuple t1.
 

Constructors in javax.media.ding3d.vecmath with parameters of type Tuple4b
Color4b(Tuple4b t1)
          Constructs and initializes a Color4b from the specified Tuple4b.
Tuple4b(Tuple4b t1)
          Constructs and initializes a Tuple4b from the specified Tuple4b.