From: Ian Jackson Date: Sat, 4 Nov 2017 21:20:13 +0000 (+0000) Subject: bugfixes X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=7515e695291fdf64a5abb42b55aef7000b493988;p=moebius3.git bugfixes Signed-off-by: Ian Jackson --- diff --git a/check.py b/check.py index 3d74a7d..c03d19c 100644 --- a/check.py +++ b/check.py @@ -8,9 +8,9 @@ import numpy as np from moebius import * -n_u = 10 +n_u = 20 -m = Moebius(10) +m = Moebius(n_u) ts = np.linspace(0, 1, 20) diff --git a/moebius.py b/moebius.py index ea762a9..6f7d1a6 100644 --- a/moebius.py +++ b/moebius.py @@ -26,7 +26,6 @@ class ParametricCircle: def radius(pc, theta): return pc._r0 * cos(theta) + pc._r1 * sin(theta) def point(pc, theta): - print('point %s %f' % (pc, theta), file=sys.stderr) return pc._c + pc.radius(theta) class Twirler(ParametricCircle):