Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

63 lines
1.3KB

  1. #include <math.h>
  2. #include "ik.h"
  3. bot_configuration conf = {
  4. {
  5. { 80, 40, 0},
  6. { 0, 60, 0},
  7. {-80, 40, 0},
  8. {-80,-40, 0},
  9. { 0,-60, 0},
  10. { 80,-40, 0}
  11. }
  12. };
  13. void
  14. ik(bot *b) {
  15. int i;
  16. vector3d v;
  17. double r;
  18. double r2z2,sr2z2;
  19. double acos_1,acos_2;
  20. const double c=20;
  21. const double f=80;
  22. const double t=130;
  23. const double f2=f*f;
  24. const double t2=t*t;
  25. for(i=0;i<NUM_LEGS;i++) {
  26. sub_vector3d(&b->leg[i].position,&b->body_position,&v);
  27. rot_x_vector3d(&v,b->body_orientation.x,&v);
  28. rot_y_vector3d(&v,b->body_orientation.y,&v);
  29. rot_z_vector3d(&v,b->body_orientation.z,&v);
  30. sub_vector3d(&v,&conf.leg_offset[i],&v);
  31. if(i<NUM_LEGS/2) {
  32. b->leg[i].ik_angle[0]=-atan2(v.x,v.y);
  33. } else {
  34. b->leg[i].ik_angle[0]=atan2(v.x,-v.y);
  35. }
  36. r=sqrt(v.x*v.x+v.y*v.y)-c;
  37. r2z2=r*r+v.z*v.z;
  38. sr2z2=sqrt(r2z2);
  39. acos_1=(r2z2+f2-t2)/(2*f*sr2z2);
  40. acos_2=(r2z2-f2-t2)/(2*f*t);
  41. if(i<NUM_LEGS/2) {
  42. b->leg[i].ik_angle[1]=M_PI/2 - (acos(acos_1) + atan2(r,v.z));
  43. b->leg[i].ik_angle[2]=-acos(acos_2)+M_PI/2;
  44. } else {
  45. b->leg[i].ik_angle[1]=-M_PI/2 + (acos(acos_1) + atan2(r,v.z));
  46. b->leg[i].ik_angle[2]=acos(acos_2)-M_PI/2;
  47. }
  48. }
  49. }