# importing the module object3d import object3d if __name__ == "__main__": # Print an introduction print "Hello world small program" # Creating 2 cubes C=object3d.Cube() C2=object3d.Cube() # Calling the method MoveX C.MoveX(4.0,Direction=-1) C2.MoveX(3.0,Direction=1) # Printing information for each cube object3d.PrintCube(C) object3d.PrintCube(C2)