explicit operator half3
Explicitly converts a single float value to a half3 vector by converting it to half and assigning it to every component.
Read time 1 minuteLast updated 13 days ago
Definition
- Type: Operator
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
explicit operator half3(half)
Explicitly converts a single float value to a half3 vector by converting it to half and assigning it to every component.
public static explicit operator half3(float v)
Parameters
float to convert to half3
Returns
Type | Description |
|---|---|
| half3 | Converted value. |
explicit operator half3(half)
Explicitly converts a float3 vector to a half3 vector by componentwise conversion.
public static explicit operator half3(float3 v)
Parameters
float3 to convert to half3
Returns
Type | Description |
|---|---|
| half3 | Converted value. |
explicit operator half3(half)
Explicitly converts a single double value to a half3 vector by converting it to half and assigning it to every component.
public static explicit operator half3(double v)
Parameters
double to convert to half3
Returns
Type | Description |
|---|---|
| half3 | Converted value. |
explicit operator half3(half)
Explicitly converts a double3 vector to a half3 vector by componentwise conversion.
public static explicit operator half3(double3 v)
Parameters
double3 to convert to half3
Returns
Type | Description |
|---|---|
| half3 | Converted value. |