In append_vectorized_mobject, append data as well as points

This commit is contained in:
Grant Sanderson 2023-01-26 23:43:21 -08:00
parent 79039bde61
commit b21e470e69

View file

@ -669,6 +669,8 @@ class VMobject(Mobject):
def append_vectorized_mobject(self, vmobject: VMobject):
self.add_subpath(vmobject.get_points())
n = vmobject.get_num_points()
self.data[-n:] = vmobject.data
return self
#