From 67482fdfe02c8f3f6373b752a8c8092253737b8b Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sat, 30 May 2020 20:04:18 +0200 Subject: fix non rounded rect path (#727) --- lib/elements/svg_objects.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'lib/elements/svg_objects.py') diff --git a/lib/elements/svg_objects.py b/lib/elements/svg_objects.py index e597f7c1..4760af5f 100644 --- a/lib/elements/svg_objects.py +++ b/lib/elements/svg_objects.py @@ -3,14 +3,14 @@ def rect_to_path(node): y = float(node.get('y', '0')) width = float(node.get('width', '0')) height = float(node.get('height', '0')) - rx = None - ry = None + rx = 0 + ry = 0 # rounded corners # the following rules apply for radius calculations: - # if rx or ry is missing it has to take the value of the other one - # the radius cannot be bigger than half of the corresponding side - # (otherwise we receive an invalid path) + # * if rx or ry is missing it has to take the value of the other one + # * the radius cannot be bigger than half of the corresponding side + # (otherwise we receive an invalid path) if node.get('rx') or node.get('ry'): if node.get('rx'): rx = float(node.get('rx', '0')) -- cgit v1.2.3