19 lines
746 B
OpenSCAD
19 lines
746 B
OpenSCAD
// Minimal example for lib/skadis-board illustrating what skadis_board produces:
|
|
// a small Skadis-compatible panel with the standard (checkerboard) slot pattern
|
|
// on the left and the denser full-grid pattern on the right.
|
|
//
|
|
// Render command for the README screenshot:
|
|
// openscad --render --autocenter --viewall --imgsize 1280,960 \
|
|
// --camera=0,0,0,72,0,340,0 \
|
|
// -o preview.png example.scad
|
|
|
|
use <skadis-board.scad>
|
|
|
|
$fn = 64;
|
|
|
|
// Standard Skadis pattern (40mm checkerboard lattice).
|
|
skadis_board(width = 100, height = 140, density = "standard", min_margin = 0);
|
|
|
|
// Denser full-20mm-grid pattern (still accessory-compatible).
|
|
translate([120, 0, 0])
|
|
skadis_board(width = 100, height = 140, density = "dense");
|