#graphics #quaternion #quaternions #maths #vulkan #glm

gfx-maths

Implementations for the most essential Graphics Math operations

10 releases

0.2.9 Mar 12, 2023
0.2.8 Feb 9, 2022
0.2.6 Jan 31, 2022
0.2.4 Aug 19, 2021
0.1.0 Aug 17, 2021

#132 in Math

Download history 123/week @ 2023-11-24 10/week @ 2023-12-01 19/week @ 2024-01-12 2/week @ 2024-01-19 3/week @ 2024-01-26 893/week @ 2024-02-02 1588/week @ 2024-02-09 759/week @ 2024-02-16 444/week @ 2024-02-23 566/week @ 2024-03-01 233/week @ 2024-03-08

2,127 downloads per month
Used in 4 crates

MIT license

54KB
1.5K SLoC

MIT LICENSE CRATES.IO DOCS CI

GFX Maths

This crate implements all the basic mathematical structures and operations that are needed for almost any graphical program, namely:

The usual operations are implemented via member functions and operator overloads. Operators should handle almost exactly as they would in GLSL, e.g.

use gfx_maths_rs::*;

let v = Vec3::new(5.0, 6.0, 7.0);
let s = 1.0 / v;

let t = Mat4::translate(Vec3::new(1.0, 0.0, 0.0)) * s;

Notation

Vectors are always treated as column vectors, which is why only Mat4 * Vec4 is implemented and not Vec4 * Mat4.

Dependencies

~205KB