asin()
Math / TrigonometryDescription
The inverse of sin, returns the arc sine of a value.
Syntax
float asin(float x)
Parameters
| Name | Type | Description |
|---|---|---|
| x | float | value between -1 and 1 |
Returns
floatRelated
Under the Hood
From Processing.h:
static float asin(float x) { return std::asin(x); }
static float asin(float x) { return std::asin(x);