About
This package provides utilities for designing and analyzing truss structures
Installation
Install through crates.io with:
cargo install trussx
Then add it to your ``Cargo.toml` with:
[]
= "0.1.1"
and add this to your root:
use trussx;
Usage
Here are some basic examples of usage
Building a truss
For example, you can build a truss with something like:
let x = new
let a = x.add_joint;
let b = x.add_joint;
let ab = x.add_edge;
Analyzing a truss
Coming soon!