#include "protein_geometry.h" #include "../../view/exp004state0.h" #include #define S exp004state0 void protein_geometry (void) { /* * Create a sphere and put it in a display list. */ GLUquadricObj *obj = gluNewQuadric (); gluQuadricDrawStyle (obj, GLU_FILL); glNewList (S.list_offset + PROTEIN_GEOMETRY, GL_COMPILE); gluSphere (obj, 0.05, 20, 20); glEndList (); gluDeleteQuadric (obj); return; }