Operator Explicit
Explicit(Single to half3)
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 |
---|---|---|
Single | v | float to convert to half3 |
Returns
Type | Description |
---|---|
half3 | Converted value. |
Explicit(float3 to half3)
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(Double to half3)
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(double3 to half3)
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. |