Trait fj::syntax::Difference

source ·
pub trait Difference {
    // Required method
    fn difference<Other>(&self, other: &Other) -> Difference2d
       where Other: Clone + Into<Shape2d>;
}
Expand description

Convenient syntax to create an fj::Difference2d

Required Methods§

source

fn difference<Other>(&self, other: &Other) -> Difference2dwhere Other: Clone + Into<Shape2d>,

Create a difference between self and other

Implementors§

source§

impl<T> Difference for Twhere T: Clone + Into<Shape2d>,