You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
1.7KB

  1. #include <math.h>
  2. #include "linalg.h"
  3. void
  4. copy_vector3d(vector3d *v1, vector3d *v2) {
  5. v2->x=v1->x;
  6. v2->y=v1->y;
  7. v2->z=v1->z;
  8. }
  9. void
  10. add_vector3d(vector3d *v1, vector3d *v2, vector3d *result) {
  11. result->x = v1->x + v2->x;
  12. result->y = v1->y + v2->y;
  13. result->z = v1->z + v2->z;
  14. }
  15. void
  16. sub_vector3d(vector3d *v1, vector3d *v2, vector3d *result) {
  17. result->x = v1->x - v2->x;
  18. result->y = v1->y - v2->y;
  19. result->z = v1->z - v2->z;
  20. }
  21. void
  22. scalar_mult_vector3d(vector3d *v1, double s, vector3d *result) {
  23. result->x = v1->x * s;
  24. result->y = v1->y * s;
  25. result->z = v1->z * s;
  26. }
  27. void
  28. cross_mult_vector3d(vector3d *v1, vector3d *v2, vector3d *result) {
  29. vector3d t;
  30. t.x = v1->y * v2->z - v1->z * v2->y;
  31. t.y = v1->z * v2->x - v1->x * v2->z;
  32. t.z = v1->x * v2->y - v1->y * v2->z;
  33. copy_vector3d(&t,result);
  34. }
  35. void
  36. matrix_mult_vector3d(vector3d *v1, matrix3x3d *M, vector3d *result) {
  37. vector3d t;
  38. t.x = v1->x * M->x[0] + v1->y * M->y[0] + v1->z * M->z[0];
  39. t.y = v1->x * M->x[1] + v1->y * M->y[1] + v1->z * M->z[1];
  40. t.z = v1->x * M->x[2] + v1->y * M->y[2] + v1->z * M->z[2];
  41. copy_vector3d(&t,result);
  42. }
  43. void
  44. rot_x_vector3d(vector3d *v, double a, vector3d *result) {
  45. vector3d t;
  46. t.x = v->x;
  47. t.y = v->y * cos(a) + v->z * sin(a);
  48. t.z =-v->y * sin(a) + v->z * cos(a);
  49. copy_vector3d(&t,result);
  50. }
  51. void
  52. rot_y_vector3d(vector3d *v, double a, vector3d *result) {
  53. vector3d t;
  54. t.x = v->x * cos(a) - v->z * sin(a);
  55. t.y = v->y;
  56. t.z = v->x * sin(a) + v->z * cos(a);
  57. copy_vector3d(&t, result);
  58. }
  59. void
  60. rot_z_vector3d(vector3d *v, double a, vector3d *result) {
  61. vector3d t;
  62. t.x = v->x * cos(a) + v->y * sin(a);
  63. t.y =-v->x * sin(a) + v->y * cos(a);
  64. t.z = v->z;
  65. copy_vector3d(&t, result);
  66. }