joseluis / vecmat-rs

Low-dimensional vector and matrix structures and common operations for them

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vecmat

Crates.io Docs.rs Travis CI Appveyor Codecov.io License

Low-dimensional vector algebra with min_const_generics support.

Rust 1.51 or higher requred because of min_const_generics feature.

Cargo features

  • std - use std. Crate could be used with no_std.
  • rand - distributions for generating random entities.
  • approx - approximate comparison.

All these features are enabled by default.

Documentation

Content

Primitives

  • Vector.
  • Matrix.
  • Complex and Quaternion.

Transformations

  • Shift.
  • Linear.
  • Affine.
  • Rotation2 and Rotation3.
  • Moebius (over Complex and Quaternion).

Functionality

Implemented

  • min_const_generics support.
  • Vector and matrix arithmetcs (+, -, *, /, %).
  • Integer vectors and matrices (including div_floor, mod_floor and bitwise).
  • Boolean vectors and matrices (comparison, all, any).
  • Support for non-Copy (and non-Clone) elements.
  • into_iter() for vectors (and map, zip, unzip, fold, scan, etc.).
  • dot, cross and outer products for vectors.
  • Matrix-matrix and matrix-vector multiplication.
  • Square matrix determinant and inversion.

Planning

  • Eigen- and singular decomposition for matrices.
  • Rotation4.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Low-dimensional vector and matrix structures and common operations for them

License:Apache License 2.0


Languages

Language:Rust 100.0%