PageRenderTime 39ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/tags/rel-1-3-15/SWIG/Examples/GIFPlot/Python/simple/runme.py

#
Python | 27 lines | 12 code | 9 blank | 6 comment | 0 complexity | 404a6161ef2a998875c8d9390ce1e38f MD5 | raw file
Possible License(s): LGPL-2.1, Cube, GPL-3.0, 0BSD, GPL-2.0
  1. # Draw some simple shapes
  2. print "Drawing some basic shapes"
  3. import simple
  4. cmap = simple.new_ColorMap()
  5. f = simple.new_FrameBuffer(400,400)
  6. # Clear the picture
  7. simple.FrameBuffer_clear(f,simple.BLACK)
  8. # Make a red box
  9. simple.FrameBuffer_box(f,40,40,200,200,simple.RED)
  10. # Make a blue circle
  11. simple.FrameBuffer_circle(f,200,200,40,simple.BLUE)
  12. # Make green line
  13. simple.FrameBuffer_line(f,10,390,390,200, simple.GREEN)
  14. # Write an image out to disk
  15. simple.FrameBuffer_writeGIF(f,cmap,"image.gif")
  16. print "Wrote image.gif"
  17. simple.delete_FrameBuffer(f)
  18. simple.delete_ColorMap(cmap)