chiark / gitweb /
bugfixes
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 4 Nov 2017 21:20:13 +0000 (21:20 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sat, 4 Nov 2017 21:20:13 +0000 (21:20 +0000)
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
check.py
moebius.py

index 3d74a7dcf8ed98c8508707bbced4ccb865f37e10..c03d19ca5fdfd0aa1f56af61620d85fa469d1341 100644 (file)
--- 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)
 
index ea762a958af0af9beb2529c42e394e6ec93dfc07..6f7d1a6150a070facf512e47f38baa14284cd277 100644 (file)
@@ -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):