~ubuntu-branches/ubuntu/trusty/pyx/trusty

« back to all changes in this revision

Viewing changes to examples/misc/pattern.py

  • Committer: Bazaar Package Importer
  • Author(s): Graham Wilson
  • Date: 2004-12-25 06:42:57 UTC
  • Revision ID: james.westby@ubuntu.com-20041225064257-31469ij5uysqq302
Tags: upstream-0.7.1
ImportĀ upstreamĀ versionĀ 0.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from pyx import *
 
2
 
 
3
p = canvas.pattern()
 
4
p.text(0, 0, r"\PyX")
 
5
 
 
6
c = canvas.canvas()
 
7
c.text(0, 0, r"\PyX", [trafo.scale(25), p])
 
8
c.writeEPSfile("pattern")
 
9