Linear algebra library for Rust.
Go to file
Sébastien Crozet 7de844b46a Moved some files + use rustdoc_ng to generate the documenatiton.
Trait failes are merged in three files:
    * operations.rs - for low-level matrix/vector operations
    * geometry.rs   - for operations with a clear, broadly known geometric meaning.
    * structure.rs  - for operations to access/alter the object inner structures.

Specialisations are moved to the `spec` folder.
2013-09-22 11:05:15 +02:00
src Moved some files + use rustdoc_ng to generate the documenatiton. 2013-09-22 11:05:15 +02:00
.gitignore Add type aliases. 2013-07-22 13:44:08 +02:00
LICENSE Initial commit. 2013-05-14 11:34:28 +00:00
Makefile Moved some files + use rustdoc_ng to generate the documenatiton. 2013-09-22 11:05:15 +02:00
README.md "Remove" the RMul and LMul trait. Use the regular Mul trait. 2013-09-15 11:18:06 +02:00

README.md

nalgebra

nalgebra is a n-dimensional linear algebra library written with the rust programming language.

It is mainly focused on features needed for real-time physics. It should be usable for graphics too.

Compilation

You will need the last rust compiler from the master branch. If you encounter problems, make sure you have the last version before creating an issue.

git clone git://github.com/sebcrozet/nalgebra.git
cd nalgebra
make

Design note

nalgebra is mostly written with non-idiomatic rust code. This is mostly because of limitations of the trait system not allowing (easy) multiple overloading. Those overloading problems ares worked around by this hack (section What if I want overloading).