blob: e9b27dc0f51cf77284d6a9587ce35bc684cf553b [file] [log] [blame] [edit]
#ifndef _RIVE_SCALE_CONSTRAINT_HPP_
#define _RIVE_SCALE_CONSTRAINT_HPP_
#include "rive/generated/constraints/scale_constraint_base.hpp"
#include "rive/math/transform_components.hpp"
#include <stdio.h>
namespace rive
{
class ScaleConstraint : public ScaleConstraintBase
{
private:
TransformComponents m_ComponentsA;
TransformComponents m_ComponentsB;
protected:
bool requiresTarget() override { return false; }
public:
void constrain(TransformComponent* component) override;
};
} // namespace rive
#endif