What better way to store points in a vector and
then grab a determinda position:
ADD VALUES:
maxvector[].add(2761.11 1898.11 0.0)
maxvector[].add (3761.12 1538.43 0.0)
maxvector[].add(4761.15 2598.58 0.0)
RESULT:
maxvector[]
0 = (2761.11 1898.11 0.0)
1 = (3761.12 1538.43 0.0)
2 = (4761.15 2598.58 0.0)
And then a way to get this value at a given position
Ex:
(print maxvector[1])
RESULT:
(3761.12 1538.43 0.0)