Trait nalgebra::core::dimension::DimSub
[−]
[src]
pub trait DimSub<D: Dim>: Dim {
type Output: Dim;
fn sub(self, other: D) -> Self::Output;
}
Associated Types
Required Methods
Implementors
impl<D1: DimName, D2: DimName> DimSub<D2> for D1 where
D1::Value: Sub<D2::Value>,
Diff<D1::Value, D2::Value>: NamedDim, type Output = <Diff<D1::Value, D2::Value> as NamedDim>::Name;impl<D: Dim> DimSub<D> for Dynamic type Output = Dynamic;impl<D: DimName> DimSub<Dynamic> for D type Output = Dynamic;