Method rcp
rcp(Single)
Returns the reciprocal a float value.
Declaration
public static float rcp(float x)
Parameters
Type | Name | Description |
---|---|---|
Single | x | Input value. |
Returns
Type | Description |
---|---|
Single | The reciprocal of the input. |
rcp(float2)
Returns the componentwise reciprocal a float2 vector.
Declaration
public static float2 rcp(float2 x)
Parameters
Type | Name | Description |
---|---|---|
float2 | x | Input value. |
Returns
Type | Description |
---|---|
float2 | The componentwise reciprocal of the input. |
rcp(float3)
Returns the componentwise reciprocal a float3 vector.
Declaration
public static float3 rcp(float3 x)
Parameters
Type | Name | Description |
---|---|---|
float3 | x | Input value. |
Returns
Type | Description |
---|---|
float3 | The componentwise reciprocal of the input. |
rcp(float4)
Returns the componentwise reciprocal a float4 vector.
Declaration
public static float4 rcp(float4 x)
Parameters
Type | Name | Description |
---|---|---|
float4 | x | Input value. |
Returns
Type | Description |
---|---|
float4 | The componentwise reciprocal of the input. |
rcp(Double)
Returns the reciprocal a double value.
Declaration
public static double rcp(double x)
Parameters
Type | Name | Description |
---|---|---|
Double | x | Input value. |
Returns
Type | Description |
---|---|
Double | The reciprocal of the input. |
rcp(double2)
Returns the componentwise reciprocal a double2 vector.
Declaration
public static double2 rcp(double2 x)
Parameters
Type | Name | Description |
---|---|---|
double2 | x | Input value. |
Returns
Type | Description |
---|---|
double2 | The componentwise reciprocal of the input. |
rcp(double3)
Returns the componentwise reciprocal a double3 vector.
Declaration
public static double3 rcp(double3 x)
Parameters
Type | Name | Description |
---|---|---|
double3 | x | Input value. |
Returns
Type | Description |
---|---|
double3 | The componentwise reciprocal of the input. |
rcp(double4)
Returns the componentwise reciprocal a double4 vector.
Declaration
public static double4 rcp(double4 x)
Parameters
Type | Name | Description |
---|---|---|
double4 | x | Input value. |
Returns
Type | Description |
---|---|
double4 | The componentwise reciprocal of the input. |