Update Mobject.has_points

This commit is contained in:
Grant Sanderson 2022-12-27 22:18:41 -08:00
parent 816f6eb297
commit e73ae78987

View file

@ -250,7 +250,7 @@ class Mobject(object):
return self.get_points()
def has_points(self) -> bool:
return self.get_num_points() > 0
return self.data["points"].size > 0
def get_bounding_box(self) -> Vect3Array:
if self.needs_new_bounding_box: