FACT++  1.0
void Q3DCameraWidget::drawCameraBody ( )
protected

Definition at line 200 of file Q3DCameraWidget.cc.

References color().

201  {
202  glPolygonMode( GL_FRONT_AND_BACK, GL_LINE );
203 
204  GLfloat color[4] = {0.8f, 1.f, 1.f, 1.f};
205  glMaterialfv(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE, color);
206  glMaterialf(GL_FRONT_AND_BACK, GL_SHININESS, 1.0f);
207  gluCylinder( gluNewQuadric(),
208  0.62,
209  0.62,
210  1.83,
211  30,
212  2 );
213  glPolygonMode( GL_FRONT_AND_BACK, GL_FILL );
214 
215 
216 
217  }
function color(col)
Definition: color.js:31

+ Here is the call graph for this function: