asin
Returns the arcsine of a float value.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Method
- Namespace: Unity.Mathematics
- Assembly: UnityEngine.MathematicsModule
asin(float)
Returns the arcsine of a float value.
public static float asin(float x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float | The arcsine of the input. |
asin(float2)
Returns the componentwise arcsine of a float2 vector.
public static float2 asin(float2 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float2 | The componentwise arcsine of the input. |
asin(float3)
Returns the componentwise arcsine of a float3 vector.
public static float3 asin(float3 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float3 | The componentwise arcsine of the input. |
asin(float4)
Returns the componentwise arcsine of a float4 vector.
public static float4 asin(float4 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| float4 | The componentwise arcsine of the input. |
asin(double)
Returns the arcsine of a double value.
public static double asin(double x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double | The arcsine of the input. |
asin(double2)
Returns the componentwise arcsine of a double2 vector.
public static double2 asin(double2 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double2 | The componentwise arcsine of the input. |
asin(double3)
Returns the componentwise arcsine of a double3 vector.
public static double3 asin(double3 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double3 | The componentwise arcsine of the input. |
asin(double4)
Returns the componentwise arcsine of a double4 vector.
public static double4 asin(double4 x)
Parameters
Input value.
Returns
Type | Description |
|---|---|
| double4 | The componentwise arcsine of the input. |