X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Flive_effects%2Flpe-perp_bisector.cpp;h=7c08bdb08ff07488675e944b58cc277c22f65fbb;hb=e9c4a66f3db12ac811f42b73493c1c88460f0de3;hp=a7963ce7b136946906145726595e105dcadc255e;hpb=97a20864afec63a0b7bb757b628ee2ae596cf648;p=inkscape.git diff --git a/src/live_effects/lpe-perp_bisector.cpp b/src/live_effects/lpe-perp_bisector.cpp index a7963ce7b..7c08bdb08 100644 --- a/src/live_effects/lpe-perp_bisector.cpp +++ b/src/live_effects/lpe-perp_bisector.cpp @@ -122,7 +122,7 @@ NR::Point path_end_get(SPItem *item) { void path_set_start_end(SPItem *item, NR::Point const &p, bool start) { SPCurve* curve = sp_path_get_curve_for_edit (SP_PATH(item)); // TODO: Should we use sp_shape_get_curve()? - NR::Matrix const i2d (sp_item_i2d_affine (SP_ITEM(item))); + Geom::Matrix const i2d (sp_item_i2d_affine (SP_ITEM(item))); Geom::Point A, B; if (start) { @@ -176,9 +176,10 @@ LPEPerpBisector::~LPEPerpBisector() } void -LPEPerpBisector::doOnApply (SPLPEItem *lpeitem) +LPEPerpBisector::doOnApply (SPLPEItem */*lpeitem*/) { /* make the path a straight line */ + /** SPCurve* curve = sp_path_get_curve_for_edit (SP_PATH(lpeitem)); // TODO: Should we use sp_shape_get_curve()? Geom::Point A((curve->first_point()).to_2geom()); @@ -190,6 +191,7 @@ LPEPerpBisector::doOnApply (SPLPEItem *lpeitem) // TODO: Why doesn't sp_path_set_original_curve(SP_PATH(lpeitem), c, TRUE, true) work? SP_PATH(lpeitem)->original_curve = c->ref(); c->unref(); + **/ }