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