Compute triangulation before replicating

This commit is contained in:
Grant Sanderson 2022-12-27 19:12:36 -08:00
parent 795f6e2490
commit 8c44834554

View file

@ -124,6 +124,8 @@ class VMobject(Mobject):
return super().family_members_with_points()
def replicate(self, n: int) -> VGroup:
if self.has_fill():
self.get_triangulation()
return super().replicate(n)
def get_grid(self, *args, **kwargs) -> VGroup: