remove point at the end

This commit is contained in:
Anthony Debucquoy 2025-03-25 21:00:31 +01:00
parent e74a341468
commit 1fc5352b0f
Signed by: tonitch
GPG Key ID: A78D6421F083D42E

View File

@ -42,12 +42,13 @@ class snowflake(Scene):
segment = VMobject(stroke_width=1)
segment.set_points_as_corners(points)
self.add(*[Dot(p) for p in points])
vg = VGroup()
vg.add(*[Dot(p) for p in points])
self.add(vg)
self.play(Create(segment))
self.wait(1)
vg = VGroup()
self.add(vg)
for i in range(4):
points = SegmentedLine(points)