added transformations

This commit is contained in:
Jon Janzen
2021-06-13 09:58:44 -06:00
parent 6fd0e7608d
commit 909aa52dd6
2 changed files with 9 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ pub mod structs;
pub mod color; pub mod color;
pub mod canvas; pub mod canvas;
pub mod matrix; pub mod matrix;
pub mod transformations;
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {

View File

@@ -0,0 +1,8 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}