A minimal gmsh msh
file parser implemented using Rust.
This parser implements version 1 and 2 msh
file format specification.
The version 2, however, is incomplete, and parses only the most relevant fields.
```rust use {rutile::Mesh, std::fs::File};
fn main() -> std::io::Result<()> { let mut f = File::open("/home/pacce/meshes/disk.msh")?;
let mesh = Mesh::decode(&mut f)?;
println!("{:?}", mesh);
Ok(())
} ```