.. | .. |
---|
997 | 997 | if (command.equals("fromto")) |
---|
998 | 998 | { |
---|
999 | 999 | cVector from = new cVector(Float.parseFloat(strs[index+2]), |
---|
1000 | | - Float.parseFloat(strs[index+3]), |
---|
1001 | | - Float.parseFloat(strs[index+4])); |
---|
| 1000 | + 0, // Float.parseFloat(strs[index+3]), |
---|
| 1001 | + Float.parseFloat(strs[index+3])); |
---|
1002 | 1002 | |
---|
1003 | | - cVector to = new cVector(Float.parseFloat(strs[index+5]), |
---|
1004 | | - Float.parseFloat(strs[index+6]), |
---|
1005 | | - Float.parseFloat(strs[index+7])); |
---|
| 1003 | + cVector to = new cVector(Float.parseFloat(strs[index+4]), |
---|
| 1004 | + 0, // Float.parseFloat(strs[index+6]), |
---|
| 1005 | + Float.parseFloat(strs[index+5])); |
---|
1006 | 1006 | |
---|
1007 | 1007 | ((Mocap) object).AddFromTo(from, to); |
---|
1008 | 1008 | return; |
---|