pub trait FaceBuilder {
    fn with_exterior_polygon_from_points(
        self,
        surface: Handle<Surface>,
        points: impl IntoIterator<Item = impl Into<Point<2>>>
    ) -> Self; fn with_interior_polygon_from_points(
        self,
        surface: Handle<Surface>,
        points: impl IntoIterator<Item = impl Into<Point<2>>>
    ) -> Self; }
Expand description

Builder API for PartialFace

Required Methods§

Update the PartialFace with an exterior polygon

Update the PartialFace with an interior polygon

Implementors§