javax.vecmath
public class Color3b extends Tuple3b implements Serializable
Constructor Summary | |
---|---|
Color3b(byte c1, byte c2, byte c3)
Constructs and initializes a Color3b from the specified three values. | |
Color3b(byte[] c)
Constructs and initializes a Color3b from input array of length 3. | |
Color3b(Color3b c1)
Constructs and initializes a Color3b from the specified Color3b. | |
Color3b(Tuple3b t1)
Constructs and initializes a Color3b from the specified Tuple3b. | |
Color3b()
Constructs and initializes a Color3b to (0,0,0). | |
Color3b(Color color)
Constructs color from awt.Color.
|
Method Summary | |
---|---|
Color | get()
Gets awt.Color.
|
void | set(Color color)
Sets color from awt.Color. |
Parameters: c1 the first value c2 the second value c3 the third value
Parameters: t the array of length 3 containing c1 c2 c3 in order
Parameters: c the Color3b containing the initialization x y z data
Parameters: t1 the Tuple3b containing the initialization x y z data
Parameters: color awt color
Returns: color awt color
Parameters: color awt color