AllHalfEdgesWithSurface

Trait AllHalfEdgesWithSurface 

Source
pub trait AllHalfEdgesWithSurface {
    // Required method
    fn all_half_edges_with_surface(
        &self,
        result: &mut Vec<(Handle<HalfEdge>, Handle<Surface>)>,
    );
}
Expand description

Access all half-edges referenced by an object, and the surface they’re on

Required Methods§

Source

fn all_half_edges_with_surface( &self, result: &mut Vec<(Handle<HalfEdge>, Handle<Surface>)>, )

Access all half-edges of the object, and the surface they’re on

Implementors§