added ray.rs

This commit is contained in:
Jon Janzen
2022-03-11 18:15:39 -07:00
parent 05c17b0179
commit f2056615be
2 changed files with 12 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ pub mod color;
pub mod canvas;
pub mod matrix;
pub mod transformations;
pub mod ray;
#[macro_export]
macro_rules! num_traits_cast {

11
features/src/ray.rs Normal file
View File

@@ -0,0 +1,11 @@
use crate::structs::Tuple;
#[cfg(test)]
mod tests {
#[test]
pub fn time_to_work() {
assert_eq!(true, true);
}
}