pracrt.h
1 /* ************************************************************************** */ 2 /* */ 3 /* ::: :::::::: */ 4 /* pracrt.h :+: :+: :+: */ 5 /* +:+ +:+ +:+ */ 6 /* By: gychoi <gychoi@student.42seoul.kr> +#+ +:+ +#+ */ 7 /* +#+#+#+#+#+ +#+ */ 8 /* Created: 2023/05/24 17:41:37 by gychoi #+# #+# */ 9 /* Updated: 2023/05/25 20:31:18 by gychoi ### ########.fr */ 10 /* */ 11 /* ************************************************************************** */ 12 13 #ifndef PRACRT_H 14 # define PRACRT_H 15 16 # define IMAGE_WIDTH 800 17 # define IMAGE_HEIGHT 600 18 # define ASPECT_RATIO IMAGE_WIDTH / IMAGE_HEIGHT 19 # define TRUE 1 20 # define FALSE 0 21 # define EPSILON 1e-6 22 23 typedef int t_bool; 24 25 #endif