pub trait Vector2Ext<S> {
// Required method
fn exterior_product(self, rhs: Self) -> S;
}Expand description
Additional Vector2 methods
Required Methods§
Sourcefn exterior_product(self, rhs: Self) -> S
fn exterior_product(self, rhs: Self) -> S
Exterior or wedge product: $(a,b) \wedge (c,d) = ad - bc$
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.