RustGraphix 0.2.1

Rust-Graphix is a Rust library for mathematics. It includes support for matrices, both two-dimensional and three-dimensional, along with various matrix operations and methods.
1
2
3
4
5
6
7
8
pub(crate) mod vectors;
use vectors::vec3::Vector3::Vector3;

fn main() {
    let vec_: Vector3 = Vector3::new(1.0, 1.0, 1.0);
    println!("vec: {:?}", vec_);

}