diff options
author | Julian T <julian@jtle.dk> | 2020-07-25 00:09:53 +0200 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2020-07-25 00:09:53 +0200 |
commit | dbba33fcd07c9e81e3ca9bc4f5e8185d364fb792 (patch) | |
tree | 7e3b570853a18c7f7670c870f8bc6a09bb287a4f /ray.h | |
parent | ef684a7d2ad2934af872cb19a413c95d1005c4b6 (diff) |
Further experimentation with pathtracingpath_tracing
Probably starting over in cpp
Diffstat (limited to 'ray.h')
-rw-r--r-- | ray.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,6 +20,6 @@ COORD_T ray_intersect_sphere(sphere_t *s, ray_t *ray, bool skip_dist); COORD_T ray_intersect_plane(plane_t *p, ray_t *ray, bool skip_dist); object_t *ray_cast(space_t *s, ray_t *r, COORD_T *dist_ret, bool chk, COORD_T chk_dist); -void ray_trace(space_t *s, unsigned int x, unsigned int y, color_t *c, void *seed); +void path_trace(space_t *s, unsigned int x, unsigned int y, color_t *c, void *seed); #endif |