From 1188cba87852d775baac9d353fe71ec261b1a7b5 Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Wed, 10 Jul 2013 20:14:11 +1000 Subject: [PATCH] Fix build error --- src/geom/plane.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/geom/plane.rs b/src/geom/plane.rs index fa78cf9..bdc2734 100644 --- a/src/geom/plane.rs +++ b/src/geom/plane.rs @@ -115,7 +115,7 @@ impl Plane3 { } else { // The end-point of the ray is at the three-plane intersection between // `self`, `other`, and a tempory plane positioned at the origin - do Plane3::from_nd(ray_dir.clone(), zero!(T)).intersection_3pl(self, other).map |&ray_pos| { + do Plane3::from_nd(ray_dir.clone(), zero!(T)).intersection_3pl(self, other).map |ray_pos| { Ray3 { pos: ray_pos.clone(), dir: ray_dir.clone(),