BuildSurface

Trait BuildSurface 

Source
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

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§