summaryrefslogtreecommitdiff
path: root/test/cube.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2002-06-26 02:01:33 +0000
committerMatthias Melcher <fltk@matthiasm.com>2002-06-26 02:01:33 +0000
commit2967d781d7073a6c19e1c00e251751b473eb7e2d (patch)
treef84337504c35770a881eba58f7dec5e2575d9ec6 /test/cube.cxx
parent690f5c5d07c21d291f04dc9297c0a0658f6f44a1 (diff)
Added gl_font calls to Cube demo for gl_font implementation on MacOS (later).
Renamed variable 'todo' in preferences.fl to 'tasks' to make global search for Todo items easier. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2319 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/cube.cxx')
-rw-r--r--test/cube.cxx11
1 files changed, 8 insertions, 3 deletions
diff --git a/test/cube.cxx b/test/cube.cxx
index 35ff8cafe..a02587676 100644
--- a/test/cube.cxx
+++ b/test/cube.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: cube.cxx,v 1.4.2.5.2.1 2002/01/01 15:11:32 easysw Exp $"
+// "$Id: cube.cxx,v 1.4.2.5.2.2 2002/06/26 02:01:33 matthiaswm Exp $"
//
// Another forms test program for the Fast Light Tool Kit (FLTK).
//
@@ -104,6 +104,7 @@ void cube_box::draw() {
glEnable(GL_DEPTH_TEST);
glFrustum(-1,1,-1,1,2,10000);
glTranslatef(0,0,-10);
+ gl_font(FL_HELVETICA_BOLD, 16 );
}
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glPushMatrix();
@@ -113,7 +114,11 @@ void cube_box::draw() {
glTranslatef(-1.0, 1.2f, -1.5);
glScalef(float(size),float(size),float(size));
drawcube(wire);
- glPopMatrix();
+ glPopMatrix();
+ gl_color(FL_GRAY);
+ glDisable(GL_DEPTH_TEST);
+ gl_draw(wire ? "Cube: wire" : "Cube: flat", -4.5f, -4.5f );
+ glEnable(GL_DEPTH_TEST);
}
#endif
@@ -179,5 +184,5 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: cube.cxx,v 1.4.2.5.2.1 2002/01/01 15:11:32 easysw Exp $".
+// End of "$Id: cube.cxx,v 1.4.2.5.2.2 2002/06/26 02:01:33 matthiaswm Exp $".
//