18 lines
245 B
Rust
18 lines
245 B
Rust
#[macro_use]
|
|
extern crate approx;
|
|
extern crate num_traits;
|
|
|
|
pub mod structs;
|
|
pub mod color;
|
|
pub mod canvas;
|
|
pub mod matrix;
|
|
pub mod transformations;
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
#[test]
|
|
fn it_works() {
|
|
assert_eq!(2 + 2, 4);
|
|
}
|
|
}
|