From: Ian Jackson Date: Wed, 29 Nov 2017 19:05:21 +0000 (+0000) Subject: helixish: fix augment augwith X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=b6b7a9d4651ca6dc8244dd444c16257194a9750e;p=moebius3.git helixish: fix augment augwith Signed-off-by: Ian Jackson --- diff --git a/helixish.py b/helixish.py index 19c592b..dde107d 100644 --- a/helixish.py +++ b/helixish.py @@ -14,7 +14,7 @@ from math import atan2, atan, sqrt import symbolic -def augment(v, augwith=1): return np.append(v, 1) +def augment(v, augwith=1): return np.append(v, augwith) def augment0(v): return augment(v, 0) def unaugment(v): return v[0:3]