summaryrefslogtreecommitdiffstats
path: root/src/2geom/svg-path-writer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/2geom/svg-path-writer.cpp')
-rw-r--r--src/2geom/svg-path-writer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/2geom/svg-path-writer.cpp b/src/2geom/svg-path-writer.cpp
index 1c40ba64e..c484a172b 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(rad_to_deg(angle));
+ _current_pars.push_back(deg_from_rad(angle));
_current_pars.push_back(large_arc ? 1. : 0.);
_current_pars.push_back(sweep ? 1. : 0.);
_current_pars.push_back(p[X]);