diff options
author | Michael Bien <[email protected]> | 2010-04-12 22:27:03 +0200 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-04-12 22:27:03 +0200 |
commit | 2c85c416d85205ab98b33e1a0b0daab32d4d81ff (patch) | |
tree | 4187ba06dec81da46495a300bb4f914e931f0c58 /src/com/mbien/opencl/demos/julia3d/structs/Vec64.java | |
parent | b51f2e1c254cdd74c9e43904c62694f64e6ae7e6 (diff) |
changes due to package renaming in jocl.
Diffstat (limited to 'src/com/mbien/opencl/demos/julia3d/structs/Vec64.java')
-rw-r--r-- | src/com/mbien/opencl/demos/julia3d/structs/Vec64.java | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/Vec64.java b/src/com/mbien/opencl/demos/julia3d/structs/Vec64.java deleted file mode 100644 index 5952021..0000000 --- a/src/com/mbien/opencl/demos/julia3d/structs/Vec64.java +++ /dev/null @@ -1,48 +0,0 @@ -/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */ - - -package com.mbien.opencl.demos.julia3d.structs; - -import java.nio.*; - -import com.jogamp.gluegen.runtime.*; - - -class Vec64 extends Vec { - - public static int size() { - return 12; - } - - Vec64(java.nio.ByteBuffer buf) { - super(buf); - } - - - public Vec setX(float val) { - accessor.setFloatAt(0, val); - return this; - } - - public float getX() { - return accessor.getFloatAt(0); - } - - public Vec setY(float val) { - accessor.setFloatAt(1, val); - return this; - } - - public float getY() { - return accessor.getFloatAt(1); - } - - public Vec setZ(float val) { - accessor.setFloatAt(2, val); - return this; - } - - public float getZ() { - return accessor.getFloatAt(2); - } -} |