tri_ge_rust 0.1.0

Lightweight library for fast calculating and creating 2D and 3D shapes
Documentation
1
2
3
4
5
6
7
use tri_ge_rust::{three_d, two_d};


fn main() {
    let brick = three_d::Cuboid::new(30.0, 10.0, 5.0).unwrap();
    println!("Just create your projects better! You can use volume of my brick - here it is: {} cm³", brick.volume());
}