example::mesh

Trait ToFixed

Source
trait ToFixed {
    type Fixed;

    // Required method
    fn fixed(&self) -> Self::Fixed;
}

Required Associated Types§

Required Methods§

Source

fn fixed(&self) -> Self::Fixed

Implementations on Foreign Types§

Source§

impl ToFixed for f32

Source§

type Fixed = FixedI32<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>

Source§

fn fixed(&self) -> Self::Fixed

Source§

impl<T> ToFixed for Vector3<T>
where T: ToFixed + Scalar, <T as ToFixed>::Fixed: Scalar,

Source§

type Fixed = Matrix<<T as ToFixed>::Fixed, Const<3>, Const<1>, ArrayStorage<<T as ToFixed>::Fixed, 3, 1>>

Source§

fn fixed(&self) -> Self::Fixed

Implementors§