home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / share / k3d / scripts / script_recursion.py < prev    next >
Text File  |  2008-01-23  |  159b  |  13 lines

  1. #python
  2. import k3d
  3.  
  4. k3d.ui().message("Howdy,")
  5.  
  6. recursive_script = """#python
  7. import k3d
  8. k3d.ui().message("World!")
  9. """
  10.  
  11. k3d.execute_script(recursive_script)
  12.  
  13.