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),