bevy_utilitarian 0.9.0

A collection of mostly maths, interpolation and geometric utilities that aim to make Bevy programmers happier
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod geometric;
pub mod randomized_values;
pub mod steppers;

pub mod prelude {
    use super::*;
    pub use geometric::{pitchyaw::PitchYaw, pitchyawclamped::PitchYawClamped};
    pub use randomized_values::{RandF32, RandValue, RandVec3};
    pub use steppers::{
        core::TickInterpolator,
        linear_stepper::LinearStepper,
        spring_stepper::{SPRING_MASS, SpringStepper, critical_damp_coeff},
    };
}