stroemung 0.1.2

A Computational Fluid Dynamics (CFD) simulator in Rust
Documentation
1
2
3
4
5
6
7
8
use clap::Parser;
use stroemung::window_conf;

#[macroquad::main(window_conf)]
async fn main() {
    let args = stroemung::args::Args::parse();
    stroemung::run(args).await;
}