DEBSOURCES
Skip Quicknav
sources / pycode-browser / 1%3A1.02%2Bgit20181006-3 / Code / Maths / circpar.py
123456789
#Example circpar.py from pylab import * a = 10.0 th = linspace(0, 2*pi, 200) x = a * cos(th) y = a * sin(th) plot(x,y) show()