Just been looking over Dynamic Memory Allocation, using new.
Heres a snippet of the code i've got.
vertices = new float *[v];
for (i = 0; i < v; ++i)
{
vertices[i] = new float[3];
}
what i was thinking was could i just do
vertices = new float[v][3];
instead of the for loop, are there any benefits for using either or are they exactly the same.
thanks in advance :)
finally one other minor question, currently all of my classes are in the same .cpp file as my main function, is there a way to put the classes into seperate .cpp files rather like java. i tried this initially but got errors about my code, and after moving them into the same file the program ran perfectly.
- Matt