Skip to content

Commit

Permalink
Use approximately_smooth by default
Browse files Browse the repository at this point in the history
  • Loading branch information
3b1b committed Aug 21, 2021
1 parent 8647a64 commit d8378d8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion manimlib/mobject/types/vectorized_mobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,10 @@ def set_points_as_corners(self, points):

def set_points_smoothly(self, points, true_smooth=False):
self.set_points_as_corners(points)
self.make_smooth()
if true_smooth:
self.make_smooth()
else:
self.make_approximately_smooth()
return self

def change_anchor_mode(self, mode):
Expand Down

0 comments on commit d8378d8

Please sign in to comment.