blob: 9d46512cc53659278c312bc8e1afbf47759d1a14 [file] [log] [blame]
#ifndef _RIVE_CUBIC_WEIGHT_HPP_
#define _RIVE_CUBIC_WEIGHT_HPP_
#include "rive/generated/bones/cubic_weight_base.hpp"
#include <stdio.h>
namespace rive
{
class CubicWeight : public CubicWeightBase
{
private:
Vec2D m_InTranslation;
Vec2D m_OutTranslation;
public:
Vec2D& inTranslation() { return m_InTranslation; }
Vec2D& outTranslation() { return m_OutTranslation; }
};
} // namespace rive
#endif