mirror of
https://github.com/3b1b/manim.git
synced 2025-11-14 12:07:45 +00:00
Fix Lightbulb
This commit is contained in:
parent
b4b4d39ec5
commit
607ef334e9
1 changed files with 3 additions and 1 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue