Lines Matching refs:qobj
63 GLUquadricObj *qobj;
87 qobj = gluNewQuadric();
88 gluQuadricCallback(qobj, GLU_ERROR, errorCallback);
90 gluQuadricDrawStyle(qobj, GLU_FILL); /* smooth shaded */
91 gluQuadricNormals(qobj, GLU_SMOOTH);
93 gluSphere(qobj, 0.75, 15, 10);
96 gluQuadricDrawStyle(qobj, GLU_FILL); /* flat shaded */
97 gluQuadricNormals(qobj, GLU_FLAT);
99 gluCylinder(qobj, 0.5, 0.3, 1.0, 15, 5);
102 gluQuadricDrawStyle(qobj, GLU_LINE); /* all polygons wireframe */
103 gluQuadricNormals(qobj, GLU_NONE);
105 gluDisk(qobj, 0.25, 1.0, 20, 4);
108 gluQuadricDrawStyle(qobj, GLU_SILHOUETTE); /* boundary only */
109 gluQuadricNormals(qobj, GLU_NONE);
111 gluPartialDisk(qobj, 0.0, 1.0, 20, 4, 0.0, 225.0);
114 gluDeleteQuadric(qobj);