HasTangent

Trait HasTangent 

Source
pub trait HasTangent {
    type Tangent: VectorSpace;
}
Expand description

A type that has tangents.

Required Associated Types§

Source

type Tangent: VectorSpace

The tangent type.

Implementations on Foreign Types§

Source§

impl<F, U, V, M, N> HasTangent for (M, N)
where F: ScalarField, U: VectorSpace<Scalar = F>, V: VectorSpace<Scalar = F>, M: HasTangent<Tangent = U>, N: HasTangent<Tangent = V>,

Implementors§

Source§

impl<V> HasTangent for V
where V: VectorSpace,