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

◆ sincos() [3/3]

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

Definition at line 536 of file math.h.

536 {
537 out_sin = static_cast<T>(fl::sinf(static_cast<float>(angle)));
538 out_cos = static_cast<T>(fl::cosf(static_cast<float>(angle)));
539}
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: