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

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

Uses of Tuple3b in javax.media.ding3d.vecmath
 

Subclasses of Tuple3b in javax.media.ding3d.vecmath
 class Color3b
          A three-byte color value represented by byte x, y, and z values.
 

Methods in javax.media.ding3d.vecmath with parameters of type Tuple3b
 boolean Tuple3b.equals(Tuple3b t1)
          Returns true if all of the data members of tuple t1 are equal to the corresponding data members in this tuple.
 void Tuple3b.get(Tuple3b t1)
          Places the value of the x,y,z components of this tuple into the tuple t1.
 void Tuple3b.set(Tuple3b 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 Tuple3b
Color3b(Tuple3b t1)
          Constructs and initializes a Color3b from the specified Tuple3b.
Tuple3b(Tuple3b t1)
          Constructs and initializes a Tuple3b from the specified Tuple3b.