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