From 48e1035ac338be98c82c2cb617e6d4680f534542 Mon Sep 17 00:00:00 2001 From: Sei Lisa Date: Thu, 26 Jan 2017 03:01:34 +0100 Subject: [PATCH] Minor comment fix. --- lslopt/lslbasefuncs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lslopt/lslbasefuncs.py b/lslopt/lslbasefuncs.py index 2f6bc9d..dc26b1c 100644 --- a/lslopt/lslbasefuncs.py +++ b/lslopt/lslbasefuncs.py @@ -1650,7 +1650,7 @@ def llRotBetween(v1, v2): assert isvector(v1) assert isvector(v2) - aabb = math.sqrt(mul(v1, v1, f32=False) * mul(v2, v2, f32=False)) # product of the squared lengths of the arguments + aabb = math.sqrt(mul(v1, v1, f32=False) * mul(v2, v2, f32=False)) # product of the lengths of the arguments if aabb == 0.: return ZERO_ROTATION # the arguments are too small, return zero rotation ab = mul(v1, v2, f32=False) / aabb # normalized dotproduct of the arguments (cosine)