build/include/grl/flatbuffer/grl/flatbuffer/EulerXYZd.java
Go to the documentation of this file.
1 // automatically generated, do not modify
2 
3 package grl.flatbuffer;
4 
5 import java.nio.*;
6 import java.lang.*;
7 import java.util.*;
8 import com.google.flatbuffers.*;
9 
10 @SuppressWarnings("unused")
11 public final class EulerXYZd extends Struct {
12  public EulerXYZd __init(int _i, ByteBuffer _bb) { bb_pos = _i; bb = _bb; return this; }
13 
14  public double rx() { return bb.getDouble(bb_pos + 0); }
15  public double ry() { return bb.getDouble(bb_pos + 8); }
16  public double rz() { return bb.getDouble(bb_pos + 16); }
17 
18  public static int createEulerXYZd(FlatBufferBuilder builder, double rx, double ry, double rz) {
19  builder.prep(8, 24);
20  builder.putDouble(rz);
21  builder.putDouble(ry);
22  builder.putDouble(rx);
23  return builder.offset();
24  }
25 };
26 
static int createEulerXYZd(FlatBufferBuilder builder, double rx, double ry, double rz)