From edd447527d2c53df2ec8f6e11b79e0dc150bca01 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 3 Feb 2020 09:11:51 -0800 Subject: [PATCH] Added small todo stub --- manimlib/utils/space_ops.py | 1 + 1 file changed, 1 insertion(+) diff --git a/manimlib/utils/space_ops.py b/manimlib/utils/space_ops.py index b0113f92..98fd9156 100644 --- a/manimlib/utils/space_ops.py +++ b/manimlib/utils/space_ops.py @@ -121,6 +121,7 @@ def z_to_vector(vector): return np.dot(rotation_about_z(theta), phi_down) +# TODO, this is redundant with below def angle_between(v1, v2): return np.arccos(np.dot( v1 / get_norm(v1),