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