Comment rendre des primitives sous forme d'images filaires en OpenGL ?
Réponses
Trop de publicités?
Utilisateur non enregistré
Points
0
John Millikin
Points
86775
De http://cone3d.gamedev.net/cgi-bin/index.pl?page=tutorials/ogladv/tut5
// Turn on wireframe mode
glPolygonMode(GL_FRONT, GL_LINE);
glPolygonMode(GL_BACK, GL_LINE);
// Draw the box
DrawBox();
// Turn off wireframe mode
glPolygonMode(GL_FRONT, GL_FILL);
glPolygonMode(GL_BACK, GL_FILL);
Hochester
Points
21
maria
Points
93