summaryrefslogtreecommitdiffstats
path: root/src/livarot/PathCutting.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-07-11 16:28:14 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-07-11 16:28:14 +0000
commit6bbb9c3c43d7fab9e54b6557c96999257a79b080 (patch)
tree5311919e711475a37f61b2c2b0e5c61161d06c14 /src/livarot/PathCutting.cpp
parentpartial update of 2geom (diff)
downloadinkscape-6bbb9c3c43d7fab9e54b6557c96999257a79b080.tar.gz
inkscape-6bbb9c3c43d7fab9e54b6557c96999257a79b080.zip
use new 2geom function. This ensures we cannot end up in infinite loop while converting unexpected 2geom curve types to expected types.
(bzr r6260)
Diffstat (limited to 'src/livarot/PathCutting.cpp')
-rw-r--r--src/livarot/PathCutting.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/livarot/PathCutting.cpp b/src/livarot/PathCutting.cpp
index 2c3240eba..5aa77c1e5 100644
--- a/src/livarot/PathCutting.cpp
+++ b/src/livarot/PathCutting.cpp
@@ -550,7 +550,7 @@ void Path::AddCurve(Geom::Curve const &c)
svg_elliptical_arc->large_arc_flag(), svg_elliptical_arc->sweep_flag() );
} else {
//this case handles sbasis as well as all other curve types
- Geom::Path sbasis_path = Geom::path_from_sbasis(c.toSBasis(), 0.1);
+ Geom::Path sbasis_path = Geom::cubicbezierpath_from_sbasis(c.toSBasis(), 0.1);
//recurse to convert the new path resulting from the sbasis to svgd
for(Geom::Path::iterator iter = sbasis_path.begin(); iter != sbasis_path.end(); ++iter) {