blob: fc758556c90b5eeeec98714d27141e8d67b38b6c [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