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