Searched defs:shift (Results 1 - 12 of 12) sorted by relevance

/inkscape/src/display/
H A Dnr-filter-tile.cpp71 Geom::Point shift = sa.min() - tt.min(); local
77 cairo_set_source_surface(ct_tile, in, shift[Geom::X], shift[Geom::Y]);
H A Dcairo-templates.h433 guint32 shift = i*8; local
434 guint32 mask = 0xff << shift;
435 guint32 c00 = (p00 & mask) >> shift;
436 guint32 c10 = (p10 & mask) >> shift;
437 guint32 c01 = (p01 & mask) >> shift;
438 guint32 c11 = (p11 & mask) >> shift;
/inkscape/src/live_effects/
H A Dlpe-ruler.h58 ScalarParam shift; member in class:Inkscape::LivePathEffect::LPERuler
/inkscape/src/
H A Dcontext-fns.cpp81 bool const shift = state & GDK_SHIFT_MASK; local
119 if (shift) {
163 } else if (shift) {
H A Dseltrans.cpp793 // When holding shift while rotating or skewing, the transformation will be
1095 * 2) When holding shift, the transformation will be relative to the point opposite of
1214 * 2) When holding shift, the transformation will be relative to the point opposite of
1358 bool const shift = (state & GDK_SHIFT_MASK); local
1372 } else if (!shift) { //!shift: with snapping
/inkscape/src/2geom/
H A Dsbasis.cpp194 SBasis shift(SBasis const &a, int sh) { function in namespace:Geom
212 SBasis shift(Linear const &a, int sh) { function in namespace:Geom
225 // c = {a0*b0 - shift(1, a.Tri*b.Tri), a1*b1 - shift(1, a.Tri*b.Tri)}
227 // shift(1, a.Tri*b.Tri)
234 c[i+1/*shift*/] += Linear(-tri);
262 c[i+1/*shift*/] += Linear(-tri);
381 SBasis cisi = shift(ci, i);
382 r -= multiply(shift((c*2 + cisi), i), SBasis(ci));
429 r -= shift(multipl
[all...]
/inkscape/src/extension/internal/filter/
H A Dcolor.h14 * Color shift
309 \brief Custom predefined Color shift filter.
331 "<param name=\"shift\" gui-text=\"" N_("Shift (°)") "\" type=\"int\" appearance=\"full\" min=\"0\" max=\"360\">330</param>\n"
352 std::ostringstream shift; local
355 shift << ext->get_param_int("shift");
362 "</filter>\n", shift.str().c_str(), sat.str().c_str() );
/inkscape/src/ui/tools/
H A Dpen-tool.cpp276 // We cannot use shift here to disable snapping because the shift-key is already used
1086 this->_lastpointMoveScreen(-10, 0); // shift
1089 this->_lastpointMoveScreen(-1, 0); // no shift
1094 this->_lastpointMove(-10*nudge, 0); // shift
1097 this->_lastpointMove(-nudge, 0); // no shift
1108 this->_lastpointMoveScreen(0, 10); // shift
1111 this->_lastpointMoveScreen(0, 1); // no shift
1116 this->_lastpointMove(0, 10*nudge); // shift
1119 this->_lastpointMove(0, nudge); // no shift
1367 _bsplineSpiro(bool shift) argument
1400 _bsplineSpiroStartAnchor(bool shift) argument
1506 _bsplineSpiroMotion(bool shift) argument
[all...]
H A Dtool-base.cpp781 /* shift + wheel, pan left--right */
1109 bool shift = shift_tip && (MOD__SHIFT(event) || (keyval == GDK_KEY_Shift_L) || (keyval local
1115 && (shift || alt) ? "; " : ""), (shift ? shift_tip : ""), ((ctrl
1116 || shift) && alt ? "; " : ""), (alt ? alt_tip : ""));
/inkscape/src/extension/internal/
H A Dodf.cpp686 // Calculate the shift.
704 double shift = 0.0; local
706 shift = sqrt(b*b + c);
708 shift = -shift;
710 shift = c/(b + shift);
712 double f = (sk + sp)*(sk - sp) + shift;
/inkscape/src/ui/tool/
H A Dnode.cpp1594 void NodeList::shift(int n) function in class:Inkscape::UI::NodeList
/inkscape/src/extension/internal/pdfinput/
H A Dsvg-builder.cpp1173 void SvgBuilder::updateTextShift(GfxState *state, double shift) { argument
1174 double shift_value = -shift * 0.001 * fabs(state->getFontSize());

Completed in 1791 milliseconds