PointOps

Trait PointOps 

Source
pub trait PointOps<F: Float> {
    // Required methods
    fn add(self, rhs: Self) -> Self;
    fn sub(self, rhs: Self) -> Self;
    fn mul(self, rhs: Self) -> Self;
}

Required Methods§

Source

fn add(self, rhs: Self) -> Self

Source

fn sub(self, rhs: Self) -> Self

Source

fn mul(self, rhs: Self) -> Self

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.

Implementors§

Source§

impl<F: Float, P: PointLike<F>> PointOps<F> for P