rgmsh 0.1.2

Unofficial, opinionated Rust bindings to the Gmsh API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Generate Rust API definitions. 

enum ApiCategory { 
    Model, 
    Mesh, 
}

struct Func<T, F> { 
    inputs: T, 
    outputs: F, 
}


fn main() { 

}