| Crates.io | xyzvec |
| lib.rs | xyzvec |
| version | 0.1.14 |
| created_at | 2024-02-13 00:09:34.990625+00 |
| updated_at | 2025-05-24 21:39:07.608283+00 |
| description | Statically allocated fixed-size vectors for working in 2 and 3 dimensions |
| homepage | https://github.com/schism-pl/xyzvec |
| repository | https://github.com/schism-pl/xyzvec |
| max_upload_size | |
| id | 1137449 |
| size | 30,576 |
Statically allocated fixed-size vectors for working in 2 and 3 dimensions.
These vectors are parameterized over number representations, so the library
works equally well for floating-point and fixed-point arithmetic.
f32, f64, and fixed-point (using the fixed crate) have been extensively tested.
Other number representations may work, but have not been tested.
use xyzvec::XYZVec;
fn main(){
// define an initial position
let pos = XYZVec::new([1.0, 1.0, 1.0]);
// define a velocity factor
let v = XYZVec::new([2.0, 3.0, 4.0]);
// calculate new position (x + vt) after 2 seconds
let new_pos = pos + v.scale_by(2.0);
// prints (5.0, 7.0, 9.0)
println!("{}", new_pos);
}