summaryrefslogtreecommitdiffstats
path: root/src/sp-ellipse.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/sp-ellipse.cpp')
-rw-r--r--src/sp-ellipse.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-ellipse.cpp b/src/sp-ellipse.cpp
index 4cf96e432..7e5dda871 100644
--- a/src/sp-ellipse.cpp
+++ b/src/sp-ellipse.cpp
@@ -450,7 +450,7 @@ void SPGenericEllipse::set_shape()
// This code converts the circle to four elliptical arcs explicitly.
// Circle::getPath currently creates cubic bezier curves, these are not suitable here
// as a circle should have four mid markers at 0, 90, 180, 270 degrees.
- Geom::Path path;
+ Geom::Path path(Geom::Point::polar(0));
Geom::EllipticalArc* arc;
arc = circle.arc(Geom::Point::polar(0), Geom::Point::polar(M_PI / 4.0), Geom::Point::polar(M_PI / 2.0));