pub trait BuildFace {
    // Provided methods
    fn unbound(surface: Handle<Surface>, services: &mut Services) -> Face { ... }
    fn triangle(
        points: [impl Into<Point<3>>; 3],
        services: &mut Services
    ) -> Polygon<3> { ... }
}
Expand description

Build a Face

Provided Methods§

source

fn unbound(surface: Handle<Surface>, services: &mut Services) -> Face

Build a face with an empty exterior, no interiors, and no color

source

fn triangle( points: [impl Into<Point<3>>; 3], services: &mut Services ) -> Polygon<3>

Build a triangle

Implementors§