diff options
| author | Johan B. C. Engelen <jbc.engelen@swissonline.ch> | 2008-05-05 19:00:20 +0000 |
|---|---|---|
| committer | johanengelen <johanengelen@users.sourceforge.net> | 2008-05-05 19:00:20 +0000 |
| commit | d955f60393f4f85b0269346f37b4481a1c70205a (patch) | |
| tree | 2dd9a11fe737c4a43c8aa88451acd3c8f766fff2 /src/sp-conn-end-pair.cpp | |
| parent | Cmake: Moved helper macros to their own file and removed *-test.h from inksca... (diff) | |
| download | inkscape-d955f60393f4f85b0269346f37b4481a1c70205a.tar.gz inkscape-d955f60393f4f85b0269346f37b4481a1c70205a.zip | |
struct SPCurve => class SPCurve
change all sp_curve_methods functions to SPCurve::methods.
(bzr r5609)
Diffstat (limited to 'src/sp-conn-end-pair.cpp')
| -rw-r--r-- | src/sp-conn-end-pair.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/sp-conn-end-pair.cpp b/src/sp-conn-end-pair.cpp index 087069293..04591aaba 100644 --- a/src/sp-conn-end-pair.cpp +++ b/src/sp-conn-end-pair.cpp @@ -178,10 +178,10 @@ SPConnEndPair::getEndpoints(NR::Point endPts[]) const { else { if (h == 0) { - endPts[h] = sp_curve_first_point(curve); + endPts[h] = curve->first_point(); } else { - endPts[h] = sp_curve_last_point(curve); + endPts[h] = curve->last_point(); } } } @@ -302,12 +302,12 @@ SPConnEndPair::reroutePath(void) Avoid::PolyLine route = _connRef->route(); _connRef->calcRouteDist(); - sp_curve_reset(curve); - sp_curve_moveto(curve, endPt[0]); + curve->reset(); + curve->moveto(endPt[0]); for (int i = 1; i < route.pn; ++i) { NR::Point p(route.ps[i].x, route.ps[i].y); - sp_curve_lineto(curve, p); + curve->lineto(p); } } |
