So I am incredibly new to OpenGL and have to learn for school, however, our teacher just hands out assignments, without any background on opengl whatsoever. So I'm stuck.
I'm working on...
Type: Posts; User: TalysShade
So I am incredibly new to OpenGL and have to learn for school, however, our teacher just hands out assignments, without any background on opengl whatsoever. So I'm stuck.
I'm working on...
I'm starting to feel stupid for not being able to solve this problem, but I can't even find any guide or tutorial on google from someone trying to do the same thing, even though it seems very simple....
Hmm.. alright thank you. I was hoping there was a way to actually connect the dots, but I will have to try this. I have to continue using glVertex2i so I will try out your suggestion tomorrow. The...
That would be the following:
glMatrixMode (GL_PROJECTION);
glLoadIdentity ();
gluOrtho2D (XMIN,
XMIN + (XMAX-XMIN) * ((GLdouble) w)/((GLdouble) WINSIZE_X),
...
Hello everyone,
I've just begun learning openGL and one of the first steps is to draw a circle using the bresenham/midpoint algorithm. The code actual works (so proud of myself! ... ) but,...