Operator implicit operator
implicit operator Plane(float4)
Implicit cast that converts the given float4 to a Plane.
Declaration
public static implicit operator Plane(float4 plane)
Parameters
Type | Name | Description |
---|---|---|
float4 | plane | The plane. |
Returns
Type | Description |
---|---|
Plane | The result of the operation. |
implicit operator float4(Plane)
Implicit cast that converts the given Plane to a float4.
Declaration
public static implicit operator float4(Plane plane)
Parameters
Type | Name | Description |
---|---|---|
Plane | plane | The plane. |
Returns
Type | Description |
---|---|
float4 | The result of the operation. |