Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/FastLED/FastLED
/ asin
Method
asin
src/fl/math/fixed_point/base.h:199–202 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
197
}
198
199
static FASTLED_FORCE_INLINE Derived asin(Derived x) {
200
constexpr Derived one(1.0f);
201
return atan2(x, sqrt(one - x * x));
202
}
203
204
static FASTLED_FORCE_INLINE Derived acos(Derived x) {
205
constexpr Derived one(1.0f);
Callers
nothing calls this directly
Calls
3
sqrt
Function · 0.85
asin
Function · 0.85
atan2
Function · 0.50
Tested by
no test coverage detected