[][src]Trait pga2d::Meet

pub trait Meet<Rhs> {
    type Output;
    fn meet(self, rhs: Rhs) -> Self::Output;
}

The outer product, also known as the wedge product.

Associated Types

type Output

Loading content...

Required methods

fn meet(self, rhs: Rhs) -> Self::Output

Loading content...

Implementors

impl Meet<Line> for Line[src]

type Output = Point

impl Meet<Line> for Point[src]

impl Meet<Point> for Line[src]

Loading content...