From dde085094fa48ef6f2cc5b94fecc4b52495efca3 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Tue, 5 Jan 2021 22:00:52 -0800 Subject: [PATCH] Refresh triangulation after general functions --- manimlib/mobject/types/vectorized_mobject.py | 1 + 1 file changed, 1 insertion(+) diff --git a/manimlib/mobject/types/vectorized_mobject.py b/manimlib/mobject/types/vectorized_mobject.py index cf6c0ea0..8039862f 100644 --- a/manimlib/mobject/types/vectorized_mobject.py +++ b/manimlib/mobject/types/vectorized_mobject.py @@ -565,6 +565,7 @@ class VMobject(Mobject): Mobject.apply_function(self, function) if self.make_smooth_after_applying_functions: self.make_smooth() + self.refresh_triangulation() return self def flip(self, *args, **kwargs):