Skip to content

WalkCowB

vtk-examples/Python/Rendering/WalkCowB

Other languages

See (Cxx)

Question

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

Code

WalkCowB.py

#!/usr/bin/env python

"""
WalkCow, VTK Textbook figure 3-33b.

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

import WalkCow


def main():
    file_name, figure = WalkCow.get_program_parameters()
    figure = 2
    WalkCow.walk_cow(file_name, figure)


if __name__ == '__main__':
    main()