15 lines
290 B
C++
15 lines
290 B
C++
#pragma once
|
|
|
|
#include <reanimated/CSS/common/definitions.h>
|
|
#include <reanimated/CSS/utils/algorithms.h>
|
|
|
|
#include <vector>
|
|
|
|
namespace reanimated::css {
|
|
|
|
EasingFunction steps(
|
|
const std::vector<double> &pointsX,
|
|
const std::vector<double> &pointsY);
|
|
|
|
} // namespace reanimated::css
|