Author Topic: freeglut CubeDemo3  (Read 4090 times)

0 Members and 2 Guests are viewing this topic.

Charles Pegge

  • Guest
Re: freeglut CubeDemo3
« Reply #15 on: June 12, 2012, 05:29:42 PM »

Another FreeGlut Demo: using compiled drawing lists.

It will work in the /projects/FreeGlut folder

Code: OxygenBasic
  1.  
  2.     glNewList DrawingList 1, GL_COMPILE
  3.     '
  4.    GlutSolidSphere  1,36,16
  5.     '
  6.    glEndlist
  7.  
  8.  

Charles

kryton9

  • Guest
Re: freeglut CubeDemo3
« Reply #16 on: June 12, 2012, 07:00:36 PM »
Thanks Charles, another cool demo!  It is as cute as the Android green droid in a simpler way! My high school colors were blue and red, any reason why you like those colors?

Charles Pegge

  • Guest
Re: freeglut CubeDemo3
« Reply #17 on: June 13, 2012, 10:40:21 AM »

I chose two contrasting colors Kent. Unlike school colors,  I think they need to be toned down for prolonged use though.

Two further demos: these use bothe the mouse and keyboard to move the object.
As before, they go in the projects/FreeGlut folder

Charles


kryton9

  • Guest
Re: freeglut CubeDemo3
« Reply #18 on: June 13, 2012, 04:55:10 PM »
Nice, works very smoothly with the mouse!