diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-07-26 09:20:06 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-07-26 09:21:23 -0600 |
commit | 5f8ce1e256462a9addbe318966a70a4bc6399bad (patch) | |
tree | 148cc13bb63691d056d82424435df5347d809331 /libdimension/plane.c | |
parent | e683539695c720e559139ffd58e1786fbb1ea06c (diff) | |
download | dimension-5f8ce1e256462a9addbe318966a70a4bc6399bad.tar.xz |
Support multiple texture assignment properly.
Diffstat (limited to 'libdimension/plane.c')
-rw-r--r-- | libdimension/plane.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/libdimension/plane.c b/libdimension/plane.c index 8931cc7..e79e003 100644 --- a/libdimension/plane.c +++ b/libdimension/plane.c @@ -63,11 +63,8 @@ dmnsn_plane_intersection_fn(const dmnsn_object *plane, dmnsn_line line, if (den != 0.0) { double t = -dmnsn_vector_dot(line.x0, *normal)/den; if (t >= 0.0) { - intersection->ray = line; - intersection->t = t; - intersection->normal = *normal; - intersection->texture = plane->texture; - intersection->interior = plane->interior; + intersection->t = t; + intersection->normal = *normal; return true; } } |