Fix Lightbulb

This commit is contained in:
Grant Sanderson 2021-06-14 09:56:35 -07:00
parent b4b4d39ec5
commit 607ef334e9

View file

@ -41,7 +41,6 @@ class Exmark(TexText):
class Lightbulb(SVGMobject):
CONFIG = {
"file_name": "lightbulb",
"height": 1,
"stroke_color": YELLOW,
"stroke_width": 3,
@ -49,6 +48,9 @@ class Lightbulb(SVGMobject):
"fill_opacity": 0,
}
def __init__(self, **kwargs):
super().__init__("lightbulb", **kwargs)
class Speedometer(VMobject):
CONFIG = {