Operator Explicit
Explicit(Boolean to int3x3)
Explicitly converts a single bool value to a int3x3 matrix by converting it to int and assigning it to every component.
Declaration
public static explicit operator int3x3(bool v)
Parameters
| Type | Name | Description |
|---|---|---|
| Boolean | v | bool to convert to int3x3 |
Returns
| Type | Description |
|---|---|
| int3x3 | Converted value. |
Explicit(bool3x3 to int3x3)
Explicitly converts a bool3x3 matrix to a int3x3 matrix by componentwise conversion.
Declaration
public static explicit operator int3x3(bool3x3 v)
Parameters
| Type | Name | Description |
|---|---|---|
| bool3x3 | v | bool3x3 to convert to int3x3 |
Returns
| Type | Description |
|---|---|
| int3x3 | Converted value. |
Explicit(UInt32 to int3x3)
Explicitly converts a single uint value to a int3x3 matrix by converting it to int and assigning it to every component.
Declaration
public static explicit operator int3x3(uint v)
Parameters
| Type | Name | Description |
|---|---|---|
| UInt32 | v | uint to convert to int3x3 |
Returns
| Type | Description |
|---|---|
| int3x3 | Converted value. |
Explicit(uint3x3 to int3x3)
Explicitly converts a uint3x3 matrix to a int3x3 matrix by componentwise conversion.
Declaration
public static explicit operator int3x3(uint3x3 v)
Parameters
| Type | Name | Description |
|---|---|---|
| uint3x3 | v | uint3x3 to convert to int3x3 |
Returns
| Type | Description |
|---|---|
| int3x3 | Converted value. |
Explicit(Single to int3x3)
Explicitly converts a single float value to a int3x3 matrix by converting it to int and assigning it to every component.
Declaration
public static explicit operator int3x3(float v)
Parameters
| Type | Name | Description |
|---|---|---|
| Single | v | float to convert to int3x3 |
Returns
| Type | Description |
|---|---|
| int3x3 | Converted value. |
Explicit(float3x3 to int3x3)
Explicitly converts a float3x3 matrix to a int3x3 matrix by componentwise conversion.
Declaration
public static explicit operator int3x3(float3x3 v)
Parameters
| Type | Name | Description |
|---|---|---|
| float3x3 | v | float3x3 to convert to int3x3 |
Returns
| Type | Description |
|---|---|
| int3x3 | Converted value. |
Explicit(Double to int3x3)
Explicitly converts a single double value to a int3x3 matrix by converting it to int and assigning it to every component.
Declaration
public static explicit operator int3x3(double v)
Parameters
| Type | Name | Description |
|---|---|---|
| Double | v | double to convert to int3x3 |
Returns
| Type | Description |
|---|---|
| int3x3 | Converted value. |
Explicit(double3x3 to int3x3)
Explicitly converts a double3x3 matrix to a int3x3 matrix by componentwise conversion.
Declaration
public static explicit operator int3x3(double3x3 v)
Parameters
| Type | Name | Description |
|---|---|---|
| double3x3 | v | double3x3 to convert to int3x3 |
Returns
| Type | Description |
|---|---|
| int3x3 | Converted value. |