pub trait Group {
    fn group<Other>(&self, other: &Other) -> Group
    where
        Other: Clone + Into<Shape>
; }
Expand description

Convenient syntax to create an fj::Group

Required Methods

Create a group with self and other

Implementors