forked from gm-infinite/miniRT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlight.h
More file actions
30 lines (25 loc) · 1.09 KB
/
Copy pathlight.h
File metadata and controls
30 lines (25 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* light.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kuzyilma <kuzyilma@student.42istanbul.c +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/08/16 15:14:06 by kuzyilma #+# #+# */
/* Updated: 2025/08/23 12:37:28 by kuzyilma ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef LIGHT_H
# define LIGHT_H
# include "objects.h"
typedef struct s_light
{
t_point position;
double intensity;
} t_light;
typedef struct s_ambient_light
{
double intensity;
t_color color;
} t_ambient_light;
#endif