Operator explicit operator
explicit operator half3(float)
Explicitly converts a single float value to a half3 vector by converting it to half and assigning it to every component.
Declaration
public static explicit operator half3(float v)
Parameters
Type | Name | Description |
---|---|---|
float | v | float to convert to half3 |
Returns
Type | Description |
---|---|
half3 | Converted value. |
explicit operator half3(float3)
Explicitly converts a float3 vector to a half3 vector by componentwise conversion.
Declaration
public static explicit operator half3(float3 v)
Parameters
Type | Name | Description |
---|---|---|
float3 | v | float3 to convert to half3 |
Returns
Type | Description |
---|---|
half3 | Converted value. |
explicit operator half3(double)
Explicitly converts a single double value to a half3 vector by converting it to half and assigning it to every component.
Declaration
public static explicit operator half3(double v)
Parameters
Type | Name | Description |
---|---|---|
double | v | double to convert to half3 |
Returns
Type | Description |
---|---|
half3 | Converted value. |
explicit operator half3(double3)
Explicitly converts a double3 vector to a half3 vector by componentwise conversion.
Declaration
public static explicit operator half3(double3 v)
Parameters
Type | Name | Description |
---|---|---|
double3 | v | double3 to convert to half3 |
Returns
Type | Description |
---|---|
half3 | Converted value. |