Trait nannou_core::geom::scalar::Scalar[][src]

pub trait Scalar: Clone + Copy + Num + PartialOrd + AddAssign + SubAssign + MulAssign + DivAssign + RemAssign + Neg<Output = Self> { }
Expand description

Implemented for all numeric scalar types used within geom.

A base set of traits that must be implemented by all types used to represent scalar values within the geom module abstractions.

Implementors