pub trait UpdateFace {
    // Required method
    fn update_exterior(
        &self,
        f: impl FnOnce(&Handle<Cycle>) -> Handle<Cycle>
    ) -> Self;
}
Expand description

Update a Face

Required Methods§

source

fn update_exterior( &self, f: impl FnOnce(&Handle<Cycle>) -> Handle<Cycle> ) -> Self

Update the exterior of the face

Implementors§