Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

README.md

File metadata and controls

33 lines (24 loc) · 1.19 KB

Tower of Hanoi

Tower of Hanoi is a mathematical puzzle where we have three rods and n disks. The objective of the puzzle is to move the entire stack to another rod, obeying the following simple rules:

  1. Only one disk can be moved at a time.
  2. Each move consists of taking the upper disk from one of the stacks and placing it on top of another stack i.e. a disk can only be moved if it is the uppermost disk on a stack.
  3. No disk may be placed on top of a smaller disk.

this project created using openGL, FreeGLUT, GLEW and C++


Setting up OPENGL with visual studio using NUGET

  • Run Visual Studio 2015 As Administrator
  • Open Package Manager
PM> Install-Package nupengl.core -Version 0.1.0.1
PM> Find-Package nupengl.core
  • Build And Run

Youtube

See an example of project on youtube

click on image Show On Youtube


References

  • in2gpu - setting up opengl with Visual Studio using NUGET
  • wikipedia - The Tower of Hanoi