pub trait BuildFace {
    // Provided method
    fn triangle(
        points: [impl Into<Point<3>>; 3],
        edges: [Option<Handle<GlobalEdge>>; 3],
        objects: &mut Service<Objects>
    ) -> Triangle { ... }
}
Expand description

Build a Face

Provided Methods§

source

fn triangle( points: [impl Into<Point<3>>; 3], edges: [Option<Handle<GlobalEdge>>; 3], objects: &mut Service<Objects> ) -> Triangle

Build a triangle

Implementors§