diff options
author | Sven Göthel <sgothel@jausoft.com> | 2024-02-01 13:46:27 +0100 |
---|---|---|
committer | Sven Göthel <sgothel@jausoft.com> | 2024-02-01 13:46:27 +0100 |
commit | ca846bc67e6a074a182e97f29b3c34b90a12cac3 (patch) | |
tree | eddc1615a3947634c17ed8af071f76f51ccf06be /src/jogl/classes/com/jogamp/math/Vec3f.java | |
parent | 9fe460aecf8509c8305416bb9d77aadf6165c677 (diff) |
Vec[234][ifd]: Add toArray(..) method
Diffstat (limited to 'src/jogl/classes/com/jogamp/math/Vec3f.java')
-rw-r--r-- | src/jogl/classes/com/jogamp/math/Vec3f.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/jogl/classes/com/jogamp/math/Vec3f.java b/src/jogl/classes/com/jogamp/math/Vec3f.java index 2dc399ef1..3459c2ad1 100644 --- a/src/jogl/classes/com/jogamp/math/Vec3f.java +++ b/src/jogl/classes/com/jogamp/math/Vec3f.java @@ -115,6 +115,14 @@ public final class Vec3f { return this; } + /** xyz[0..2] = this.{x, y, z}, returns this. */ + public Vec3f toArray(final float[/*3*/] xyz) { + xyz[0] = this.x; + xyz[1] = this.y; + xyz[2] = this.z; + return this; + } + /** Sets the ith component, 0 <= i < 3 */ public void set(final int i, final float val) { switch (i) { |