mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-01 03:23:52 +00:00
8 lines
297 B
C++
8 lines
297 B
C++
#ifndef INVERSE_KINEMATICSEXAMPLE_H
|
|
#define INVERSE_KINEMATICSEXAMPLE_H
|
|
|
|
enum Method {IK_JACOB_TRANS=0, IK_PURE_PSEUDO, IK_DLS, IK_SDLS , IK_DLS_SVD};
|
|
|
|
class CommonExampleInterface* InverseKinematicsExampleCreateFunc(struct CommonExampleOptions& options);
|
|
|
|
#endif //INVERSE_KINEMATICSEXAMPLE_H
|