Expand description
A simple 2D linear algebra library suitable for no_std
§Features
std
: (enabled by default) enable use of the standard library. It must be disabled forno_std
crates.libm
: use libm as an alternative core math library. This is required for some methods (i.e.magnitude
) to be available onno_std
serde
: implementations ofSerialize
andDeserialize
from serdeapprox_v05
: implementations of approx v0.5 traits
Structs§
- Vector type, generic over its scalar type
T
Type Aliases§
- Alias for
Vector<i32>
- Alias for
Vector<usize>
- Alias for
Vector<f32>