| Matrix44FCreateScale Method (Vector3F) |
Creates a scaling matrix.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public static Matrix44F CreateScale(
Vector3F scale
)
Public Shared Function CreateScale (
scale As Vector3F
) As Matrix44F
public:
static Matrix44F CreateScale(
Vector3F scale
)
static member CreateScale :
scale : Vector3F -> Matrix44F
Parameters
- scale
- Type: DigitalRune.Mathematics.AlgebraVector3F
Amounts to scale by the x, y, and z-axis.
Return Value
Type:
Matrix44FThe created scaling matrix.
See Also