diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2012-03-24 19:57:21 +0000 |
|---|---|---|
| committer | Johan B. C. Engelen <j.b.c.engelen@alumnus.utwente.nl> | 2012-03-24 19:57:21 +0000 |
| commit | f4f442c53ca362ea85e5c6b84d12ef745584a7d0 (patch) | |
| tree | 21b4af0b0c7f4c4ebfec00b6e4b95702c5bfa5d0 /src | |
| parent | Translations. POTFILE update (clonetiler move). (diff) | |
| download | inkscape-f4f442c53ca362ea85e5c6b84d12ef745584a7d0.tar.gz inkscape-f4f442c53ca362ea85e5c6b84d12ef745584a7d0.zip | |
partial 2geom update to obtain required method
(bzr r11127)
Diffstat (limited to 'src')
| -rw-r--r-- | src/2geom/svg-path.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/2geom/svg-path.h b/src/2geom/svg-path.h index 89192fb72..591eb3aa2 100644 --- a/src/2geom/svg-path.h +++ b/src/2geom/svg-path.h @@ -120,6 +120,14 @@ public: large_arc, sweep, p); } + void append(Path const &other, Path::Stitching stitching = Path::NO_STITCHING) + { + if (!_in_path) { + moveTo(other.initialPoint()); + } + _path.append(other, stitching); + } + void closePath() { _path.close(); finish(); |
