Operator Implicit
Implicit(Single to float4x3)
Implicitly converts a single float value to a float4x3 matrix by assigning it to every component.
Declaration
public static implicit operator float4x3(float v)
Parameters
Type | Name | Description |
---|---|---|
Single | v | float to convert to float4x3 |
Returns
Type | Description |
---|---|
float4x3 | Converted value. |
Implicit(Int32 to float4x3)
Implicitly converts a single int value to a float4x3 matrix by converting it to float and assigning it to every component.
Declaration
public static implicit operator float4x3(int v)
Parameters
Type | Name | Description |
---|---|---|
Int32 | v | int to convert to float4x3 |
Returns
Type | Description |
---|---|
float4x3 | Converted value. |
Implicit(int4x3 to float4x3)
Implicitly converts a int4x3 matrix to a float4x3 matrix by componentwise conversion.
Declaration
public static implicit operator float4x3(int4x3 v)
Parameters
Type | Name | Description |
---|---|---|
int4x3 | v | int4x3 to convert to float4x3 |
Returns
Type | Description |
---|---|
float4x3 | Converted value. |
Implicit(UInt32 to float4x3)
Implicitly converts a single uint value to a float4x3 matrix by converting it to float and assigning it to every component.
Declaration
public static implicit operator float4x3(uint v)
Parameters
Type | Name | Description |
---|---|---|
UInt32 | v | uint to convert to float4x3 |
Returns
Type | Description |
---|---|
float4x3 | Converted value. |
Implicit(uint4x3 to float4x3)
Implicitly converts a uint4x3 matrix to a float4x3 matrix by componentwise conversion.
Declaration
public static implicit operator float4x3(uint4x3 v)
Parameters
Type | Name | Description |
---|---|---|
uint4x3 | v | uint4x3 to convert to float4x3 |
Returns
Type | Description |
---|---|
float4x3 | Converted value. |