Merge pull request #748 from DzyubSpirit/fix-svg-width

Add default stroke width for the svg mobjects
This commit is contained in:
Devin Neal 2019-10-26 22:31:25 -07:00 committed by GitHub
commit ec9dd06d38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,7 +34,7 @@ class SVGMobject(VMobject):
# Must be filled in in a subclass, or when called
"file_name": None,
"unpack_groups": True, # if False, creates a hierarchy of VGroups
"stroke_width": 0,
"stroke_width": DEFAULT_STROKE_WIDTH,
"fill_opacity": 1.0,
# "fill_color" : LIGHT_GREY,
}