3 package grl.flatbuffer;
     8 import com.google.flatbuffers.*;
    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; }
    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); }
    18   public static int createEulerXYZd(FlatBufferBuilder builder, 
double rx, 
double ry, 
double rz) {
    20     builder.putDouble(rz);
    21     builder.putDouble(ry);
    22     builder.putDouble(rx);
    23     return builder.offset();
 
EulerXYZd __init(int _i, ByteBuffer _bb)
 
static int createEulerXYZd(FlatBufferBuilder builder, double rx, double ry, double rz)