Top "Glu" questions

The OpenGL Utility Library

Error with GLUT compile in ubuntu

I try to compile some "hello world" glut application: #include <stdlib.h> #include <GL/gl.h> #…

c++ opengl glut glu
How to draw connected strip lines in OpenGL like this

I want to draw a series of connected lines (GL_LINE_STRIP) in following way. I had tried to code …

c++ c opengl glut glu
OpenGL: GL_QUADS does not draw square

I'm trying to draw a square on the screen but it clearly draws a rectangle. This is my render code: …

c++ opengl sdl glu
OpenGL - Explain glutInitDisplayMode()

Explain in detail what functionality is provided by the settings in the line: glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGBA | GLUT_DEPTH); …

c++ opengl 3d glut glu
Can I run GLU (OpenGL) on a headless server?

we're trying to use GLU's tesselation functions on a headless, GNU/linux server. We'd like to use PyOpenGL for that, …

python opengl graphics triangulation glu
give positions for sphere drawn using gluSphere()

Here's my code .. But my sphere always stays at the origin... my glTranslatef() doesn't change the position of the sphere... …

c opengl glu
Qt Creator - LNK1104: cannot open file "glu32.lib"

I am using Qt and Qt Creator and I want to run a test file to see if my Installation …

windows qt opengl qmake glu
cmake doesn't link libGLU using QtOpenGL

I'm trying to compile a software that uses QtOpenGL, but I got a link error because -lGLU is not present. …

opengl qt4 cmake glu
How can I increase distance (zfar/gluPerspective) where openGL stops drawing objects?

I am learning OpenGL and having a problem with gluPerspective. Here is the code I use in Init() // Calculate The …

opengl glut glu
GLU.gluLookAt in Java OpenGL bindings seems to do nothing

I've already checked the other questions on this topic and their solutions haven't worked for me. I'm at a bit …

java opengl jogl glu