diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2015-05-08 12:09:07 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2015-05-08 12:09:07 +0000 |
| commit | 7b7620b5dc7f3c57be46a5078f0bec2e3868f553 (patch) | |
| tree | e58237111e89ce025b253c76eb6ae62f1f9d0e77 /src/2geom/svg-path-writer.cpp | |
| parent | Fix node editing problems (diff) | |
| download | inkscape-7b7620b5dc7f3c57be46a5078f0bec2e3868f553.tar.gz inkscape-7b7620b5dc7f3c57be46a5078f0bec2e3868f553.zip | |
Fix ellipse problems
(bzr r14059.2.5)
Diffstat (limited to 'src/2geom/svg-path-writer.cpp')
| -rw-r--r-- | src/2geom/svg-path-writer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/svg-path-writer.cpp b/src/2geom/svg-path-writer.cpp index e8083a8d1..1c40ba64e 100644 --- a/src/2geom/svg-path-writer.cpp +++ b/src/2geom/svg-path-writer.cpp @@ -150,7 +150,7 @@ void SVGPathWriter::arcTo(double rx, double ry, double angle, _setCommand('A'); _current_pars.push_back(rx); _current_pars.push_back(ry); - _current_pars.push_back(angle); + _current_pars.push_back(rad_to_deg(angle)); _current_pars.push_back(large_arc ? 1. : 0.); _current_pars.push_back(sweep ? 1. : 0.); _current_pars.push_back(p[X]); |
