From dad04e89c91658d8c923701e570a7239e81df3ac Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 9 Oct 2017 10:45:14 -0700 Subject: [PATCH 1/2] Bubble files --- files/images/Bubbles_speech.svg | 11 +++++++++++ files/images/Bubbles_thought.svg | 18 ++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 files/images/Bubbles_speech.svg create mode 100644 files/images/Bubbles_thought.svg diff --git a/files/images/Bubbles_speech.svg b/files/images/Bubbles_speech.svg new file mode 100644 index 00000000..173ebf35 --- /dev/null +++ b/files/images/Bubbles_speech.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/files/images/Bubbles_thought.svg b/files/images/Bubbles_thought.svg new file mode 100644 index 00000000..c77ebca4 --- /dev/null +++ b/files/images/Bubbles_thought.svg @@ -0,0 +1,18 @@ + + + + + + + + + From cc1767718c9a1fa15d4001f35fe6e34d2e1218c6 Mon Sep 17 00:00:00 2001 From: Grant Sanderson Date: Mon, 9 Oct 2017 10:48:51 -0700 Subject: [PATCH 2/2] 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)