-rw-r--r-- | src/controller/clear_selection.sqc | 9 | ||||
-rw-r--r-- | src/controller/exp004processhits.c | 6 | ||||
-rw-r--r-- | src/controller/keyboard.c | 10 | ||||
-rw-r--r-- | src/controller/selection_from_db.sqc | 6 | ||||
-rw-r--r-- | src/model/density_legend_geometry.c | 20 | ||||
-rw-r--r-- | src/model/exp004state.h | 7 | ||||
-rw-r--r-- | src/model/protein_geometry.c | 2 | ||||
-rw-r--r-- | src/view/exp004geometry.c | 26 | ||||
-rw-r--r-- | src/view/exp004init.c | 3 |
9 files changed, 59 insertions, 30 deletions
diff --git a/src/model/protein_geometry.c b/src/model/protein_geometry.c index 001b578..dc71a4e 100644 --- a/src/model/protein_geometry.c +++ b/src/model/protein_geometry.c | |||
@@ -12,9 +12,11 @@ protein_geometry (void) | |||
12 | */ | 12 | */ |
13 | GLUquadricObj *obj = gluNewQuadric (); | 13 | GLUquadricObj *obj = gluNewQuadric (); |
14 | gluQuadricDrawStyle (obj, GLU_FILL); | 14 | gluQuadricDrawStyle (obj, GLU_FILL); |
15 | |||
15 | glNewList (S.list_offset + PROTEIN_GEOMETRY, GL_COMPILE); | 16 | glNewList (S.list_offset + PROTEIN_GEOMETRY, GL_COMPILE); |
16 | gluSphere (obj, 0.05, 20, 20); | 17 | gluSphere (obj, 0.05, 20, 20); |
17 | glEndList (); | 18 | glEndList (); |
19 | |||
18 | gluDeleteQuadric (obj); | 20 | gluDeleteQuadric (obj); |
19 | 21 | ||
20 | return; | 22 | return; |