Crates.io | matriarch |
lib.rs | matriarch |
version | 0.1.0 |
source | src |
created_at | 2018-06-27 16:02:19.808453 |
updated_at | 2018-06-27 16:02:19.808453 |
description | A Linear Algebra and Matrix library written in Rust. |
homepage | https://github.com/theassailant/matriarch |
repository | https://github.com/theassailant/matriarch |
max_upload_size | |
id | 71959 |
size | 69,805 |
A Linear Algebra and Matrix library written in Rust.
Simply put Matriarch in your Cargo.toml
file:
[dependencies]
"matriarch" = "0.1.0"
and then you're ready to go!
extern crate matriarch;
use matriarch::Vec2;
fn main() {
let vec2 = Vec2::new();
let new_vec2 = vec2 + Vec2 { x: 1.0, y: 3.0 };
println!("{:?}", new_vec2);
//=> Vec2 { x: 1.0, y: 3.0 }
}
Interacting with the Matriarch community in any shape or form requires you adhere to our simple and easy to follow Code of Conduct.
Matriarch is licensed under the MIT License.