From b6b7a9d4651ca6dc8244dd444c16257194a9750e Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 29 Nov 2017 19:05:21 +0000 Subject: [PATCH] helixish: fix augment augwith Signed-off-by: Ian Jackson --- helixish.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] -- 2.30.2