pub trait SolidBuilder {
    fn with_cube_from_edge_length(
        &mut self,
        edge_length: impl Into<Scalar>,
        objects: &mut Service<Objects>
    ); }
Expand description

Builder API for PartialSolid

Required Methods§

Add a cube with the given edge length to the solid

Implementors§