From 45fafbcd4b41a5388ece377c4e051b5846407288 Mon Sep 17 00:00:00 2001 From: lamp Date: Sun, 21 Jan 2024 17:03:07 +0000 Subject: fmt and tidy --- src/material/diffuse_light.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/material/diffuse_light.rs') diff --git a/src/material/diffuse_light.rs b/src/material/diffuse_light.rs index fecbcff..4feca3b 100644 --- a/src/material/diffuse_light.rs +++ b/src/material/diffuse_light.rs @@ -1,10 +1,10 @@ use std::sync::Arc; use super::Material; -use crate::{hittable::HitRecord, texture::Texture, vec3::Point3}; -use crate::vec3::Color; -use crate::texture::SolidColor; use crate::ray::Ray; +use crate::texture::SolidColor; +use crate::vec3::Color; +use crate::{hittable::HitRecord, texture::Texture, vec3::Point3}; pub struct DiffuseLight { emit: Arc, -- cgit v1.2.3