summaryrefslogtreecommitdiffstats
path: root/src/livarot/PathStroke.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-12-05 19:57:37 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-12-05 19:57:37 +0000
commitcd0dcf4bbfce15c27b5bc4db6aadcf0cc633dd78 (patch)
treed62314ee82433918c019fecffc7e4e3bfc7e4777 /src/livarot/PathStroke.cpp
parentNR -> 2Geom, more h and cpp files (diff)
downloadinkscape-cd0dcf4bbfce15c27b5bc4db6aadcf0cc633dd78.tar.gz
inkscape-cd0dcf4bbfce15c27b5bc4db6aadcf0cc633dd78.zip
NR::LInfty => Geom::
(bzr r6953)
Diffstat (limited to 'src/livarot/PathStroke.cpp')
-rw-r--r--src/livarot/PathStroke.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/livarot/PathStroke.cpp b/src/livarot/PathStroke.cpp
index e9f2ae677..cbd7bed5a 100644
--- a/src/livarot/PathStroke.cpp
+++ b/src/livarot/PathStroke.cpp
@@ -65,7 +65,7 @@ void Path::Stroke(Shape *dest, bool doClose, double width, JoinType join,
if ( lastP > lastM+1 ) {
NR::Point sbStart = pts[lastM].p;
NR::Point sbEnd = pts[lastP - 1].p;
- if ( NR::LInfty(sbEnd-sbStart) < 0.00001 ) { // why close lines that shouldn't be closed?
+ if ( Geom::LInfty(sbEnd-sbStart) < 0.00001 ) { // why close lines that shouldn't be closed?
// ah I see, because close is defined here for
// a whole path and should be defined per subpath.
// debut==fin => ferme (on devrait garder un element pour les close(), mais tant pis)