From 9d44f7ab04e6f6979e0eebc24f8fb439a23a3865 Mon Sep 17 00:00:00 2001 From: Sakarias Johansson Date: Thu, 12 Jan 2023 22:07:57 +0100 Subject: =?UTF-8?q?=F0=9F=A7=B9=20Minor=20cleanup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Made the traits into supertraits so we don't have to mention Send and Sync everywhere. - Add methods for Vec3 that modifies the existing Vector. Can be used to make less copies. --- racer-tracer/src/geometry.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'racer-tracer/src/geometry.rs') diff --git a/racer-tracer/src/geometry.rs b/racer-tracer/src/geometry.rs index 1cc7e28..78e0259 100644 --- a/racer-tracer/src/geometry.rs +++ b/racer-tracer/src/geometry.rs @@ -11,11 +11,11 @@ pub struct HitRecord { pub normal: Vec3, pub t: f64, pub front_face: bool, - pub material: Arc>, + pub material: Arc>, } impl HitRecord { - fn new(point: Vec3, t: f64, material: Arc>) -> Self { + fn new(point: Vec3, t: f64, material: Arc>) -> Self { Self { point, normal: Vec3::default(), @@ -35,7 +35,7 @@ impl HitRecord { } } -pub trait Hittable { +pub trait Hittable: Send + Sync { //pub trait Hittable { fn hit(&self, ray: &Ray, t_min: f64, t_max: f64) -> Option; } -- cgit v1.2.3