i am using C# (visual studio 2008) to develop a slot machine, using OpenTK for using openGL in my project we have done the basic functionality but the we cant get a code to draw a cube that can rotate.

THe cude needs to rotate for some time, but i cant figure out how to do it.

we have tried this Cube

but this we want to draw it on a form

link|improve this question

1  
I think it should be really easy to draw a simple cube with OpenTK or any other wrapper when you alrady read some books. Where is you problem exactly? – Felix K. Feb 13 at 15:32
feedback

1 Answer

up vote 2 down vote accepted

OpenTK provides a Windows Forms control called GLControl. It has no built-in main loop, but getting continuous rendering to work on the control isn't that hard if you follow this GLControl tutorial.

Once you have continuous rendering working, you can move over the code to render a cube and it will be continuously rotating on a form.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.