Operator implicit operator
implicit operator float3x3(float)
Implicitly converts a single float value to a float3x3 matrix by assigning it to every component.
Declaration
public static implicit operator float3x3(float v)
Parameters
| Type | Name | Description |
|---|---|---|
| float | v | float to convert to float3x3 |
Returns
| Type | Description |
|---|---|
| float3x3 | Converted value. |
implicit operator float3x3(int)
Implicitly converts a single int value to a float3x3 matrix by converting it to float and assigning it to every component.
Declaration
public static implicit operator float3x3(int v)
Parameters
| Type | Name | Description |
|---|---|---|
| int | v | int to convert to float3x3 |
Returns
| Type | Description |
|---|---|
| float3x3 | Converted value. |
implicit operator float3x3(int3x3)
Implicitly converts a int3x3 matrix to a float3x3 matrix by componentwise conversion.
Declaration
public static implicit operator float3x3(int3x3 v)
Parameters
| Type | Name | Description |
|---|---|---|
| int3x3 | v | int3x3 to convert to float3x3 |
Returns
| Type | Description |
|---|---|
| float3x3 | Converted value. |
implicit operator float3x3(uint)
Implicitly converts a single uint value to a float3x3 matrix by converting it to float and assigning it to every component.
Declaration
public static implicit operator float3x3(uint v)
Parameters
| Type | Name | Description |
|---|---|---|
| uint | v | uint to convert to float3x3 |
Returns
| Type | Description |
|---|---|
| float3x3 | Converted value. |
implicit operator float3x3(uint3x3)
Implicitly converts a uint3x3 matrix to a float3x3 matrix by componentwise conversion.
Declaration
public static implicit operator float3x3(uint3x3 v)
Parameters
| Type | Name | Description |
|---|---|---|
| uint3x3 | v | uint3x3 to convert to float3x3 |
Returns
| Type | Description |
|---|---|
| float3x3 | Converted value. |