mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-27 03:53:24 +00:00
19 lines
241 B
C++
19 lines
241 B
C++
#ifndef IK_SOLVER_H
|
|
#define IK_SOLVER_H
|
|
|
|
#include "vector.h"
|
|
|
|
namespace vb01{
|
|
class Bone;
|
|
|
|
class IkSolver{
|
|
public:
|
|
IkSolver();
|
|
~IkSolver(){}
|
|
static void calculateFabrik(int, Bone**, Vector3[], Vector3);
|
|
private:
|
|
};
|
|
}
|
|
|
|
#endif
|