Skip to content

Commit d8378d8

Browse files
committed
Use approximately_smooth by default
1 parent 8647a64 commit d8378d8

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

manimlib/mobject/types/vectorized_mobject.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,10 @@ def set_points_as_corners(self, points):
423423

424424
def set_points_smoothly(self, points, true_smooth=False):
425425
self.set_points_as_corners(points)
426-
self.make_smooth()
426+
if true_smooth:
427+
self.make_smooth()
428+
else:
429+
self.make_approximately_smooth()
427430
return self
428431

429432
def change_anchor_mode(self, mode):

0 commit comments

Comments
 (0)