pub trait Clampable {
    fn clamp(self, min: Float, max: Float) -> Self;
}

Required Methods

Implementors