diff --git a/src/fdf_rotations.c b/src/fdf_rotations.c index 0ddbe5e..be1426d 100644 --- a/src/fdf_rotations.c +++ b/src/fdf_rotations.c @@ -1,6 +1,6 @@ #include "fdf.h" -void rotate_x(t_point **points, double angle, int size) +void rotate_x(t_point_3d **points, double angle, int size) { int i; double previous_y; @@ -14,7 +14,7 @@ void rotate_x(t_point **points, double angle, int size) i++; } } -void rotate_y(t_point **points, double angle, int size) +void rotate_y(t_point_3d **points, double angle, int size) { int i; double previous_x; @@ -28,7 +28,7 @@ void rotate_y(t_point **points, double angle, int size) i++; } } -void rotate_z(t_point **points, double angle, int size) +void rotate_z(t_point_3d **points, double angle, int size) { int i; double previous_x;