package vrml.fields;

import vrml.*;
import vrml.exceptions.*;
import vrml.fields.constfields.ConstMFRotation;

public class MFRotation extends Field {
  public native float[][] getValue();
  public native void setValue(float[][] value)
    throws ArrayIndexOutOfBoundsException;
  public native void setValue(ConstMFRotation value);
  public native void set1Value(int index, float[] value);
}
