31 lines
460B

  1. #ifndef LICKS_IK_H
  2. #define LICKS_IK_H
  3. #include "linalg.h"
  4. #define NUM_LEGS 6
  5. typedef struct {
  6. vector3d leg_offset[NUM_LEGS];
  7. } bot_configuration;
  8. typedef struct {
  9. vector3d position;
  10. double ik_angle[3];
  11. } leg;
  12. typedef struct {
  13. vector3d world_position;
  14. vector3d world_orientation;
  15. vector3d body_position;
  16. vector3d body_orientation;
  17. leg leg[NUM_LEGS];
  18. } bot;
  19. extern void ik(bot *);
  20. extern bot_configuration conf;
  21. #endif