pub trait BuildSurface {
    // Provided method
    fn plane_from_points(points: [impl Into<Point<3>>; 3]) -> Surface { ... }
}
Expand description

Build a Surface

Provided Methods§

source

fn plane_from_points(points: [impl Into<Point<3>>; 3]) -> Surface

Build a plane from the provided points

Implementors§