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
scaleX
floatThe value by which to scale this SvgTransformF in the x-axis direction.
scaleY
floatThe 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
scaleX
floatThe value by which to scale this SvgTransformF in the x-axis direction.
scaleY
floatThe value by which to scale this SvgTransformF in the y-axis direction.
order
SvgTransformOrderA SvgTransformOrder that specifies the order (append or prepend) in which the scale vector is applied to this SvgTransformF.