Skip to content

HanoiInitial

vtk-examples/Python/Visualization/HanoiInitial

Other languages

See (Cxx)

Question

If you have a question about this example, please use the VTK Discourse Forum

Code

HanoiInitial.py

#!/usr/bin/env python

"""
HanoiInitial

Note: Make sure Hanoi.py is in the same directory as this program.
"""

import Hanoi


def main():
    Hanoi.gv.configuration = 1
    Hanoi.hanoi()


if __name__ == '__main__':
    main()