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