diff --git a/inc/types.h b/inc/types.h index 049ac52..3e1d8b5 100644 --- a/inc/types.h +++ b/inc/types.h @@ -3,10 +3,10 @@ /* :::::::: */ /* types.h :+: :+: */ /* +:+ */ -/* By: qmennen +#+ */ +/* By: whaffman +#+ */ /* +#+ */ /* Created: 2025/04/15 15:52:44 by qmennen #+# #+# */ -/* Updated: 2025/04/25 10:01:28 by whaffman ######## odam.nl */ +/* Updated: 2025/05/02 14:38:53 by whaffman ######## odam.nl */ /* */ /* ************************************************************************** */ @@ -30,6 +30,12 @@ typedef struct s_vec2 float y; } t_vec2; +typedef struct s_vec2_int +{ + int x; + int y; +} t_vec2_int; + typedef struct s_vec2_line { t_vec2 support;