consistency

This commit is contained in:
Quaternions 2024-08-28 12:23:13 -07:00
parent 68d1c23cfa
commit a923a6b5d1

View File

@ -16,13 +16,13 @@ impl<const CHUNKS:usize,Frac:Unsigned> Fixed<CHUNKS,Frac>{
pub const MIN:Self=Self{bits:BInt::<CHUNKS>::MIN,frac:PhantomData}; pub const MIN:Self=Self{bits:BInt::<CHUNKS>::MIN,frac:PhantomData};
} }
impl<const CHUNKS:usize,FracDst:Unsigned,T> From<T> for Fixed<CHUNKS,FracDst> impl<const CHUNKS:usize,Frac:Unsigned,T> From<T> for Fixed<CHUNKS,Frac>
where where
BInt<CHUNKS>:From<T> BInt<CHUNKS>:From<T>
{ {
fn from(value:T)->Self{ fn from(value:T)->Self{
Self{ Self{
bits:BInt::<{CHUNKS}>::from(value)<<FracDst::U32, bits:BInt::<{CHUNKS}>::from(value)<<Frac::U32,
frac:PhantomData, frac:PhantomData,
} }
} }