summaryrefslogtreecommitdiffstats
path: root/src/com/jogamp/opencl/demos/julia3d/structs/Camera32.java
blob: 1811583ac63731d07777ffa9e2cf9d7b43621541 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* !---- DO NOT EDIT: This file autogenerated by com/sun/gluegen/JavaEmitter.java on Tue Feb 09 18:20:26 CET 2010 ----! */


package com.jogamp.opencl.demos.julia3d.structs;


class Camera32 extends Camera {

  public static int size() {
    return 76;
  }

  Camera32(java.nio.ByteBuffer buf) {
    super(buf);
  }


  public Vec getOrig() {
    return Vec.create(accessor.slice(0, 12));
  }

  public Vec getTarget() {
    return Vec.create(accessor.slice(16, 12));
  }

  public Vec getDir() {
    return Vec.create(accessor.slice(32, 12));
  }

  public Vec getX() {
    return Vec.create(accessor.slice(48, 12));
  }

  public Vec getY() {
    return Vec.create(accessor.slice(64, 12));
  }
}