implicit operator double2x4
Implicitly converts a single double value to a double2x4 matrix by assigning it to every component.
Read time 2 minutesLast updated 10 days ago
Definition
- Type: Operator
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
implicit operator double2x4(double2x)
Implicitly converts a single double value to a double2x4 matrix by assigning it to every component.
public static implicit operator double2x4(double v)
Parameters
double to convert to double2x4
Returns
Type | Description |
|---|---|
| double2x4 | Converted value. |
implicit operator double2x4(double2x)
Implicitly converts a single int value to a double2x4 matrix by converting it to double and assigning it to every component.
public static implicit operator double2x4(int v)
Parameters
int to convert to double2x4
Returns
Type | Description |
|---|---|
| double2x4 | Converted value. |
implicit operator double2x4(double2x)
Implicitly converts a int2x4 matrix to a double2x4 matrix by componentwise conversion.
public static implicit operator double2x4(int2x4 v)
Parameters
int2x4 to convert to double2x4
Returns
Type | Description |
|---|---|
| double2x4 | Converted value. |
implicit operator double2x4(double2x)
Implicitly converts a single uint value to a double2x4 matrix by converting it to double and assigning it to every component.
public static implicit operator double2x4(uint v)
Parameters
uint to convert to double2x4
Returns
Type | Description |
|---|---|
| double2x4 | Converted value. |
implicit operator double2x4(double2x)
Implicitly converts a uint2x4 matrix to a double2x4 matrix by componentwise conversion.
public static implicit operator double2x4(uint2x4 v)
Parameters
uint2x4 to convert to double2x4
Returns
Type | Description |
|---|---|
| double2x4 | Converted value. |
implicit operator double2x4(double2x)
Implicitly converts a single float value to a double2x4 matrix by converting it to double and assigning it to every component.
public static implicit operator double2x4(float v)
Parameters
float to convert to double2x4
Returns
Type | Description |
|---|---|
| double2x4 | Converted value. |
implicit operator double2x4(double2x)
Implicitly converts a float2x4 matrix to a double2x4 matrix by componentwise conversion.
public static implicit operator double2x4(float2x4 v)
Parameters
float2x4 to convert to double2x4
Returns
Type | Description |
|---|---|
| double2x4 | Converted value. |