Jefft
12-14-2005, 05:00 AM
Given a set of (x,y) coordinates, what is the simplest way to generate an XY plot of the data using openGL/glut? Thanks.
mikael_aronsson
12-14-2005, 11:54 PM
There is no "simplest" way you have to do it all youself....
glBegin( GL_POINTS);
glVertex2?( first a and y coordinate);
glVertex2?( second point);
... and so on ...
glEnd();
Powered by vBulletin® Version 4.2.0 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.