pub trait BuildSolid {
// Provided methods
fn empty() -> Solid { ... }
fn tetrahedron(
points: [impl Into<Point<3>>; 4],
core: &mut Core,
) -> Tetrahedron { ... }
}Expand description
Build a Solid
See module-level documentation for context.
Provided Methods§
Sourcefn tetrahedron(points: [impl Into<Point<3>>; 4], core: &mut Core) -> Tetrahedron
fn tetrahedron(points: [impl Into<Point<3>>; 4], core: &mut Core) -> 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.