1 package vrml.external.field;
10 public void setValue(
float[] value)
throws IllegalArgumentException {
15 throw new IllegalArgumentException();
19 for (count = 0; count < value.length; count++) {
20 val = val +
" " + value[count] +
",";
23 Browser.newSendEvent(
this, val);
28 public void set1Value(
int index,
float value)
throws IllegalArgumentException {
30 throw new IllegalArgumentException();
32 Browser.newSendEvent(
this,
" ONEVAL " + index +
" " + value);