Refactor many definitions out of topics and into folders within mobject

This commit is contained in:
Grant Sanderson
2018-03-31 18:05:02 -07:00
parent accef01040
commit fc3dc64805
42 changed files with 547 additions and 464 deletions

View File

@ -101,12 +101,3 @@ def center_of_mass(points):
points = [np.array(point).astype("float") for point in points]
return sum(points) / len(points)
# TODO: It feels like this should live elsewhere