Method Scale
Scale(float)
Returns a float4x4 scale matrix given 3 axis scales.
Declaration
public static float4x4 Scale(float s)
Parameters
Type | Name | Description |
---|---|---|
float | s | The uniform scaling factor. |
Returns
Type | Description |
---|---|
float4x4 | The float4x4 matrix that represents a uniform scale. |
Scale(float, float, float)
Returns a float4x4 scale matrix given a float3 vector containing the 3 axis scales.
Declaration
public static float4x4 Scale(float x, float y, float z)
Parameters
Type | Name | Description |
---|---|---|
float | x | The x-axis scaling factor. |
float | y | The y-axis scaling factor. |
float | z | The z-axis scaling factor. |
Returns
Type | Description |
---|---|
float4x4 | The float4x4 matrix that represents a non-uniform scale. |
Scale(float3)
Returns a float4x4 scale matrix given a float3 vector containing the 3 axis scales.
Declaration
public static float4x4 Scale(float3 scales)
Parameters
Type | Name | Description |
---|---|---|
float3 | scales | The vector containing scale factors for each axis. |
Returns
Type | Description |
---|---|
float4x4 | The float4x4 matrix that represents a non-uniform scale. |