-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamera.h
38 lines (33 loc) · 1.55 KB
/
camera.h
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
31
32
33
34
35
36
37
38
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* camera.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: kemizuki <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/25 04:35:55 by kemizuki #+# #+# */
/* Updated: 2023/12/25 04:35:59 by kemizuki ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef CAMERA_H
# define CAMERA_H
# include "scene.h"
# include "ray.h"
# include "vector.h"
/*
* `t_camera` is a struct that represents a camera in a 3D space.
* `origin` is the origin of the camera.
* `upper_left_corner` is the upper left corner of the viewport.
* `viewport_horizontal` is the vector pointing right of the viewport.
* `viewport_vertical` is the vector pointing downward of the viewport.
*/
typedef struct s_camera
{
t_vec3 origin;
t_vec3 upper_left_corner;
t_vec3 viewport_horizontal;
t_vec3 viewport_vertical;
} t_camera;
t_camera new_camera(t_camera_conf conf, t_vec3 vup, double aspect_ratio);
t_ray camera_get_ray(t_camera camera, double x, double y);
#endif