Method Scale
- Namespace
- SharpVectors.Dom.Svg
- Assembly
- SharpVectors.Core.dll
Scale(float, float)
Applies the specified scale vector to this SvgTransformF by prepending the scale vector.
public void Scale(float scaleX, float scaleY)
Parameters
scaleXfloatThe value by which to scale this SvgTransformF in the x-axis direction.
scaleYfloatThe value by which to scale this SvgTransformF in the y-axis direction.
Scale(float, float, SvgTransformOrder)
Applies the specified scale vector to this SvgTransformF using the specified order.
public void Scale(float scaleX, float scaleY, SvgTransformOrder order)
Parameters
scaleXfloatThe value by which to scale this SvgTransformF in the x-axis direction.
scaleYfloatThe value by which to scale this SvgTransformF in the y-axis direction.
orderSvgTransformOrderA SvgTransformOrder that specifies the order (append or prepend) in which the scale vector is applied to this SvgTransformF.