This package provides utilities for designing and analyzing truss structures
Here are some basic examples of usage
For example, you can build a truss with something like:
rust
fn main() {
let x = trussx::Truss::new();
let a = x.add_joint(0.0, 0.0, 0.0);
let b = x.add_joint(3.0, 0.0, 0.0);
let ab = x.add_edge(a, b);
}
Coming soon!