My Gridfinity models

Adding depth-3 pegboard shelf sizes

The SCAD file already supported grid_y=3 but we weren't building any of
them. Now generating all 8 widths at depth 3 alongside the existing
depth 1 and 2 variants.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

+9 -1
+9 -1
Makefile
··· 9 9 10 10 PEGBOARD_SHELF_SIZES_1 := 1 2 3 4 5 6 7 8 11 11 PEGBOARD_SHELF_SIZES_2 := 1 2 3 4 5 6 7 8 12 + PEGBOARD_SHELF_SIZES_3 := 1 2 3 4 5 6 7 8 12 13 13 14 PEGBOARD_SHELF_MODELS := \ 14 15 $(foreach x,$(PEGBOARD_SHELF_SIZES_1),pegboard-shelf/pegboard-shelf-$(x)x1.3mf) \ 15 - $(foreach x,$(PEGBOARD_SHELF_SIZES_2),pegboard-shelf/pegboard-shelf-$(x)x2.3mf) 16 + $(foreach x,$(PEGBOARD_SHELF_SIZES_2),pegboard-shelf/pegboard-shelf-$(x)x2.3mf) \ 17 + $(foreach x,$(PEGBOARD_SHELF_SIZES_3),pegboard-shelf/pegboard-shelf-$(x)x3.3mf) 16 18 17 19 PEGBOARD_SHELF_IMAGES := $(PEGBOARD_SHELF_MODELS:.3mf=.png) 18 20 ··· 32 34 33 35 pegboard-shelf/pegboard-shelf-%x2.png: pegboard-shelf.scad Makefile 34 36 $(OPENSCAD) -o $@ -D 'grid_x=$*' -D 'grid_y=2' --autocenter --viewall --imgsize $(IMGSIZE) --render '' $< 37 + 38 + pegboard-shelf/pegboard-shelf-%x3.3mf: pegboard-shelf.scad Makefile 39 + $(OPENSCAD) -o $@ -D 'grid_x=$*' -D 'grid_y=3' $< 40 + 41 + pegboard-shelf/pegboard-shelf-%x3.png: pegboard-shelf.scad Makefile 42 + $(OPENSCAD) -o $@ -D 'grid_x=$*' -D 'grid_y=3' --autocenter --viewall --imgsize $(IMGSIZE) --render '' $< 35 43 36 44 # --- Plastic Drawer Bottom --- 37 45
pegboard-shelf.3mf

This is a binary file and will not be displayed.