Searched defs:handles (Results 1 - 6 of 6) sorted by relevance

/inkscape/src/2geom/
H A Dbezier-to-sbasis.h44 inline SBasis bezier_to_sbasis(Coord const *handles, unsigned order) {
46 return Linear(handles[0]);
48 return Linear(handles[0], handles[1]);
50 return multiply(Linear(1, 0), bezier_to_sbasis(handles, order-1)) +
51 multiply(Linear(0, 1), bezier_to_sbasis(handles+1, order-1));
56 inline D2<SBasis> handles_to_sbasis(T const &handles, unsigned order)
61 v[j][i] = handles[i][j];
70 D2<SBasis> handles_to_sbasis(T const& handles, unsigned order) argument
77 v.push_back(handles[
[all...]
/inkscape/src/live_effects/
H A Dlpe-perspective_path.h60 std::vector<Geom::Point> handles; member in class:Inkscape::LivePathEffect::LPEPerspectivePath
H A Dlpe-show_handles.h44 BoolParam handles; member in class:Inkscape::LivePathEffect::LPEShowHandles
H A Dlpe-roughen.h62 EnumParam<HandlesMethod> handles; member in class:Inkscape::LivePathEffect::LPERoughen
H A Dlpe-perspective-envelope.cpp73 g_warning("Perspective/Envelope LPE::doBeforeEffect - lpeobj with invalid parameter, the same value in 4 handles!");
79 std::vector<Geom::Point> handles(4);
80 handles[0] = down_left_point;
81 handles[1] = up_left_point;
82 handles[2] = up_right_point;
83 handles[3] = down_right_point;
96 solmatrix[i][6] = -handles[i][X] * source_handles[i][X];
97 solmatrix[i][7] = -handles[i][X] * source_handles[i][Y];
101 solmatrix[i+4][6] = -handles[i][Y] * source_handles[i][X];
102 solmatrix[i+4][7] = -handles[
269 Gtk::Label* handles = Gtk::manage(new Gtk::Label(Glib::ustring(_("Handles:")),Gtk::ALIGN_START)); local
[all...]
/inkscape/src/
H A Dsp-mesh-array.h152 std::vector< SPMeshNode* > handles; member in class:SPMeshNodeArray

Completed in 3778 milliseconds