FastLED 3.9.15
Loading...
Searching...
No Matches

◆ sincos() [1/3]

template<typename T>
enable_if< is_integral< T >::value >::type fl::sincos ( T angle,
float & out_sin,
float & out_cos )
inline

Definition at line 544 of file math.h.

544 {
545 out_sin = fl::sinf(static_cast<float>(angle));
546 out_cos = fl::cosf(static_cast<float>(angle));
547}
float sinf(float value) FL_NOEXCEPT
Definition math.h:352
float cosf(float value) FL_NOEXCEPT
Definition math.h:358

References cosf(), FL_NOEXCEPT, and sinf().

+ Here is the call graph for this function: