Gridfinity Support
Generate parametric Gridfinity storage components. Bins, plugs, baseplates, and custom compartments — all to spec.
Gridfinity Module
The Gridfinity module generates storage components that follow the Gridfinity open standard. Create bins, plugs, and baseplates that stack and interlock perfectly with any other Gridfinity-compatible components.
// 2x3 Gridfinity bin, 4 units tall
let result = Gridfinity.bin({
gridX: 2,
gridY: 3,
height: 4
});
Custom Compartments
Use cutRectGrid() and cutCircleGrid() to add custom compartment layouts to your bins. Dividers are positioned on the Gridfinity grid for perfect alignment.
let result = Gridfinity.bin({ gridX: 3, gridY: 2, height: 3 })
.cutRectGrid({ cols: 3, rows: 2, wall: 1.2 });
Full Component Set
- bin() — storage bins with configurable grid size and height
- plug() — plugs that fill empty bin slots
- baseplate() — baseplates that bins stack onto
- fitBin() — auto-fits a bin to your custom cuts
- cutRectGrid() / cutCircleGrid() — compartment layouts
Try Gridfinity Support in the browser editor
Open Editor