Previous

Section

<<<

Isosurface Generation using VTK

Next

Section

>>>

Creating the Application

 

 

4.5. Main Part of Program

 

Once all the classes are defined, add these lines of code at the bottom of the program:

 

root = Tkinter.Tk()

gui = GUI(root)

root.mainloop()

 

The first line creates the main “root” window.  The second line initializes GUI which creates all of the dialog windows and the VTK pipeline.  Finally, everything is set into motion with the last line.

 

 

<<< Previous

DialogIsosurfaces

 

Table of Contents

 

Next >>>

Running the Application & Conclusion