Scale
Returns a float4x4 scale matrix given 3 axis scales.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Method
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
Scale(float)
Returns a float4x4 scale matrix given 3 axis scales.
public static float4x4 Scale(float s)
Parameters
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.
public static float4x4 Scale(float x, float y, float z)
Parameters
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.
public static float4x4 Scale(float3 scales)
Parameters
The vector containing scale factors for each axis.
Returns
Type | Description |
|---|---|
| float4x4 | The float4x4 matrix that represents a non-uniform scale. |