mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 15:36:14 +03:00
16 lines
303 B
C++
16 lines
303 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
|