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