ScaleRef(Matrix4x4,Single,Single,Single) Method
In This Topic
Creates a matrix that scales along the x-axis, y-axis, and y-axis.
Syntax
'Declaration
Public Overloads Shared Sub ScaleRef( _
ByRef As Matrix4x4, _
ByVal As System.Single, _
ByVal As System.Single, _
ByVal As System.Single _
)
public static void ScaleRef(
out Matrix4x4 ,
System.float ,
System.float ,
System.float
)
Parameters
- result
- When the method completes, contains the created scaling matrix.
- xScale
- Scaling factor that is applied along the x-axis.
- yScale
- Scaling factor that is applied along the y-axis.
- zScale
- Scaling factor that is applied along the z-axis.
See Also