fts_gamemath is a collection of Rust crates that provide basic building blocks for 3d video game math
fts_units is a Rust library that enables compile-time type-safe mathematical operations using units of measurement.
no_compile
use fts_units::si_system::quantities::f32::*;
let d = Meters::new(10.0);
let t = Seconds::new(2.0);
let v = d / v; // units will be m·s⁻¹
let err = d + t; // compile error
This easily extends into complex operations.
```rust use ftsunits::sisystem::quantities::*;
fn calcballisticrange(speed: MetersPerSecond
let range = (speed*cos/gravity) * (speed*sin + (speed*speed*sin*sin + Dimensionless::<f32>::new(2.0)*gravity*initial_height).sqrt());
range
} ```
You can convert between units and cast between types.
```rust
let m = Meters::
let i : Meters
For additional features and examples refer to the fts_units documentation.
Coming soon!
Coming soon!
License: Unlicense OR MIT