2015-07-12 15:35:10 +08:00
|
|
|
|
[![Build Status](https://travis-ci.org/sebcrozet/nalgebra.svg?branch=master)](https://travis-ci.org/sebcrozet/nalgebra)
|
|
|
|
|
|
|
|
|
|
nalgebra
|
|
|
|
|
========
|
2014-01-14 16:52:18 +08:00
|
|
|
|
|
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
|
|
|
|
|
2016-04-17 18:57:54 +08:00
|
|
|
|
* General-purpose linear algebra (still lacks a lot of features…)
|
|
|
|
|
* Real time computer graphics.
|
|
|
|
|
* Real time computer physics.
|
2013-10-06 22:54:09 +08:00
|
|
|
|
|
2016-03-25 02:04:01 +08:00
|
|
|
|
An on-line version of this documentation is available [here](http://nalgebra.org/doc/nalgebra).
|
2013-10-08 08:10:35 +08:00
|
|
|
|
|
2013-10-07 01:32:31 +08:00
|
|
|
|
## Using **nalgebra**
|
2016-03-25 02:04:01 +08:00
|
|
|
|
All the functionality of **nalgebra** is grouped in one place: the root module `nalgebra::`. This
|
|
|
|
|
module re-exports everything and includes free functions for all traits methods performing
|
|
|
|
|
out-of-place operations.
|
2013-10-06 22:54:09 +08:00
|
|
|
|
|
2016-04-17 23:26:58 +08:00
|
|
|
|
Thus, 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
|
|
|
|
```
|
|
|
|
|
|
2016-04-17 23:26:58 +08:00
|
|
|
|
However, the recommended way to use **nalgebra** is to import types and traits
|
|
|
|
|
explicitly, and call free-functions using the `na::` prefix:
|
2013-10-14 17:22:38 +08:00
|
|
|
|
|
|
|
|
|
```.rust
|
2015-06-06 20:28:34 +08:00
|
|
|
|
extern crate nalgebra as na;
|
2016-04-17 23:26:58 +08:00
|
|
|
|
use na::{Vector3, Rotation3, Rotation};
|
2013-10-14 17:22:38 +08:00
|
|
|
|
|
|
|
|
|
fn main() {
|
2016-04-17 23:26:58 +08:00
|
|
|
|
let a = Vector3::new(1.0f64, 1.0, 1.0);
|
|
|
|
|
let mut b = Rotation3::new(na::zero());
|
2013-10-14 17:22:38 +08:00
|
|
|
|
|
2015-06-06 20:28:34 +08:00
|
|
|
|
b.append_rotation_mut(&a);
|
2013-10-14 17:22:38 +08:00
|
|
|
|
|
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
|
|
|
|
|
2015-06-06 20:28:34 +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
|
|
|
|
|
2016-04-17 23:26:58 +08:00
|
|
|
|
* Vectors with predefined static sizes: `Vector1`, `Vector2`, `Vector3`, `Vector4`, `Vector5`, `Vector6`.
|
|
|
|
|
* Vector with a user-defined static size: `VectorN` (available only with the `generic_sizes` feature).
|
|
|
|
|
* Points with static sizes: `Point1`, `Point2`, `Point3`, `Point4`, `Point5`, `Point6`.
|
|
|
|
|
* Square matrices with static sizes: `Matrix1`, `Matrix2`, `Matrix3`, `Matrix4`, `Matrix5`, `Matrix6 `.
|
|
|
|
|
* Rotation matrices: `Rotation2`, `Rotation3`
|
|
|
|
|
* Quaternions: `Quaternion`, `UnitQuaternion`.
|
|
|
|
|
* Isometrymetries (translation ⨯ rotation): `Isometry2`, `Isometry3`
|
|
|
|
|
* Similarity transformations (translation ⨯ rotation ⨯ uniform scale): `Similarity2`, `Similarity3`.
|
|
|
|
|
* 3D projections for computer graphics: `Persp3`, `PerspMatrix3`, `Ortho3`, `OrthoMatrix3`.
|
|
|
|
|
* Dynamically sized heap-allocated vector: `DVector`.
|
|
|
|
|
* Dynamically sized stack-allocated vectors with a maximum size: `DVector1` to `DVector6`.
|
|
|
|
|
* Dynamically sized heap-allocated (square or rectangular) matrix: `DMatrix`.
|
|
|
|
|
* Linear algebra and data analysis operators: `Covariance`, `Mean`, `qr`, `cholesky`.
|
2013-10-07 01:20:39 +08:00
|
|
|
|
* Almost one trait per functionality: useful for generic programming.
|