cx and cy to be 0 for circle/ellipse by default (#78)
When cx and cy attributes are not defined either in ellipse or circle tag, consider both to be 0.pull/79/head^2
parent
58d48029ac
commit
b4e211fd79
|
@ -24,8 +24,8 @@ def ellipse2pathd(ellipse):
|
|||
"""converts the parameters from an ellipse or a circle to a string for a
|
||||
Path object d-attribute"""
|
||||
|
||||
cx = ellipse.get('cx', None)
|
||||
cy = ellipse.get('cy', None)
|
||||
cx = ellipse.get('cx', 0)
|
||||
cy = ellipse.get('cy', 0)
|
||||
rx = ellipse.get('rx', None)
|
||||
ry = ellipse.get('ry', None)
|
||||
r = ellipse.get('r', None)
|
||||
|
|
Loading…
Reference in New Issue