Trait egui::NumExt[]

pub trait NumExt {
    pub fn at_least(self, lower_limit: Self) -> Self;
pub fn at_most(self, upper_limit: Self) -> Self; }

Extends f32, Vec2 etc with at_least and at_most as aliases for max and min.

Required methods

pub fn at_least(self, lower_limit: Self) -> Self

More readable version of self.max(lower_limit)

pub fn at_most(self, upper_limit: Self) -> Self

More readable version of self.min(upper_limit)

Loading content...

Implementations on Foreign Types

impl NumExt for f64

impl NumExt for usize

impl NumExt for f32

Loading content...

Implementors

impl NumExt for Pos2

impl NumExt for Vec2

Loading content...