17 public ConstSFColor(
float red,
float green,
float blue) {
23 public void getValue(
float[] values) {
30 public float getRed() {
35 public float getGreen() {
40 public float getBlue() {
45 public String toString() {
47 return ""+red+
" "+green+
" "+blue;
50 public void __fromPerl(BufferedReader in)
throws IOException {
53 red = Float.parseFloat(in.readLine());
54 green = Float.parseFloat(in.readLine());
55 blue = Float.parseFloat(in.readLine());
58 public void __toPerl(PrintWriter out)
throws IOException {
59 out.print(red+
" "+green+
" "+blue);