Crate aline

source ·
Expand description

A simple 2D linear algebra library suitable for no_std

Features

  • std: (enabled by default) enable use of the standard library. Must be disabled for no_std crates.
  • libm: Alternative math library, that is required for some operations to compile on no_std
  • serde: implementations of Serialize and Deserialize from serde
  • approx_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<f32>