| 111 | }; |
| 112 | |
| 113 | struct TriangleKernelFunc { |
| 114 | // https://en.wikipedia.org/wiki/Triangle_function |
| 115 | float operator()(float x) const { |
| 116 | x = std::abs(x); |
| 117 | return x < 1.0f ? 1.0f - x : 0.0f; |
| 118 | } |
| 119 | float Radius() const { return 1.f; } |
| 120 | }; |
| 121 | |
| 122 | struct KeysCubicKernelFunc { |
| 123 | // http://ieeexplore.ieee.org/document/1163711/ |
no outgoing calls
no test coverage detected