blob: 1737f189c541756882af3fd15ceb9de94c6520a5 [file] [log] [blame]
#ifndef _RIVE_CUBIC_INTERPOLATOR_HPP_
#define _RIVE_CUBIC_INTERPOLATOR_HPP_
#include "rive/generated/animation/cubic_interpolator_base.hpp"
#include "rive/animation/cubic_interpolator_solver.hpp"
namespace rive
{
class CubicInterpolator : public CubicInterpolatorBase
{
public:
StatusCode onAddedDirty(CoreContext* context) override;
void initialize() override;
protected:
CubicInterpolatorSolver m_solver;
};
} // namespace rive
#endif