2
votes
7answers
508 views
Delete all items from a c++ std::vector
I'm trying to delete everything from a std::vector by using the following code
vector.erase( vector.begin(), vector.end() );
but it doesn't work, help!
…
0
votes
1answer
123 views
moving a point in 3d space
I have a point at 0,0,0
I rotate the point 30 deg around the Y axis, then 30 deg around the X axis.
I then want to move the point 10 units forward.
I know how to work out the new X and Y po …
1
vote
2answers
187 views
Stuck building a game engine
I'm trying to build a (simple) game engine using c++, SDL and OpenGL but I can't seem to figure out the next step. This is what I have so far...
An engine object which controls the main gam …
0
votes
2answers
102 views
c++ OpenGL coordinate transformation
Hi
I just don't seem to be able to figure this out in my head. I'm trying to move an object in 3D space.
If I have a point at 5,15,5 and use opengl functions to change the model vie …
