Would be a nice feature to include sample notebooks using the jupyter-cadquery extension, e.g.:
from storage_boxes.models import make_storage_box
from storage_boxes.types import Dimensions, BoxParameters
# Force usage of one CAD view on the right
set_sidecar("CadQuery")
# Set default values
set_defaults(axes=False, grid=True, axes0=True, ortho=True, transparent=True)
# Create a storage box
params = BoxParameters(
columns=3,
rows=2,
)
box = make_storage_box(params, cq.Workplane("XY"))
# overwrite grid default value
show(box, grid=False)
Would be a nice feature to include sample notebooks using the jupyter-cadquery extension, e.g.: