Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
//glBegin(GL_TRIANGLES);
//  glVertex3f(-0.5,-0.5,0.0);
//  glVertex3f(0.5,0.0,0.0);
//  glVertex3f(0.0,0.5,0.0);
//glEnd();




glutSolidSphere(200,10,10);

glutSwapBuffers();

the triangle shows up but not the sphere why? I just get a black window

share|improve this question

1 Answer

up vote 2 down vote accepted

Your radius is probably too big and you are culling back faces.

glutSolidSphere(1,10,10);

Glut is close-sourced and unmaintained. Consider something else, like SDL.

share|improve this answer
his view matrix is probably set up so he is close to the origin looking down the -ve z axis, so he is probably inside his sphere, and like you said, culling backfaces. – Stephan van den Heuvel Apr 29 '12 at 18:29
1  
There's FreeGLUT and OpenGLUT, both open source and maintained. Also I don't consider SDL being a ideal OpenGL framework. I'd go with GLFW. – datenwolf Apr 29 '12 at 18:34
Just switched to GLFW recently, really nice framework. – Stephan van den Heuvel Apr 30 '12 at 14:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.