Trait fj_core::operations::BuildSolid
source · 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.