pub trait ThreeDimensional: PointN {
    fn cross(&self, other: &Self) -> Self { ... }
}
Expand description

A three dimensional Point.

Some algorithms will only work with three dimensional points, this trait makes sure that only such points can be used.

Provided Methods

The cross product of this point and another.

Implementations on Foreign Types

Implementors