RT
t_cluster.h
Go to the documentation of this file.
1 /* ************************************************************************** */
2 /* */
3 /* ::: :::::::: */
4 /* t_cluster.h :+: :+: :+: */
5 /* +:+ +:+ +:+ */
6 /* By: sklepper <sklepper@student.42.fr> +#+ +:+ +#+ */
7 /* +#+#+#+#+#+ +#+ */
8 /* Created: 2019/07/01 03:50:44 by sklepper #+# #+# */
9 /* Updated: 2019/07/15 19:23:16 by sklepper ### ########.fr */
10 /* */
11 /* ************************************************************************** */
12 
13 #ifndef T_CLUSTER_H
14 # define T_CLUSTER_H
15 
16 # include "rtstruct.h"
17 
18 typedef struct s_cluster
19 {
20  int type;
21  int nb_obj;
22  float size_cluster;
26 } t_cluster;
27 
28 #endif
s_vec3
Definition: rtstruct.h:30
s_cluster::nb_obj
int nb_obj
Definition: t_cluster.h:21
t_cluster
struct s_cluster t_cluster
s_cluster::size_cluster
float size_cluster
Definition: t_cluster.h:22
s_cluster::radius_spheres
float radius_spheres
Definition: t_cluster.h:23
s_cluster
Definition: t_cluster.h:18
rtstruct.h
s_cluster::type
int type
Definition: t_cluster.h:20
s_cluster::pos
t_pt3 pos
Definition: t_cluster.h:24
s_cluster::n
t_vec3 n
Definition: t_cluster.h:25