diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2015-05-08 12:09:07 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2015-05-08 12:09:07 +0000 |
| commit | 7b7620b5dc7f3c57be46a5078f0bec2e3868f553 (patch) | |
| tree | e58237111e89ce025b253c76eb6ae62f1f9d0e77 /src/2geom/path.h | |
| parent | Fix node editing problems (diff) | |
| download | inkscape-7b7620b5dc7f3c57be46a5078f0bec2e3868f553.tar.gz inkscape-7b7620b5dc7f3c57be46a5078f0bec2e3868f553.zip | |
Fix ellipse problems
(bzr r14059.2.5)
Diffstat (limited to 'src/2geom/path.h')
| -rw-r--r-- | src/2geom/path.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/2geom/path.h b/src/2geom/path.h index 6a6fa05ee..58afcfd8d 100644 --- a/src/2geom/path.h +++ b/src/2geom/path.h @@ -288,7 +288,11 @@ struct ShapeTraits<Path> { * - Iterating between @a begin() and @a end_closed() * will always iterate over a closed loop of segments. * - Iterating between @a begin() and @a end_open() will always skip - * the closing segment. + * the final linear closing segment. + * + * If the final point of the last "real" segment coincides exactly with the initial + * point of the first segment, the closing segment will be absent from both + * [begin(), end_open()) and [begin(), end_closed()). * * Normally, an exception will be thrown when you try to insert a curve * that makes the path non-continuous. If you are working with unsanitized |
