From 7515e695291fdf64a5abb42b55aef7000b493988 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 4 Nov 2017 21:20:13 +0000 Subject: [PATCH] bugfixes Signed-off-by: Ian Jackson --- check.py | 4 ++-- moebius.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) 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): -- 2.30.2