summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-spiro.cpp
diff options
context:
space:
mode:
authorJohan B. C. Engelen <jbc.engelen@swissonline.ch>2008-08-01 19:18:17 +0000
committerjohanengelen <johanengelen@users.sourceforge.net>2008-08-01 19:18:17 +0000
commit83d336efc7f8c134e7ca07eab2f165c7362fc63d (patch)
tree667dd8aaa5981991940fd9bc505682ff44d77205 /src/live_effects/lpe-spiro.cpp
parentmake redundant. use correct fields of cubic bezier point array (diff)
downloadinkscape-83d336efc7f8c134e7ca07eab2f165c7362fc63d.tar.gz
inkscape-83d336efc7f8c134e7ca07eab2f165c7362fc63d.zip
remove more NR:: from live_effects code
(bzr r6515)
Diffstat (limited to 'src/live_effects/lpe-spiro.cpp')
-rw-r--r--src/live_effects/lpe-spiro.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/lpe-spiro.cpp b/src/live_effects/lpe-spiro.cpp
index 276ed7b0b..afa5dbc4d 100644
--- a/src/live_effects/lpe-spiro.cpp
+++ b/src/live_effects/lpe-spiro.cpp
@@ -50,9 +50,9 @@ void bezctx_ink_quadto(bezctx *bc, double xm, double ym, double x3, double y3)
double x1, y1;
double x2, y2;
- NR::Point last = bi->curve->last_point();
- x0 = last[NR::X];
- y0 = last[NR::Y];
+ Geom::Point last = bi->curve->last_point();
+ x0 = last[Geom::X];
+ y0 = last[Geom::Y];
x1 = xm + (1./3) * (x0 - xm);
y1 = ym + (1./3) * (y0 - ym);
x2 = xm + (1./3) * (x3 - xm);