disable outlines (we do not yet have those)
[PyX/mjg.git] / examples / graphs / lissajous.py
blob3e912686d3f7459e92ffcfbd7e88fceb3a9ab3b7
1 from math import pi
2 from pyx import *
4 g = graph.graphxy(width=8)
5 g.plot(graph.data.paramfunction("k", 0, 2*pi, "x, y = sin(2*k), cos(3*k)"))
6 g.writeEPSfile("lissajous")