All Packages Class Hierarchy This Package Previous Next Index
Class javax.vecmath.Color3b
java.lang.Object
|
+----javax.vecmath.Tuple3b
|
+----javax.vecmath.Color3b
- public class Color3b
- extends javax.vecmath.Tuple3b
- implements java.io.Serializable
A three byte vector used for colors.
- Version:
- specification 1.1, implementation $Revision: 1.7 $, $Date: 1999/03/04 09:16:33 $
- Author:
- Kenji hiranabe
-
Color3b()
- Constructs and initializes a Color3b to (0,0,0).
-
Color3b(byte, byte, byte)
- Constructs and initializes a Color3b from the specified three values.
-
Color3b(byte[])
- Constructs and initializes a Color3b from input array of length 3.
-
Color3b(Color3b)
- Constructs and initializes a Color3b from the specified Color3b.
-
Color3b(Tuple3b)
- Constructs and initializes a Color3b from the specified Tuple3b.
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
Color3b
public Color3b(byte c[])
- Constructs and initializes a Color3b from input array of length 3.
- Parameters:
- t - the array of length 3 containing c1 c2 c3 in order
Color3b
public Color3b(javax.vecmath.Color3b c1)
- Constructs and initializes a Color3b from the specified Color3b.
- Parameters:
- c - the Color3b containing the initialization x y z data
Color3b
public Color3b(javax.vecmath.Tuple3b t1)
- Constructs and initializes a Color3b from the specified Tuple3b.
- Parameters:
- t1 - the Tuple3b containing the initialization x y z data
Color3b
public Color3b()
- Constructs and initializes a Color3b to (0,0,0).
All Packages Class Hierarchy This Package Previous Next Index