Code

2geom tryout: new exceptions
[inkscape.git] / src / 2geom / path.cpp
index 98fec6e24555c3cd9f2fc632c7a9b13984ba7a54..ba6643ae4af9a29b0c950aa223ee5b93a200f775 100644 (file)
@@ -222,21 +222,21 @@ void Path::check_continuity(Sequence::iterator first_replaced,
 }
 
 Rect SVGEllipticalArc::boundsFast() const {
-    throw NotImplemented();
+    throwNotImplemented();
 }
 Rect SVGEllipticalArc::boundsExact() const {
-    throw NotImplemented();
+    throwNotImplemented();
 }
 Rect SVGEllipticalArc::boundsLocal(Interval i, unsigned deg) const {
-    //throw NotImplemented();
+    throwNotImplemented();
 }
 
 std::vector<Point> SVGEllipticalArc::pointAndDerivatives(Coord t, unsigned n) const {
-    throw NotImplemented();
+    throwNotImplemented();
 }
 
 std::vector<double> SVGEllipticalArc::roots(double v, Dim2 d) const {
-    //throw NotImplemented();
+    throwNotImplemented();
 }
 
 D2<SBasis> SVGEllipticalArc::toSBasis() const {