Refactor generate_logo

This commit is contained in:
Grant Sanderson
2015-10-29 17:00:46 -07:00
parent e4b61dc5df
commit f581446c4e
9 changed files with 42 additions and 23 deletions

View File

@ -225,7 +225,7 @@ class Bubble(Mobject):
class SpeechBubble(Bubble):
DEFAULT_CONFIG = {
"initial_width" : 4,
"initial_width" : 4,
"initial_height" : 2,
}
@ -257,9 +257,9 @@ class SpeechBubble(Bubble):
class ThoughtBubble(Bubble):
DEFAULT_CONFIG = {
"num_bulges" : 7,
"num_bulges" : 7,
"initial_inner_radius" : 1.8,
"initial_width" : 6
"initial_width" : 6,
}
def __init__(self, **kwargs):
Bubble.__init__(self, **kwargs)