pub trait HasTangent {
type Tangent: VectorSpace;
}Expand description
A type that has tangents.
Required Associated Types§
Sourcetype Tangent: VectorSpace
type Tangent: VectorSpace
The tangent type.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".