5public class EventInSFVec3f
extends EventIn {
6 public EventInSFVec3f() { EventType =
FieldTypes.SFVEC3F; };
8 public void setValue(
float[] value)
throws IllegalArgumentException {
9 if (value.length < 3) {
10 throw new IllegalArgumentException();
12 Browser.newSendEvent (
this,
"" + value[0] +
" " + value[1] +
" " + value[2]);