IKConstraint.pkg 343 B

12345678910111213
  1. $#include "IK/IKConstraint.h"
  2. class IKConstraint : public Component
  3. {
  4. float GetStiffness() const;
  5. void SetStiffness(float stiffness);
  6. float GetStretchiness() const;
  7. void SetStretchiness(float stretchiness);
  8. const Vector2& GetLengthConstraints() const;
  9. void SetLengthConstraints(const Vector2& lengthConstraints);
  10. };