Trait bevy_rapier2d::prelude::nalgebra::base::constraint::SameNumberOfRows[][src]

pub trait SameNumberOfRows<D1, D2>: DimEq<D1, D2> + DimEq<D2, D1> where
    D1: Dim,
    D2: Dim
{ type Representative: Dim; }
Expand description

Constraints D1 and D2 to be equivalent. They are both assumed to be the number of rows of a matrix.

Associated Types

This is either equal to D1 or D2, always choosing the one (if any) which is a type-level constant.

Implementors