lpe-perp_bisector.cpp revision 78f31011c08503bf0d95da30e5f6326d4dd10f8a
#define INKSCAPE_LPE_PERP_BISECTOR_CPP
/** \file
* LPE <perp_bisector> implementation.
*/
/*
* Authors:
* Maximilian Albert
* Johan Engelen
*
* Copyright (C) Johan Engelen 2007 <j.b.c.engelen@utwente.nl>
* Copyright (C) Maximilin Albert 2008 <maximilian.albert@gmail.com>
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "live_effects/lpe-perp_bisector.h"
#include <libnr/n-art-bpath.h>
#include "sp-path.h"
#include "line-geometry.h"
#include "sp-lpe-item.h"
namespace Inkscape {
namespace LivePathEffect {
/* FIXME: We should make these member functions of LPEPerpBisector.
Is there an easy way to register member functions with knotholder?
KNOWN BUG: Because of the above, this effect does not work well when in an LPE stack
*/
dynamic_cast<Inkscape::LivePathEffect::LPEPerpBisector *> (sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item)));
if (lpe)
else
}
dynamic_cast<Inkscape::LivePathEffect::LPEPerpBisector *> (sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item)));
if (lpe)
else
}
void
dynamic_cast<Inkscape::LivePathEffect::LPEPerpBisector *> (sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item)));
if (!lpe)
return;
if (left) {
} else {
}
// FIXME: this should not directly ask for updating the item. It should write to SVG, which triggers updating.
}
void
bisector_left_end_set(SPItem *item, NR::Point const &p, NR::Point const &/*origin*/, guint /*state*/) {
bisector_end_set(item, p);
}
void
bisector_right_end_set(SPItem *item, NR::Point const &p, NR::Point const &/*origin*/, guint /*state*/) {
bisector_end_set(item, p, false);
}
dynamic_cast<Inkscape::LivePathEffect::LPEPerpBisector *> (sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item)));
if (lpe)
else
}
dynamic_cast<Inkscape::LivePathEffect::LPEPerpBisector *> (sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item)));
if (lpe)
else
}
void
SPCurve* curve = sp_path_get_curve_for_edit (SP_PATH(item)); // TODO: Should we use sp_shape_get_curve()?
if (start) {
A = p.to_2geom();
} else {
B = (p.to_2geom());
}
c->moveto(A);
c->lineto(B);
c->unref();
}
void path_start_set(SPItem *item, NR::Point const &p, NR::Point const &/*origin*/, guint /*state*/) {
path_set_start_end(item, p);
}
path_set_start_end(item, p, false);
}
length_left(_("Length left"), _("Specifies the left end of the bisector"), "length-left", &wr, this, 200),
length_right(_("Length right"), _("Specifies the right end of the bisector"), "length-right", &wr, this, 200),
A(0,0), B(0,0), M(0,0), C(0,0), D(0,0), perp_dir(0,0)
{
// register all your parameters here, so Inkscape knows which parameters this effect has:
}
{
}
void
{
/* 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()?
c->moveto(A);
c->lineto(B);
// TODO: Why doesn't sp_path_set_original_curve(SP_PATH(lpeitem), c, TRUE, true) work?
c->unref();
}
{
using namespace Geom;
A = pwd2_in.firstValue();
M = (A + B)/2;
C = M + perp_dir * length_left;
D = M - perp_dir * length_right;
return output;
}
/* ######################## */
} //namespace LivePathEffect
} /* namespace Inkscape */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :