/inkscape/src/live_effects/ |
H A D | lpe-curvestitch.h | 35 virtual void transform_multiply(Geom::Affine const& postmul, bool set);
|
H A D | lpe-patternalongpath.h | 42 virtual void transform_multiply(Geom::Affine const& postmul, bool set);
|
H A D | lpe-copy_rotate.h | 40 virtual void transform_multiply(Geom::Affine const& postmul, bool set);
|
H A D | lpe-curvestitch.cpp | 197 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 D | lpe-patternalongpath.cpp | 257 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 D | effect.h | 95 virtual void transform_multiply(Geom::Affine const& postmul, bool set);
|
H A D | lpe-copy_rotate.cpp | 108 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 D | effect.cpp | 788 Effect::transform_multiply(Geom::Affine const& postmul, bool set) argument 793 param->param_transform_multiply(postmul, set);
|
/inkscape/src/live_effects/parameter/ |
H A D | transformedpoint.cpp | 117 TransformedPointParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) argument 120 set_and_write_new_values( origin * postmul, vector * postmul.withoutTranslation() );
|
H A D | transformedpoint.h | 50 virtual void param_transform_multiply(Geom::Affine const &postmul, bool set);
|
H A D | vector.h | 49 virtual void param_transform_multiply(Geom::Affine const &postmul, bool set);
|
H A D | vector.cpp | 118 VectorParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) argument 120 set_and_write_new_values( origin * postmul, vector * postmul.withoutTranslation() );
|
H A D | powerstrokepointarray.cpp | 45 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 D | powerstrokepointarray.h | 34 virtual void param_transform_multiply(Geom::Affine const& postmul, bool /*set*/);
|
H A D | point.cpp | 111 PointParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) argument 113 param_setValue( (*this) * postmul, true);
|
H A D | filletchamferpointarray.h | 39 virtual void param_transform_multiply(Geom::Affine const &postmul,
|
H A D | path.cpp | 249 PathParam::param_transform_multiply(Geom::Affine const& postmul, bool /*set*/) argument 253 set_new_value( _pathvector * postmul, true );
|
H A D | filletchamferpointarray.cpp | 89 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 D | sp-item.h | 306 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 D | gradient-chemistry.h | 73 void sp_gradient_transform_multiply(SPGradient *gradient, Geom::Affine postmul, bool set);
|
H A D | sp-pattern.h | 61 void transform_multiply(Geom::Affine postmul, bool set);
|
H A D | sp-pattern.cpp | 361 void SPPattern::transform_multiply(Geom::Affine postmul, bool set) argument 366 // postmul; 370 _pattern_transform = postmul; 373 _pattern_transform = getTransform() * postmul;
|
H A D | sp-item.cpp | 1219 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 D | gradient-chemistry.cpp | 549 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?
|