2014-01-14 16:52:18 +08:00
|
|
|
# nalgebra
|
|
|
|
|
2014-10-13 02:21:06 +08:00
|
|
|
**nalgebra** is a low-dimensional linear algebra library written for Rust targeting:
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-10-13 02:21:06 +08:00
|
|
|
* general-purpose linear algebra (still lacks a lot of features…).
|
2013-10-06 22:54:09 +08:00
|
|
|
* real time computer graphics.
|
|
|
|
* real time computer physics.
|
|
|
|
|
2014-06-10 03:48:24 +08:00
|
|
|
An on-line version of this documentation is available [here](http://nalgebra.org).
|
2013-10-08 08:10:35 +08:00
|
|
|
|
2013-10-07 01:32:31 +08:00
|
|
|
## Using **nalgebra**
|
2014-10-13 14:46:39 +08:00
|
|
|
All the functionality of **nalgebra** is grouped in one place: the root module `nalgebra::`.
|
2013-10-14 17:22:38 +08:00
|
|
|
This module re-exports everything and includes free functions for all traits methods doing
|
|
|
|
out-of-place modifications.
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-01-14 16:52:18 +08:00
|
|
|
* You can import the whole prelude using:
|
2013-10-06 22:54:09 +08:00
|
|
|
|
2014-10-13 02:21:06 +08:00
|
|
|
```.ignore
|
|
|
|
use nalgebra::*;
|
2013-10-06 22:54:09 +08:00
|
|
|
```
|
|
|
|
|
2014-01-14 16:52:18 +08:00
|
|
|
The preferred way to use **nalgebra** is to import types and traits explicitly, and call
|
2013-10-14 17:22:38 +08:00
|
|
|
free-functions using the `na::` prefix:
|
|
|
|
|
|
|
|
```.rust
|
2014-10-13 02:21:06 +08:00
|
|
|
extern crate "nalgebra" as na;
|
|
|
|
use na::{Vec3, Rot3, Rotation};
|
2013-10-14 17:22:38 +08:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let a = Vec3::new(1.0f64, 1.0, 1.0);
|
|
|
|
let mut b = Rot3::new(na::zero());
|
|
|
|
|
|
|
|
b.append_rotation(&a);
|
|
|
|
|
2014-01-14 16:52:18 +08:00
|
|
|
assert!(na::approx_eq(&na::rotation(&b), &a));
|
2013-10-14 17:22:38 +08:00
|
|
|
}
|
|
|
|
```
|
2013-06-13 22:06:05 +08:00
|
|
|
|
2013-09-28 06:12:18 +08:00
|
|
|
## Features
|
2014-10-13 14:46:39 +08:00
|
|
|
**nalgebra** is meant to be a general-purpose, low-dimensional, linear algebra library, with
|
|
|
|
an optimized set of tools for computer graphics and physics. Those features include:
|
2013-06-13 22:06:05 +08:00
|
|
|
|
2013-10-08 07:22:56 +08:00
|
|
|
* Vectors with static sizes: `Vec0`, `Vec1`, `Vec2`, `Vec3`, `Vec4`, `Vec5`, `Vec6`.
|
2014-10-13 02:21:06 +08:00
|
|
|
* Points with static sizes: `Pnt0`, `Pnt1`, `Pnt2`, `Pnt3`, `Pnt4`, `Pnt5`, `Pnt6`.
|
2013-10-08 07:22:56 +08:00
|
|
|
* Square matrices with static sizes: `Mat1`, `Mat2`, `Mat3`, `Mat4`, `Mat5`, `Mat6 `.
|
2013-10-06 22:54:09 +08:00
|
|
|
* Rotation matrices: `Rot2`, `Rot3`, `Rot4`.
|
2014-10-15 04:24:10 +08:00
|
|
|
* Quaternions: `Quat`, `UnitQuat`.
|
2013-10-06 22:54:09 +08:00
|
|
|
* Isometries: `Iso2`, `Iso3`, `Iso4`.
|
2014-10-13 02:21:06 +08:00
|
|
|
* 3D projections for computer graphics: `Persp3`, `PerspMat3`, `Ortho3`, `OrthoMat3`.
|
2013-09-28 06:15:44 +08:00
|
|
|
* Dynamically sized vector: `DVec`.
|
|
|
|
* Dynamically sized (square or rectangular) matrix: `DMat`.
|
2013-10-07 01:32:31 +08:00
|
|
|
* A few methods for data analysis: `Cov`, `Mean`.
|
2013-10-07 01:20:39 +08:00
|
|
|
* Almost one trait per functionality: useful for generic programming.
|
2014-11-26 21:36:50 +08:00
|
|
|
* Operator overloading using multidispatch.
|