mirror of
https://github.com/3b1b/manim.git
synced 2025-04-13 09:47:07 +00:00
replace single quotes with double quotes
This commit is contained in:
parent
5f6b653803
commit
7f27e926f2
1 changed files with 16 additions and 16 deletions
|
@ -27,23 +27,23 @@ class TextSetting(object):
|
|||
class Text(SVGMobject):
|
||||
CONFIG = {
|
||||
# Mobject
|
||||
'color': WHITE,
|
||||
'height': None,
|
||||
'stroke_width': 0,
|
||||
"color": WHITE,
|
||||
"height": None,
|
||||
"stroke_width": 0,
|
||||
# Text
|
||||
'font': '',
|
||||
'gradient': None,
|
||||
'lsh': -1,
|
||||
'size': 1,
|
||||
'font_size': 48,
|
||||
'tab_width': 4,
|
||||
'slant': NORMAL,
|
||||
'weight': NORMAL,
|
||||
't2c': {},
|
||||
't2f': {},
|
||||
't2g': {},
|
||||
't2s': {},
|
||||
't2w': {},
|
||||
"font": '',
|
||||
"gradient": None,
|
||||
"lsh": -1,
|
||||
"size": 1,
|
||||
"font_size": 48,
|
||||
"tab_width": 4,
|
||||
"slant": NORMAL,
|
||||
"weight": NORMAL,
|
||||
"t2c": {},
|
||||
"t2f": {},
|
||||
"t2g": {},
|
||||
"t2s": {},
|
||||
"t2w": {},
|
||||
}
|
||||
|
||||
def __init__(self, text, **config):
|
||||
|
|
Loading…
Add table
Reference in a new issue