Fixed from_superset_unchecked

This commit is contained in:
Yuri Edward 2021-10-24 22:26:01 +02:00
parent 25dba52197
commit 209f77ccaf
1 changed files with 2 additions and 2 deletions

View File

@ -102,9 +102,9 @@ where
fn from_superset_unchecked( fn from_superset_unchecked(
m: &OMatrix<T2, DimNameSum<Const<D>, U1>, DimNameSum<Const<D>, U1>>, m: &OMatrix<T2, DimNameSum<Const<D>, U1>, DimNameSum<Const<D>, U1>>,
) -> Self { ) -> Self {
let t = m.fixed_slice::<D, 1>(0, D).into_owned(); let v = m.fixed_slice::<D, D>(0, 0).into_owned().diagonal();
Self { Self {
vector: crate::convert_unchecked(t), vector: crate::convert_unchecked(v),
} }
} }
} }