--- a/src/nalgebra_support.rs Sun May 18 23:15:50 2025 -0500 +++ b/src/nalgebra_support.rs Sun May 18 23:31:48 2025 -0500 @@ -300,7 +300,7 @@ } } -impl<E, M, S> Dist<E, L1> for Vector<E, M, S> +impl<E, M, S> Dist<L1, E> for Vector<E, M, S> where M: Dim, S: Storage<E, M> + Clone, @@ -326,7 +326,7 @@ } } -impl<E, M, S> Dist<E, L2> for Vector<E, M, S> +impl<E, M, S> Dist<L2, E> for Vector<E, M, S> where M: Dim, S: Storage<E, M> + Clone, @@ -352,7 +352,7 @@ } } -impl<E, M, S> Dist<E, Linfinity> for Vector<E, M, S> +impl<E, M, S> Dist<Linfinity, E> for Vector<E, M, S> where M: Dim, S: Storage<E, M> + Clone,