Definitive

The definitive vector and matrix library for Rust

```rust use definitive::Vector;

let a = Vector::new([2, 3, 1]); let b = Vector::new([8, 0, 0]);

let c = a + b * (a / b).magnitude(); ```

SIMD

Definitive provides the default feature simd which enables and disables hand written SIMD implementations of certain Vector and Matrix variants.

List of optimized impls

#![no_std]

This crate supports #![no_std] environments, provided the simd feature is not activated

Progress