glam

![Build Status] ![Coverage Status] ![Latest Version] ![docs]

A simple and fast 3D math library for games and graphics.

Development status

glam is in alpha stage. Minimal base functionality has been implemented and the look and feel of the API has solidified.

Features

SIMD

The Vec3A, Vec4 and Quat types use SSE2 on x86/x86_64 architectures. Mat2, Mat3 and Mat4 also use SSE2 for some functionality. Not everything has a SIMD implementation yet.

Note that this does result in some wasted space in the case of Vec3A as the SIMD vector type is 16 bytes large and 16 byte aligned.

glam outperforms similar Rust libraries such as cgmath, nalgebra-glm and others for common operations as tested by the mathbench project.

Due to the use of SIMD, vector elements may only be get and set via accessor methods, e.g. Vec4::x() and Vec4::x_mut() or Vec4::set_x(). If getting or setting more than one element it is more efficient to convert from tuples or arrays:

let (x, y, z, w) = v.into(); let [x, y, z, w]: [f32; 4] = v.into();

Optional features

Feature gates

Conventions

Column vectors

glam interprets vectors as column matrices (also known as "column vectors") meaning when transforming a vector with a matrix the matrix goes on the left, e.g. v' = Mv. DirectX uses row vectors, OpenGL uses column vectors. There are pros and cons to both.

Column-major order

Matrices are stored in column major format. Each column vector is stored in contiguous memory.

Co-ordinate system

glam is co-ordinate system agnostic and intends to support both right handed and left handed conventions.

Rotations follow the left-hand rule.

Design Philosophy

The design of this library is guided by a desire for simplicity and good performance.

Future work

Inspirations

There were many inspirations for the interface and internals of glam from the Rust and C++ worlds. In particular:

License

Licensed under either of

at your option.

Contribution

Contributions in any form (issues, pull requests, etc.) to this project must adhere to Rust's [Code of Conduct].

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Thank you to all of the glam [contributors]!

Support

If you are interested in contributing or have a request or suggestion [create an issue] on github.