[][src]Trait higher_order_point::ops::Cross

pub trait Cross<Rhs = Self> {
    type Output;
    fn cross(self, other: Rhs) -> Self::Output;
}

Cross operator.

Associated Types

type Output

The output type.

Loading content...

Required methods

fn cross(self, other: Rhs) -> Self::Output

Returns the cross product.

Loading content...

Implementors

impl Cross<Point<()>> for Point[src]

type Output = Point

impl<T: 'static + Copy> Cross<Point<Arg<T>>> for PointFunc<T>[src]

type Output = Self

Loading content...