Expand description
§Vector and Matrix Library
This library provides functionality for working with vectors and matrices. It includes utility functions for operations like calculating size, reshaping, and printing.
Re-exports§
pub use vector::Vector;pub use matrix::Matrix;pub use scalar::Scalar;pub use complex::Complex;pub use linear_interpolation::lerp;pub use projection_matrix::projection;
Modules§
- The complex module provides a representation of Complex Numbers which implements Scalar.
- The linear interpolation module provides a generic function implementation to apply an interpolation.
- The matrix module provides a generic
Matrixstruct and related methods. - The projection matrix module provides a function to generate projection matrices.
- The scalar module provides a trait generic for scalars.
- The vector module provides a generic
Vectorstruct and related methods.