All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.vecmath.Color3b

java.lang.Object
   |
   +----java.vecmath.Tuple3b
           |
           +----java.vecmath.Color3b

public class Color3b
extends Tuple3b
A three byte vector used for colors.


Constructor Index

 o Color3b()
Constructs and initializes a Color3b to (0,0,0).
 o Color3b(byte, byte, byte)
Constructs and initializes a Color3b from the specified three values.
 o Color3b(byte[])
Constructs and initializes a Color3b from input array of length 3.
 o Color3b(Color3b)
Constructs and initializes a Color3b from the specified Color3b.

Constructors

 o Color3b
 public Color3b(byte c1,
                byte c2,
                byte c3)
Constructs and initializes a Color3b from the specified three values.

Parameters:
c1 - the first value
c2 - the second value
c3 - the third value
 o Color3b
 public Color3b(byte c[])
Constructs and initializes a Color3b from input array of length 3.

Parameters:
c - the array of length 3 containing c1 c2 c3 in order
 o Color3b
 public Color3b(Color3b c1)
Constructs and initializes a Color3b from the specified Color3b.

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


All Packages  Class Hierarchy  This Package  Previous  Next  Index