From 76c295a60bdf4de78c49f908f8845f0261d086cf Mon Sep 17 00:00:00 2001 From: DzyubSpirit Date: Tue, 8 Oct 2019 10:32:04 +0300 Subject: [PATCH] Add default stroke width for the svg mobjects Closes: #747 --- manimlib/mobject/svg/svg_mobject.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manimlib/mobject/svg/svg_mobject.py b/manimlib/mobject/svg/svg_mobject.py index 4798003a..c6167f02 100644 --- a/manimlib/mobject/svg/svg_mobject.py +++ b/manimlib/mobject/svg/svg_mobject.py @@ -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, }