From cc1767718c9a1fa15d4001f35fe6e34d2e1218c6 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 9 Oct 2017 10:48:51 -0700 Subject: [PATCH] NumberLine.apply_function bug fix --- topics/number_line.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/number_line.py b/topics/number_line.py index 479805b3..6f56af6f 100644 --- a/topics/number_line.py +++ b/topics/number_line.py @@ -337,7 +337,7 @@ class NumberPlane(VMobject): return self def apply_function(self, function, maintain_smoothness = True): - SVGMobject.apply_function(self, function, maintain_smoothness = maintain_smoothness) + VMobject.apply_function(self, function, maintain_smoothness = maintain_smoothness)