Initial commit. WIP blur implementation. Grid struct is tentatively ready. Model struct is in its nascency.

This commit is contained in:
mindv0rtex
2021-02-24 22:26:37 -05:00
commit e21a61250e
9 changed files with 752 additions and 0 deletions

8
src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
mod blur;
mod grid;
mod model;
fn main() {
let boxes = blur::boxes_for_gaussian::<3>(2.5);
println!("boxes: {:?}", boxes);
}