My Gridfinity models

Correcting plastic drawer bottom dimensions to actual measurements

The drawer length was hardcoded as 8*42=336mm but the actual interior
is 345mm. Now using min_size_mm for both axes so the baseplate pads
out to fill the real drawer dimensions (345x240mm) while still fitting
8 grid units lengthwise.

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

+2 -2
plastic-drawer-bottom.png

This is a binary file and will not be displayed.

+2 -2
plastic-drawer-bottom.scad
··· 6 6 $fs = 0.25; 7 7 8 8 drawer_width = 240; 9 - drawer_length = 8 * 42; 9 + drawer_length = 345; 10 10 11 11 hole_options = bundle_hole_options( 12 12 magnet_hole = true, ··· 18 18 gridfinityBaseplate( 19 19 grid_size_bases = [8, 0], 20 20 length = l_grid, 21 - min_size_mm = [0, drawer_width], 21 + min_size_mm = [drawer_length, drawer_width], 22 22 sp = 0, 23 23 hole_options = hole_options, 24 24 sh = 0,