Crates.io | lineq |
lib.rs | lineq |
version | 0.1.2 |
source | src |
created_at | 2023-04-27 03:12:52.709063 |
updated_at | 2023-04-28 02:02:32.24344 |
description | Linear algebra library |
homepage | |
repository | https://github.com/Ethan-Metz/lineq/ |
max_upload_size | |
id | 849988 |
size | 91,346 |
Structs and methods for linear algebra.
This crate provides 3 main types of structs that implement basic arithmetic operations like + and -, and also pervide useful methods:
Vectors can be easily initialized and used:
use lineq::vec3::Vec3;
let a : Vec3 = Vec3::UP;
let b : Vec3 = Vec3 { x: -1.0, y: 0.0, z: 0.0 };
assert_eq!(a.cross(b),Vec3::IN);
Arrays of vectors can be used to parallelize arithmetic:
use lineq::vec3::Vec3;
use lineq::vec3arr::Vec3arr;
//using a and b from last example:
let ab : Vec3arr = Vec3arr([a,b]);
let cd : Vec3arr = Vec3arr([Vec3::DOWN,Vec3::RIGHT]);
assert_eq!(ab + cd, Vec3arr([Vec3::ZERO,Vec3::ZERO]));
Matricies are indexed like x1, y2, z3 ... where x, y, z are the rows and 1, 2, 3 are the columns:
use lineq::vec3::Vec3;
use lineq::mat33::Mat33;
//using a and b from first example:
let c : Vec3 = Vec3{ x: 1.0, y: -1.0, z: 2.0 };
let m1 : Mat33 = Mat33::augment(a,b,c);
let m2 : Mat33 = Mat33{
x1: 0.0, x2: -1.0, x3: 1.0,
y1: 1.0, y2: 0.0, y3: -1.0,
z1: 0.0, z2: 0.0, z3: 2.0 }
assert_eq!(m1,m2);