Ok so i have my definitions:
VECTOR vertice[7];
vertice[5].x = 100; vertice[5].y = 0; vertice[5].z = -100;
//other vertex definitions..
And a line to set a variable to a value(somewhere else):
verticestoreval = vertice[5].x;
Then comes my problem.
For some reason
verticestoreval is always 0. It should be 100!
Can someone help?