summaryrefslogtreecommitdiffstats
path: root/src/livarot/PathCutting.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/livarot/PathCutting.cpp')
-rw-r--r--src/livarot/PathCutting.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/livarot/PathCutting.cpp b/src/livarot/PathCutting.cpp
index 91f6f9ec4..35e9cb687 100644
--- a/src/livarot/PathCutting.cpp
+++ b/src/livarot/PathCutting.cpp
@@ -510,10 +510,10 @@ double Path::Surface()
for (std::vector<path_lineto>::const_iterator i = pts.begin(); i != pts.end(); i++) {
if ( i->isMoveTo == polyline_moveto ) {
- surf += NR::cross(lastM - lastP, lastM);
+ surf += Geom::cross(lastM - lastP, lastM);
lastP = lastM = i->p;
} else {
- surf += NR::cross(i->p - lastP, i->p);
+ surf += Geom::cross(i->p - lastP, i->p);
lastP = i->p;
}