3 package vrml.external.field;
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][3];
39 for (count1=0; count1<lines; count1++) {
40 for (count2=0; count2<rows; count2++) {
41 rval[count1][count2] = Float.valueOf(tokens.nextToken()).floatValue();
50 public float[] get1Value(
int index) {
51 float all[][] = getValue();