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