pub trait UpdateSolid {
    // Required method
    fn add_shells(
        &self,
        shells: impl IntoIterator<Item = Handle<Shell>>
    ) -> Solid;
}
Expand description

Update a Solid

Required Methods§

source

fn add_shells(&self, shells: impl IntoIterator<Item = Handle<Shell>>) -> Solid

Add a shell to the solid

Implementors§