[]
Applies the specified scale vector to this Matrix object by prepending the scale vector.
public void Scale(float scaleX, float scaleY)
Public Sub Scale(scaleX As Single, scaleY As Single)
| Type | Name | Description |
|---|---|---|
| float | scaleX | The value by which to scale this Matrix in the x-axis direction. |
| float | scaleY | The value by which to scale this Matrix in the y-axis direction. |
Applies the specified scale vector to this Matrix object by prepending the scale vector.
public void Scale(float scaleX, float scaleY, TransformOrder order)
Public Sub Scale(scaleX As Single, scaleY As Single, order As TransformOrder)
| Type | Name | Description |
|---|---|---|
| float | scaleX | The value by which to scale this Matrix in the x-axis direction. |
| float | scaleY | The value by which to scale this Matrix in the y-axis direction. |
| TransformOrder | order | A TransformOrder enumeration that specifies the order (append or prepend) in which the scaling is applied to this Matrix object. |