2013-05-21 23:25:01 +08:00
|
|
|
|
/*!
|
|
|
|
|
|
Removed occurences of copy/Copy + improved api.
Now, access to vector components are x, y, z, w, a, b, ... instead of at[i].
The method at(i) has the same (read only) effect as the old at[i].
Now, access to matrix components are m11, m12, ... instead of mij[offset(i, j)]...
The method at((i, j)) has the same effect as the old mij[offset(i, j)].
Automatic implementation of all traits the compiler supports has been added on the #[deriving]
clause for both matrices and vectors.
2013-07-20 21:07:49 +08:00
|
|
|
|
# A n-dimensional linear algebra library.
|
2013-05-21 23:25:01 +08:00
|
|
|
|
|
|
|
|
|
*/
|
2013-05-15 05:08:29 +08:00
|
|
|
|
#[link(name = "nalgebra"
|
Removed occurences of copy/Copy + improved api.
Now, access to vector components are x, y, z, w, a, b, ... instead of at[i].
The method at(i) has the same (read only) effect as the old at[i].
Now, access to matrix components are m11, m12, ... instead of mij[offset(i, j)]...
The method at((i, j)) has the same effect as the old mij[offset(i, j)].
Automatic implementation of all traits the compiler supports has been added on the #[deriving]
clause for both matrices and vectors.
2013-07-20 21:07:49 +08:00
|
|
|
|
, vers = "0.1"
|
2013-05-15 05:08:29 +08:00
|
|
|
|
, author = "Sébastien Crozet"
|
|
|
|
|
, uuid = "1E96070F-4778-4EC1-B080-BF69F7048216")];
|
|
|
|
|
#[crate_type = "lib"];
|
2013-07-24 22:50:40 +08:00
|
|
|
|
#[deny(non_camel_case_types)];
|
|
|
|
|
#[deny(non_uppercase_statics)];
|
|
|
|
|
#[deny(unnecessary_qualification)];
|
|
|
|
|
#[deny(missing_doc)];
|
|
|
|
|
#[deny(warnings)];
|
2013-05-15 05:08:29 +08:00
|
|
|
|
|
|
|
|
|
extern mod std;
|
Removed occurences of copy/Copy + improved api.
Now, access to vector components are x, y, z, w, a, b, ... instead of at[i].
The method at(i) has the same (read only) effect as the old at[i].
Now, access to matrix components are m11, m12, ... instead of mij[offset(i, j)]...
The method at((i, j)) has the same effect as the old mij[offset(i, j)].
Automatic implementation of all traits the compiler supports has been added on the #[deriving]
clause for both matrices and vectors.
2013-07-20 21:07:49 +08:00
|
|
|
|
extern mod extra;
|
2013-05-15 05:08:29 +08:00
|
|
|
|
|
2013-08-02 00:55:42 +08:00
|
|
|
|
pub mod dmat;
|
|
|
|
|
pub mod dvec;
|
2013-07-22 17:35:36 +08:00
|
|
|
|
pub mod vec;
|
|
|
|
|
pub mod mat;
|
2013-05-15 05:08:29 +08:00
|
|
|
|
|
2013-06-29 08:34:45 +08:00
|
|
|
|
// specialization for some 1d, 2d and 3d operations
|
2013-08-02 00:55:42 +08:00
|
|
|
|
mod mat_spec;
|
|
|
|
|
mod vec_spec;
|
|
|
|
|
mod vec0_spec;
|
2013-05-15 05:08:29 +08:00
|
|
|
|
|
2013-05-21 23:25:01 +08:00
|
|
|
|
/// Wrappers around raw matrices to restrict their behaviour.
|
|
|
|
|
pub mod adaptors
|
2013-05-17 05:30:39 +08:00
|
|
|
|
{
|
2013-08-17 23:50:01 +08:00
|
|
|
|
pub mod rotmat;
|
|
|
|
|
pub mod transform;
|
2013-05-17 05:30:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-22 19:44:08 +08:00
|
|
|
|
pub mod types;
|
|
|
|
|
|
2013-08-02 00:55:42 +08:00
|
|
|
|
// pub mod num
|
|
|
|
|
// {
|
|
|
|
|
// pub use traits::dim::*;
|
|
|
|
|
// pub use traits::homogeneous::*;
|
|
|
|
|
// pub use traits::ring::*;
|
|
|
|
|
// pub use traits::division_ring::*;
|
|
|
|
|
// }
|
2013-07-22 16:26:20 +08:00
|
|
|
|
|
2013-07-22 17:35:36 +08:00
|
|
|
|
// FIXME: it would be better to hide all those from the outside!
|
2013-08-02 00:55:42 +08:00
|
|
|
|
pub mod traits
|
2013-07-22 17:35:36 +08:00
|
|
|
|
{
|
Rework of the traits for Vectors.
The goal is to make traits less fine-grained for vectors, and reduce the amount of `use`.
- Scalar{Mul, Div} are removed, replaced by Mul<N, V> and Div<N, V>,
- Ring and DivisionRing are removed. Use Num instead.
- VectorSpace, Dot, and Norm are removed, replaced by the new, higher-level traits.
Add four traits:
- Vec: common operations on vectors. Replaces VectorSpace and Dot.
- AlgebraicVec: Vec + the old Norm trait.
- VecExt: Vec + every other traits vectors implement.
- AlgebraicVecExt: AlgebraicVec + VecExt.
2013-08-19 00:33:25 +08:00
|
|
|
|
pub mod vector;
|
2013-08-17 23:50:01 +08:00
|
|
|
|
pub mod sample;
|
|
|
|
|
pub mod indexable;
|
|
|
|
|
pub mod column;
|
|
|
|
|
pub mod iterable;
|
|
|
|
|
pub mod outer;
|
|
|
|
|
pub mod cross;
|
|
|
|
|
pub mod inv;
|
|
|
|
|
pub mod transpose;
|
|
|
|
|
pub mod dim;
|
|
|
|
|
pub mod basis;
|
|
|
|
|
pub mod rotation;
|
|
|
|
|
pub mod translation;
|
|
|
|
|
pub mod transformation;
|
|
|
|
|
pub mod rlmul;
|
|
|
|
|
pub mod scalar_op;
|
|
|
|
|
pub mod homogeneous;
|
|
|
|
|
pub mod vec_cast;
|
|
|
|
|
pub mod mat_cast;
|
2013-05-15 05:08:29 +08:00
|
|
|
|
}
|
2013-05-19 01:04:03 +08:00
|
|
|
|
|
2013-05-21 23:25:01 +08:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
pub mod tests
|
2013-05-19 01:04:03 +08:00
|
|
|
|
{
|
2013-08-17 23:50:01 +08:00
|
|
|
|
pub mod mat;
|
|
|
|
|
pub mod vec;
|
2013-05-19 01:04:03 +08:00
|
|
|
|
}
|