Code

Merge from fe-moved
[inkscape.git] / src / 2geom / svg-elliptical-arc.h
index 1d6d2d74d2f6dae23280feebee5bc69a0d6da355..92ec51b49b800bc5de0ce24e21a8f8ee2b901281 100644 (file)
@@ -200,15 +200,15 @@ class SVGEllipticalArc : public Curve
         return m_svg_compliant;
     }
 
-    Rect boundsFast() const
+    virtual OptRect boundsFast() const
     {
         return boundsExact();
     }
 
-    Rect boundsExact() const;
+    virtual OptRect boundsExact() const;
 
     // TODO: native implementation of the following methods
-    Rect boundsLocal(Interval i, unsigned int deg) const
+    virtual OptRect boundsLocal(OptInterval i, unsigned int deg) const
     {
         if (isDegenerate() && is_svg_compliant())
             return chord().boundsLocal(i, deg);