np.linalg.norm -> get_norm

This commit is contained in:
Grant Sanderson
2018-08-15 17:30:24 -07:00
parent f926611d34
commit 365093c0b5
82 changed files with 310 additions and 281 deletions

View File

@ -547,7 +547,7 @@ class SixChooseThreeInOtherContext(Scene):
self.add(dots)
self.dots = dots
self.dot_to_dot_distance = np.linalg.norm(
self.dot_to_dot_distance = get_norm(
dots[1].get_center() - dots[0].get_center()
)