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