HanoiIntermediate
VTKExamples/Python/Visualization/HanoiIntermediate
Other Languages
See (Cxx)
Code¶
HanoiIntermediate.py
#!/usr/bin/env python """ HanoiIntermediate Note: Make sure Hanoi.py is in the same directory as this program. """ import Hanoi def main(): Hanoi.gv.configuration = 2 Hanoi.hanoi() if __name__ == '__main__': main()