14 public ConstSFVec2f() { }
16 public ConstSFVec2f(
float x,
float y) {
21 public void getValue(
float[] values) {
37 public String toString() {
42 public void __fromPerl(BufferedReader in)
throws IOException {
45 x = Float.parseFloat(in.readLine());
46 y = Float.parseFloat(in.readLine());
49 public void __toPerl(PrintWriter out)
throws IOException {
50 out.print(x +
" " + y);