From fa713fc72deeca6dfbe62b1945d4fe068f4f09dd Mon Sep 17 00:00:00 2001 From: Matthew Gordon Date: Sat, 29 Mar 2025 15:37:06 -0300 Subject: [PATCH] Add Affine3 struct --- src/math/mod.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/math/mod.rs b/src/math/mod.rs index 59bf9e9..184ee06 100644 --- a/src/math/mod.rs +++ b/src/math/mod.rs @@ -18,3 +18,6 @@ pub use mat3::*; mod mat4; pub use mat4::*; + +mod affine3; +pub use affine3::*;