Searched defs:postmul (Results 1 - 13 of 13) sorted by relevance

/inkscape/src/live_effects/parameter/
H A Dpoint.cpp111 PointParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) argument
113 param_setValue( (*this) * postmul, true);
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 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 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 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/live_effects/
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-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 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.cpp788 Effect::transform_multiply(Geom::Affine const& postmul, bool set) argument
793 param->param_transform_multiply(postmul, set);
/inkscape/src/
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 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?
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);

Completed in 212 milliseconds