I\'m trying to display a point cloud with OpenGL.
OpenGL
I have followed some tutorials and I managed to display some geometric schema but when i try to display a
You should use the GL_MODELVIEW to position your cloud in the scene.
GL_MODELVIEW
In the draw method change glMatrixMode(GL_PROJECTION); to glMatrixMode(GL_MODELVIEW);
glMatrixMode(GL_PROJECTION);
glMatrixMode(GL_MODELVIEW);