Go to file
2015-12-06 19:53:23 +11:00
benches bench: replace iter::range with range syntax 2015-03-18 18:21:39 +01:00
src Clarify comments about the kind of matrices that are returned by the constructors 2015-12-06 19:53:23 +11:00
tests Move element-wise operations into Array1 trait 2015-11-14 12:17:03 +11:00
.gitignore Build benchmarks on travis 2014-08-11 16:28:50 +10:00
.travis.yml Only upload docs when on stable branch 2015-11-11 11:47:19 +11:00
Cargo.toml Bump version to 0.5.0 2015-11-20 08:25:42 +11:00
LICENSE Add license/copyright notices to source files 2013-06-01 08:01:01 +10:00
README.md Remove collision types and traits from the library 2015-11-01 13:42:58 +11:00

cgmath-rs

Build Status Version License Downloads

Documentation

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.

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 useful for most computer graphics applications. This design decision was made in order to simplify the implementation (Rust cannot paramerise 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.