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<M, N> HasTangent for (M, N)
where M: HasTangent, N: HasTangent,

Implementors§

Source§

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