diff options
Diffstat (limited to 'src/com/mbien/opencl/demos/julia3d/structs/Vec32.java')
-rw-r--r-- | src/com/mbien/opencl/demos/julia3d/structs/Vec32.java | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/src/com/mbien/opencl/demos/julia3d/structs/Vec32.java b/src/com/mbien/opencl/demos/julia3d/structs/Vec32.java deleted file mode 100644 index 3c0ee5d..0000000 --- a/src/com/mbien/opencl/demos/julia3d/structs/Vec32.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 Vec32 extends Vec { - - public static int size() { - return 12; - } - - Vec32(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); - } -} |