Skip to main content

Crate thimni

Crate thimni 

Source

Re-exports§

pub use quad_rand;

Modules§

combinator
raycast
sdf
utils
vector

Macros§

impl_vector_glam_vec2
Used for implementing the Vector trait for glam::Vec2-esque types (e.g. Vec2, macroquad::math::Vec2, etc) Does not work with externally defined types, for that see [impl_vector_glam_vec2_wrapper]
impl_vector_glam_vec3
Used for implementing the Vector trait for glam::Vec3-esque types (e.g. Vec3, Vec3A, macroquad::math::Vec3, etc) can not be used for external types, for that see [impl_vector_glam_vec3_wrapper]
impl_vector_glam_vec2_wrapper
Like impl_vector_glam_vec2, but for interally defined wrappers around an external type.
impl_vector_glam_vec3_wrapper
Like impl_vector_glam_vec3, but for interally defined wrappers around an external type. THe wrapper should be defined like struct Wrapper(Type);