From 4ff61ed561fed31d324dcf8613a964c7a2f7f5e0 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Tue, 6 Aug 2024 10:27:35 -0500 Subject: [PATCH] Default approximate smoothing (non-approx has a bug in 3d) --- manimlib/mobject/types/vectorized_mobject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/mobject/types/vectorized_mobject.py b/manimlib/mobject/types/vectorized_mobject.py index 27479edf..34ed8afc 100644 --- a/manimlib/mobject/types/vectorized_mobject.py +++ b/manimlib/mobject/types/vectorized_mobject.py @@ -697,7 +697,7 @@ class VMobject(Mobject): self.add_subpath(new_subpath) return self - def make_smooth(self, approx=False, recurse=True) -> Self: + def make_smooth(self, approx=True, recurse=True) -> Self: """ Edits the path so as to pass smoothly through all the current anchor points.