summaryrefslogtreecommitdiff
path: root/src/modules/ray/ray_object_point.h
blob: 5685fdc0a9f0048e25167c92b6e38cc2a38e69a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _RAY_OBJECT_POINT_H
#define _RAY_OBJECT_POINT_H

#include "ray_3f.h"
#include "ray_object_type.h"
#include "ray_surface.h"


typedef struct ray_object_point_t {
	ray_object_type_t	type;
	ray_surface_t		surface;
	ray_3f_t		center;
} ray_object_point_t;

#endif
© All Rights Reserved