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