Trait physics2d::Cross [] [src]

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

The vector cross product.

Associated Types

The type of the result of the cross product.

Required Methods

Performs the cross product.

Implementations on Foreign Types

impl Cross<Vec2> for f32
[src]

[src]

impl<'a> Cross<Vec2> for &'a f32
[src]

[src]

impl<'b> Cross<&'b Vec2> for f32
[src]

[src]

impl<'a, 'b> Cross<&'b Vec2> for &'a f32
[src]

[src]

Implementors