| 61 | namespace detail |
| 62 | { |
| 63 | inline float sinc(const float x) |
| 64 | { |
| 65 | return (x == 0.0f) ? 1.0f : std::sin(x * static_cast<float>(LAB_PI)) / (x * static_cast<float>(LAB_PI)); |
| 66 | } |
| 67 | |
| 68 | inline float gen_cosine_1(const float max_index, const uint32_t idx, const float alpha, const float beta) |
| 69 | { |
no outgoing calls
no test coverage detected