pub trait BuildSolid {
// Provided methods
fn empty() -> Solid { ... }
fn tetrahedron(
points: [impl Into<Point<3>>; 4],
services: &mut Services,
) -> Tetrahedron { ... }
}Expand description
Build a Solid
Provided Methods§
Sourcefn tetrahedron(
points: [impl Into<Point<3>>; 4],
services: &mut Services,
) -> Tetrahedron
fn tetrahedron( points: [impl Into<Point<3>>; 4], services: &mut Services, ) -> Tetrahedron
Build a tetrahedron from the provided points
See BuildShell::tetrahedron for more information.
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.