Trait nannou::prelude::geom::scalar::Scalar[][src]

pub trait Scalar: Clone + Copy + Num + PartialOrd<Self> + AddAssign<Self> + SubAssign<Self> + MulAssign<Self> + DivAssign<Self> + RemAssign<Self> + 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