Sophie

Sophie

distrib > Mandriva > 2010.2 > i586 > media > contrib-backports > by-pkgid > 480400831775432e21887c0bb26fd401 > files > 899

python-enthought-enable-3.4.0-1mdv2010.2.i586.rpm

import numpy

from enthought.kiva import agg

line_color = (0.0,0.0,0.0)
fill_color = numpy.array((200.,184.,106.))/255.
gc = agg.GraphicsContextArray((1600,1600))
gc.rect(30,30,1200,300)
gc.set_fill_color(fill_color)
gc.fill_path()

gc.set_fill_color((0.,0.,0.,.4))
gc.translate_ctm(50,50)
gc.move_to(10,10)
gc.line_to(400,400)

gc.move_to(410,10)
gc.line_to(410,400)
gc.line_to(710,400)
gc.line_to(550,300)
gc.line_to(710,200)
gc.line_to(500,10)
gc.close_path()

gc.rect(750,10,390,390)
gc.draw_path()

gc.save("sub_path1.bmp")

line_color = (0.0,0.0,0.0)
fill_color = numpy.array((200.,184.,106.))/255.
gc = agg.GraphicsContextArray((1600,1600))
gc.rect(30,30,1200,300)
gc.set_fill_color(fill_color)
gc.fill_path()

gc.set_fill_color((0.,0.,0.,.4))
gc.translate_ctm(50,50)
gc.move_to(10,10)
gc.line_to(400,400)

gc.move_to(410,10)
gc.line_to(410,400)
gc.line_to(710,400)
gc.curve_to(550,300,710,200,500,10)
gc.close_path()

gc.rect(650,10,390,390)
gc.fill_path()

gc.save("sub_path2.bmp")