23 public void getValue(
float[] values) {
45 public String toString() {
47 return ""+x+
" "+y+
" "+z;
50 public void __fromPerl(BufferedReader in)
throws IOException {
53 x = Float.parseFloat(in.readLine());
54 y = Float.parseFloat(in.readLine());
55 z = Float.parseFloat(in.readLine());
58 public void __toPerl(PrintWriter out)
throws IOException {
59 out.print(x +
" " + y +
" " + z);