#pragma once #include #include #include namespace reanimated::css { double interpolateValue( double x, std::size_t leftIdx, const std::vector &arrX, const std::vector &arrY); EasingFunction linear( const std::vector &pointsX, const std::vector &pointsY); } // namespace reanimated::css