Searched refs:postmul (Results 1 - 24 of 24) sorted by relevance

/inkscape/src/live_effects/
H A Dlpe-curvestitch.h35 virtual void transform_multiply(Geom::Affine const& postmul, bool set);
H A Dlpe-patternalongpath.h42 virtual void transform_multiply(Geom::Affine const& postmul, bool set);
H A Dlpe-copy_rotate.h40 virtual void transform_multiply(Geom::Affine const& postmul, bool set);
H A Dlpe-curvestitch.cpp197 LPECurveStitch::transform_multiply(Geom::Affine const& postmul, bool set) argument
200 if (postmul.isTranslation()) {
201 strokepath.param_transform_multiply(postmul, set);
207 // new_postmul.setTranslation(postmul.translation());
H A Dlpe-patternalongpath.cpp257 LPEPatternAlongPath::transform_multiply(Geom::Affine const& postmul, bool set) argument
266 prop_scale.param_set_value(prop_scale * ((postmul.expansionX() + postmul.expansionY()) / 2));
268 if (postmul.isTranslation()) {
269 pattern.param_transform_multiply(postmul, set);
H A Deffect.h95 virtual void transform_multiply(Geom::Affine const& postmul, bool set);
H A Dlpe-copy_rotate.cpp108 LPECopyRotate::transform_multiply(Geom::Affine const& postmul, bool set) argument
111 Geom::Coord angle = Geom::deg_from_rad(atan(-postmul[1]/postmul[0]));
119 param->param_transform_multiply(postmul, set);
H A Deffect.cpp788 Effect::transform_multiply(Geom::Affine const& postmul, bool set) argument
793 param->param_transform_multiply(postmul, set);
/inkscape/src/live_effects/parameter/
H A Dtransformedpoint.cpp117 TransformedPointParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) argument
120 set_and_write_new_values( origin * postmul, vector * postmul.withoutTranslation() );
H A Dtransformedpoint.h50 virtual void param_transform_multiply(Geom::Affine const &postmul, bool set);
H A Dvector.h49 virtual void param_transform_multiply(Geom::Affine const &postmul, bool set);
H A Dvector.cpp118 VectorParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) argument
120 set_and_write_new_values( origin * postmul, vector * postmul.withoutTranslation() );
H A Dpowerstrokepointarray.cpp45 void PowerStrokePointArrayParam::param_transform_multiply(Geom::Affine const &postmul, bool /*set*/) argument
57 Geom::Coord const A = (*point_it)[Geom::Y] * ((postmul.expansionX() + postmul.expansionY()) / 2);
H A Dpowerstrokepointarray.h34 virtual void param_transform_multiply(Geom::Affine const& postmul, bool /*set*/);
H A Dpoint.cpp111 PointParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) argument
113 param_setValue( (*this) * postmul, true);
H A Dfilletchamferpointarray.h39 virtual void param_transform_multiply(Geom::Affine const &postmul,
H A Dpath.cpp249 PathParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) argument
253 set_new_value( _pathvector * postmul, true );
H A Dfilletchamferpointarray.cpp89 FilletChamferPointArrayParam::param_transform_multiply(Affine const &postmul, argument
100 (*point_it)[X] * ((postmul.expansionX() + postmul.expansionY()) / 2);
106 // param_set_and_write_new_value( (*this) * postmul );
/inkscape/src/
H A Dsp-item.h306 void adjust_pattern(/* Geom::Affine const &premul, */ Geom::Affine const &postmul, bool set = false, PatternTransform = TRANSFORM_BOTH);
307 void adjust_gradient(/* Geom::Affine const &premul, */ Geom::Affine const &postmul, bool set = false);
322 void adjust_livepatheffect(Geom::Affine const &postmul, bool set = false);
H A Dgradient-chemistry.h73 void sp_gradient_transform_multiply(SPGradient *gradient, Geom::Affine postmul, bool set);
H A Dsp-pattern.h61 void transform_multiply(Geom::Affine postmul, bool set);
H A Dsp-pattern.cpp361 void SPPattern::transform_multiply(Geom::Affine postmul, bool set) argument
366 // postmul;
370 _pattern_transform = postmul;
373 _pattern_transform = getTransform() * postmul;
H A Dsp-item.cpp1219 void SPItem::adjust_pattern(Geom::Affine const &postmul, bool set, PatternTransform pt) argument
1227 pattern->transform_multiply(postmul, set);
1237 pattern->transform_multiply(postmul, set);
1242 void SPItem::adjust_gradient( Geom::Affine const &postmul, bool set ) argument
1260 sp_gradient_transform_multiply( gradient, postmul, set );
1269 sp_gradient_transform_multiply( gradient, postmul, set );
1398 void SPItem::adjust_livepatheffect (Geom::Affine const &postmul, bool set) argument
1411 effect->transform_multiply(postmul, set);
H A Dgradient-chemistry.cpp549 void sp_gradient_transform_multiply(SPGradient *gradient, Geom::Affine postmul, bool set) argument
555 gradient->gradientTransform = postmul;
557 gradient->gradientTransform *= postmul; // fixme: get gradient transform by climbing to hrefs?

Completed in 186 milliseconds