diff options
author | Rosyid Haryadi <rosyid_haryadi@protonmail.com> | 2025-03-02 14:42:16 +0700 |
---|---|---|
committer | Rosyid Haryadi <rosyid_haryadi@protonmail.com> | 2025-03-02 14:42:16 +0700 |
commit | d0e7b955bc93423808990c3e86214340bbb28600 (patch) | |
tree | 5ab711094ec4dcb5c3c24a3861a05ed6b9084002 /src/main.rs | |
parent | af5cbc11486b5feed4605b9f9685ed55d9f3710a (diff) |
refactor renaming global to common
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index 02efc49..73888c2 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,12 +1,12 @@ mod view; -mod global; +mod common; mod calculus; mod camera; mod object; mod interval; use crate::calculus::calculus::Point3; -use crate::global::*; +use crate::common::*; use crate::camera::Camera; use crate::object::{HittableList, Sphere}; use crate::view::{render_viewer, View}; |