author | Don Pellegrino <don@coffee.donpellegrino.com> | 2009-09-03 01:44:40 (GMT) |
---|---|---|
committer | Don Pellegrino <don@coffee.donpellegrino.com> | 2009-09-03 01:44:40 (GMT) |
commit | 2677e972fbad2d4d55b2844c6ad4d4fbdce57cae (patch) (side-by-side diff) | |
tree | 6e5aa1ed3d87b26084a9e9230f5337ffec15cce9 | |
parent | 354984cc039585343751501b6467c3e331809508 (diff) | |
download | exp005-2677e972fbad2d4d55b2844c6ad4d4fbdce57cae.zip exp005-2677e972fbad2d4d55b2844c6ad4d4fbdce57cae.tar.gz exp005-2677e972fbad2d4d55b2844c6ad4d4fbdce57cae.tar.bz2 |
Replaced sphere with disc since we are only working in 2D at the moment.
-rw-r--r-- | src/model/geometry/protein_geometry.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/geometry/protein_geometry.c b/src/model/geometry/protein_geometry.c index f2b3e4f..bb00ac7 100644 --- a/src/model/geometry/protein_geometry.c +++ b/src/model/geometry/protein_geometry.c @@ -14,7 +14,7 @@ protein_geometry (void) gluQuadricDrawStyle (obj, GLU_FILL); glNewList (S.list_offset + PROTEIN_GEOMETRY, GL_COMPILE); - gluSphere (obj, 0.05, 20, 20); + gluDisk (obj, 0.0, 0.05, 20, 20); glEndList (); gluDeleteQuadric (obj); |