added ray.rs
This commit is contained in:
@@ -7,6 +7,7 @@ pub mod color;
|
|||||||
pub mod canvas;
|
pub mod canvas;
|
||||||
pub mod matrix;
|
pub mod matrix;
|
||||||
pub mod transformations;
|
pub mod transformations;
|
||||||
|
pub mod ray;
|
||||||
|
|
||||||
#[macro_export]
|
#[macro_export]
|
||||||
macro_rules! num_traits_cast {
|
macro_rules! num_traits_cast {
|
||||||
|
|||||||
11
features/src/ray.rs
Normal file
11
features/src/ray.rs
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
use crate::structs::Tuple;
|
||||||
|
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
pub fn time_to_work() {
|
||||||
|
assert_eq!(true, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user