OpenGL C++ Classes

Started by
1 comment, last by Normski 22 years, 4 months ago
Hi I''m looking for some OpenGL wrapper classes, are there any good *free* classes available? Thanks
Advertisement
I wrote some.
They''re not perfect, and well, not much of a wrapper but they do take care of setting up an OpenGL window for you and allow you to worry about the important stuff, like the graphics part.

if you don''t like doing things like:

glPushMatrix();
glTranslatef(...);

glColor4f(...);

glBegin(...);
glVertex3f(...);
glEnd();
glPopMatrix();

then these classes aren''t for you.
but if you want something that''ll make window creation a lot easier then let me know and i''ll hook you up.

- Mike
"The important thing to remember when programming is: When you're 90% complete, there's still 50% more to go."
Basic wrapper classes are easy to create. Do it yourself, you''ll have a sense of accomplishment, and it is *free* (assuming you don''t charge yourself money! );

This topic is closed to new replies.

Advertisement