diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2007-11-17 01:44:59 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2007-11-17 01:44:59 +0000 |
| commit | 2da1c6d283b560c7405a89cfc368ea6a554a68a7 (patch) | |
| tree | a146e9f0b325dfdca9de28d6730d645bc70db3d7 /src/2geom/path.cpp | |
| parent | hopefully fix compile (#include <errno.h> (diff) | |
| download | inkscape-2da1c6d283b560c7405a89cfc368ea6a554a68a7.tar.gz inkscape-2da1c6d283b560c7405a89cfc368ea6a554a68a7.zip | |
2geom tryout: new exceptions
(bzr r4094)
Diffstat (limited to 'src/2geom/path.cpp')
| -rw-r--r-- | src/2geom/path.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/2geom/path.cpp b/src/2geom/path.cpp index 98fec6e24..ba6643ae4 100644 --- a/src/2geom/path.cpp +++ b/src/2geom/path.cpp @@ -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 { |
