From 958c4c3ee8208a31e03cc432efd90c6affc90edc Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Fri, 23 Jul 2021 20:25:53 -0700 Subject: [PATCH] prelude: add PointLight and PointLightBuilder. --- rtchallenge/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rtchallenge/src/lib.rs b/rtchallenge/src/lib.rs index c3b835f..f8cf121 100644 --- a/rtchallenge/src/lib.rs +++ b/rtchallenge/src/lib.rs @@ -40,6 +40,7 @@ pub use float::Float; pub mod prelude { pub use crate::{ + lights::{PointLight, PointLightBuilder}, materials::{Material, MaterialBuilder}, matrices::{identity, rotation_x, rotation_y, rotation_z, scaling, shearing, translation}, shapes::{plane, sphere, test_shape},