We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d45ea28 commit b543cc0Copy full SHA for b543cc0
1 file changed
manimlib/mobject/types/point_cloud_mobject.py
@@ -14,6 +14,8 @@ class PMobject(Mobject):
14
def resize_points(self, size, resize_func=resize_array):
15
# TODO
16
for key in self.data:
17
+ if key == "bounding_box":
18
+ continue
19
if len(self.data[key]) != size:
20
self.data[key] = resize_array(self.data[key], size)
21
return self
0 commit comments