From 75979eb7d1bdec267d47e4151d09bac0bc6cd2e4 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Sat, 17 Dec 2022 19:48:27 -0800 Subject: [PATCH] Add NULL_POINTS constant --- manimlib/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manimlib/constants.py b/manimlib/constants.py index 3b9baa33..aaa2e50b 100644 --- a/manimlib/constants.py +++ b/manimlib/constants.py @@ -42,6 +42,8 @@ X_AXIS: Vect3 = np.array([1., 0., 0.]) Y_AXIS: Vect3 = np.array([0., 1., 0.]) Z_AXIS: Vect3 = np.array([0., 0., 1.]) +NULL_POINTS = np.array([[0., 0., 0.]]) + # Useful abbreviations for diagonals UL: Vect3 = UP + LEFT UR: Vect3 = UP + RIGHT