diff options
author | Julian T <julian@jtle.dk> | 2021-02-02 16:07:16 +0100 |
---|---|---|
committer | Julian T <julian@jtle.dk> | 2021-02-02 16:07:38 +0100 |
commit | d79d5d18c8281cce1e782892e5f85680906481dd (patch) | |
tree | 3429b142fb76c4999afcc62033b7c4fe9f2ff980 /src/core/mod.rs | |
parent | df6a266e5823a7fc4cca3060ec86d35f2125cd0d (diff) |
Add matrix and transform implementation
Diffstat (limited to 'src/core/mod.rs')
-rw-r--r-- | src/core/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/mod.rs b/src/core/mod.rs index 938a16e..7885b9e 100644 --- a/src/core/mod.rs +++ b/src/core/mod.rs @@ -2,6 +2,8 @@ pub mod vector2; pub mod vector3; pub mod bound; pub mod spectrum; +pub mod transform; +pub mod matrix4x4; mod ray; pub use vector2::{Vector2i, Vector2f}; |