Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions backend/jobimport/svg_path_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ def addArc(self, subpath, x1, y1, rx, ry, phi, large_arc, sweep, x2, y2):
# plus some recursive sugar for incrementally refining the
# arc resolution until the requested tolerance is met.
# http://www.w3.org/TR/SVG/implnote.html#ArcImplementationNotes
phi = phi / 360.0 * 2*math.pi
cp = math.cos(phi)
sp = math.sin(phi)
dx = 0.5 * (x1 - x2)
Expand Down