8public class EventOutMFVec2f
extends EventOutMField {
9 public EventOutMFVec2f() { EventType =
FieldTypes.MFVEC2F; }
11 public float[][] getValue() {
18 StringTokenizer tokens;
21 if (RLreturn ==
null) {
22 rep = Browser.SendEventOut (nodeptr, offset, datasize, datatype, command);
30 tokens =
new StringTokenizer (rep);
33 lines = Integer.valueOf(tokens.nextToken()).intValue();
36 rval =
new float [lines][2];
39 for (count1=0; count1<lines; count1++) {
40 for (count2=0; count2<rows; count2++) {
41 rval[count1][count2] = Float.valueOf(tokens.nextToken()).floatValue();
51 public float[] get1Value(
int index) {
52 float all[][] = getValue();