Go to file
Brendan Zabarauskas 89c0da2a9e Merge pull request #406 from mathstuf/iter-sum-impl
iter traits: impl `iter::{Sum, Product}`
2017-04-26 01:25:30 +10:00
benches Add newline at end of file 2017-03-12 15:59:06 +08:00
src iter traits: impl iter::{Sum, Product} 2017-04-25 11:01:18 -04:00
tests iter traits: impl iter::{Sum, Product} 2017-04-25 11:01:18 -04:00
.gitignore Build benchmarks on travis 2014-08-11 16:28:50 +10:00
.travis.yml Improve ci build parallelization 2017-04-16 17:57:20 +10:00
Cargo.toml Update serialization to serde v1.0 2017-04-22 18:31:50 -04:00
CHANGELOG.md Update serialization to serde v1.0 2017-04-22 18:31:50 -04:00
LICENSE Add license/copyright notices to source files 2013-06-01 08:01:01 +10:00
README.md Add Gitter badge 2016-09-14 23:00:44 +10:00

cgmath-rs

Build Status Documentation Version License Downloads Gitter

A linear algebra and mathematics library for computer graphics.

The library provides:

  • vectors: Vector2, Vector3, Vector4
  • square matrices: Matrix2, Matrix3, Matrix4
  • a quaternion type: Quaternion
  • rotation matrices: Basis2, Basis3
  • angle units: Rad, Deg
  • points: Point2, Point3
  • perspective projections: Perspective, PerspectiveFov, Ortho
  • spatial transformations: AffineMatrix3, Transform3

Not all of the functionality has been implemented yet, and the existing code is not fully covered by the testsuite. If you encounter any mistakes or omissions please let me know by posting an issue, or even better: send me a pull request with a fix.

Conventions

cgmath interprets its vectors as column matrices (also known as "column vectors"), meaning when transforming a vector with a matrix, the matrix goes on the left. This is reflected in the fact that cgmath implements the multiplication operator for Matrix * Vector, but not Vector * Matrix.

Limitations

cgmath is not an n-dimensional library and is aimed at computer graphics applications rather than general linear algebra. It only offers the 2, 3, and 4 dimensional structures that are more than enough for most computer graphics applications. This design decision was made in order to simplify the implementation (Rust cannot parameterize over constants at compile time), and to make dimension-specific optimisations easier in the future.

Contributing

Pull requests are most welcome, especially in the realm of performance enhancements and fixing any mistakes I may have made along the way. Unit tests and benchmarks are also required, so help on that front would be most appreciated.

Support

Contact bjz on irc.mozilla.org #rust and #rust-gamedev, or post an issue on Github.