86 releases

0.22.9 Mar 25, 2023
0.22.7 Apr 4, 2022
0.22.6 May 31, 2021
0.22.2 Feb 24, 2021
0.1.5 Jul 23, 2015

#5 in Math

Download history 37466/week @ 2023-12-01 41280/week @ 2023-12-08 35861/week @ 2023-12-15 25313/week @ 2023-12-22 31725/week @ 2023-12-29 39391/week @ 2024-01-05 44071/week @ 2024-01-12 48652/week @ 2024-01-19 46249/week @ 2024-01-26 45317/week @ 2024-02-02 45369/week @ 2024-02-09 53618/week @ 2024-02-16 51882/week @ 2024-02-23 50223/week @ 2024-03-01 50773/week @ 2024-03-08 37445/week @ 2024-03-15

199,041 downloads per month
Used in 917 crates (130 directly)

MIT/Apache

480KB
12K SLoC

euclid

This is a small library for geometric types with a focus on 2d graphics and layout.


lib.rs:

A collection of strongly typed math tools for computer graphics with an inclination towards 2d graphics and layout.

All types are generic over the scalar type of their component (f32, i32, etc.), and tagged with a generic Unit parameter which is useful to prevent mixing values from different spaces. For example it should not be legal to translate a screen-space position by a world-space vector and this can be expressed using the generic Unit parameter.

This unit system is not mandatory and all structures have an alias with the default unit: UnknownUnit. for example default::Point2D<T> is equivalent to Point2D<T, UnknownUnit>. Client code typically creates a set of aliases for each type and doesn't need to deal with the specifics of typed units further. For example:

use euclid::*;
pub struct ScreenSpace;
pub type ScreenPoint = Point2D<f32, ScreenSpace>;
pub type ScreenSize = Size2D<f32, ScreenSpace>;
pub struct WorldSpace;
pub type WorldPoint = Point3D<f32, WorldSpace>;
pub type ProjectionMatrix = Transform3D<f32, WorldSpace, ScreenSpace>;
// etc...

All euclid types are marked #[repr(C)] in order to facilitate exposing them to foreign function interfaces (provided the underlying scalar type is also repr(C)).

A set of aliases for all types, tagged with the default unknown unit.

Dependencies

~98–455KB