diff options
author | Sergey Lapin <slapinid@gmail.com> | 2016-03-29 22:52:31 +0300 |
---|---|---|
committer | Sergey Lapin <slapinid@gmail.com> | 2016-03-31 12:43:00 +0300 |
commit | 8d7a94389aeefb805fb2840c6a69af95f563f89b (patch) | |
tree | ef7543f624473bac3c4ad1aa2e5af9d6746e6ca4 /modules/ik/config.py | |
parent | 15d1fca0614ad87fd16fa7532e4db867b342d00e (diff) |
InverseKinematics node, basic features
I don't already know how the fuck it works, but it is.
A bit slow currently, but hope to improve it soon.
The current limitations:
1. No constraints. At all.
2. Used simplest CCD algorithm, I just can't believe
in jacobian construction from code.
3. Slow to get to target.
Diffstat (limited to 'modules/ik/config.py')
-rw-r--r-- | modules/ik/config.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/ik/config.py b/modules/ik/config.py new file mode 100644 index 0000000000..f9bd7da08d --- /dev/null +++ b/modules/ik/config.py @@ -0,0 +1,11 @@ + + +def can_build(platform): + return True + + +def configure(env): + pass + + + |