Add NULL_POINTS constant

This commit is contained in:
Grant Sanderson 2022-12-17 19:48:27 -08:00
parent 365bb12dce
commit 75979eb7d1

View file

@ -42,6 +42,8 @@ X_AXIS: Vect3 = np.array([1., 0., 0.])
Y_AXIS: Vect3 = np.array([0., 1., 0.]) Y_AXIS: Vect3 = np.array([0., 1., 0.])
Z_AXIS: Vect3 = np.array([0., 0., 1.]) Z_AXIS: Vect3 = np.array([0., 0., 1.])
NULL_POINTS = np.array([[0., 0., 0.]])
# Useful abbreviations for diagonals # Useful abbreviations for diagonals
UL: Vect3 = UP + LEFT UL: Vect3 = UP + LEFT
UR: Vect3 = UP + RIGHT UR: Vect3 = UP + RIGHT