Change default behave for VMobject.apply_function

This commit is contained in:
Grant Sanderson
2017-08-02 11:58:33 -07:00
parent 887565a5df
commit e0646605be
2 changed files with 4 additions and 1 deletions

View File

@ -224,7 +224,7 @@ class VMobject(Mobject):
self.submobjects
)
def apply_function(self, function, maintain_smoothness = True):
def apply_function(self, function, maintain_smoothness = False):
Mobject.apply_function(self, function)
if maintain_smoothness and self.considered_smooth:
self.make_smooth()

View File

@ -279,6 +279,9 @@ class NumberPlane(VMobject):
mob.make_smooth()
return self
def apply_function(self, function, maintain_smoothness = True):
SVGMobject.apply_function(self, function, maintain_smoothness = maintain_smoothness)