summaryrefslogtreecommitdiffstats
path: root/src/2geom/path.h
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2008-11-21 05:24:08 +0000
committerTed Gould <ted@canonical.com>2008-11-21 05:24:08 +0000
commit44a3a78fb6a3863c0c7f3c1193837337e68a67e4 (patch)
tree1722ee5ec6f88c881cd4124923354b3c1311501b /src/2geom/path.h
parentMerge from trunk (diff)
downloadinkscape-44a3a78fb6a3863c0c7f3c1193837337e68a67e4.tar.gz
inkscape-44a3a78fb6a3863c0c7f3c1193837337e68a67e4.zip
Merge from fe-moved
(bzr r6891)
Diffstat (limited to 'src/2geom/path.h')
-rw-r--r--src/2geom/path.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/2geom/path.h b/src/2geom/path.h
index e02b749e7..b95a54eaa 100644
--- a/src/2geom/path.h
+++ b/src/2geom/path.h
@@ -259,8 +259,8 @@ public:
bool closed() const { return closed_; }
void close(bool closed=true) { closed_ = closed; }
- Rect boundsFast() const;
- Rect boundsExact() const;
+ OptRect boundsFast() const;
+ OptRect boundsExact() const;
Piecewise<D2<SBasis> > toPwSb() const {
Piecewise<D2<SBasis> > ret;
@@ -566,8 +566,9 @@ public:
}
- /*
+ /**
* It is important to note that the coordinates passed to appendNew should be finite!
+ * If one of the coordinates is infinite, 2geom will throw a ContinuityError exception.
*/
template <typename CurveType, typename A>