# Perpendicular
[](https://docs.rs/perpendicular)
[](https://crates.io/crates/perpendicular)
[](https://github.com/jonay2000/perpendicular/actions/workflows/ci.yml)
Perpendicular is a simple general purpose n-dimensional vector library.
This is not a general purpose linear algebra library. Instead, it's designed
as a tool for simple physics simulations which just need to store some coordinates
or velocities together.
```rust
use perpendicular::Vector;
let v1 = Vector::new((1, 2, 3));
let v2 = Vector::new((3, 4, 5));
let v3 = Vector::new((5, 6, 7));
println!("{}", v1 + v2 * v3);
```
# License
This code is licensed under the [Apache 2.0 license](./LICENSE)