WalkCowB
VTKExamples/Python/Rendering/WalkCowB
Other Languages
See (Cxx)
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()