Claude
Skills
Sign in
Back

openscad-cutlist-woodworkers

Included with Lifetime
$97 forever

Generates woodworking cut lists from OpenSCAD furniture designs using the woodworkers-lib library. Automates panel dimension extraction from ECHO output for furniture, cabinets, wardrobes, and shelving units. Use when designing furniture with plywood/MDF panels, generating cut lists for CNC routing or manual cutting, or preparing data for sheet optimization tools. Triggers on "generate cut list", "extract panel dimensions", "furniture cut list", "woodworking ECHO output", or when working with planeLeft/planeRight/ planeTop/planeBottom/planeFront/planeBack modules. Works with .scad files using woodworkers-lib library.

Generalscripts

What this skill does


# OpenSCAD Cut List Generation (woodworkers-lib)

Generate accurate cut lists from OpenSCAD furniture designs using the woodworkers-lib library's automatic ECHO output for panel dimensions and edge banding specifications.

## Quick Start

```scad
include <woodworkers-lib/std.scad>

cabinet = [800, 400, 1200];  // width × depth × height

planeLeft(cabinet, f=-1, t=-1, b=-1, af=4);      // Side panel with front edge band
planeRight(cabinet, f=-1, t=-1, b=-1, af=4);     // Side panel with front edge band
planeTop(cabinet, f=-1, af=4, al=4, ar=4);       // Top with 3 edge bands
planeBottom(cabinet, f=-1, af=4, al=4, ar=4);    // Bottom with 3 edge bands
planeBack(cabinet, thick=4);                      // Thin back panel (fiberboard)
```

**Render to see cut list:**
```bash
openscad cabinet.scad 2>&1 | grep "ECHO: \"plane"
```

**Output:**
```
ECHO: "plane (left):   18 × 378 × 1164(4)"
ECHO: "plane (right):  18 × 378 × 1164(4)"
ECHO: "plane (top):    782(4,4) × 378(4) × 18"
ECHO: "plane (bottom): 782(4,4) × 378(4) × 18"
ECHO: "plane (back):   800 × 4 × 1200"
```

**Interpretation:**
- `18 × 378 × 1164(4)` = 18mm thick panel, 378mm × 1164mm, with 4mm edge band on one edge
- `782(4,4) × 378(4) × 18` = 18mm thick panel, 782mm × 378mm, with edge bands on 3 edges (4mm each)

## Usage

See [Core Workflow](#core-workflow) below for complete step-by-step process.

## Core Workflow

### 1. Design Furniture with Plane Modules

**Define furniture dimensions:**

```scad
include <woodworkers-lib/std.scad>

thick = 18;  // Override default panel thickness if needed
rounding = 2;  // Edge rounding radius

wardrobe = [1000, 400, 1200];  // W×D×H in mm
```

**Decompose into panels using plane modules:**

| Module | Orientation | Parameters for Sizing |
|--------|-------------|----------------------|
| `planeLeft()` | Left side (YZ plane) | f, B, t, b (front, Back, top, bottom) |
| `planeRight()` | Right side (YZ plane) | f, B, t, b |
| `planeFront()` | Front face (XZ plane) | l, r, t, b (left, right, top, bottom) |
| `planeBack()` | Back face (XZ plane) | l, r, t, b |
| `planeTop()` | Top (XY plane) | l, r, f, B (left, right, front, Back) |
| `planeBottom()` | Bottom (XY plane) | l, r, f, B |

**Example: Basic cabinet frame**
```scad
translate([10, 0, 0]) {
    planeLeft(wardrobe, f=-1, t=-1, b=-1);
    planeRight(wardrobe, f=-1, t=-1, b=-1);
    planeTop(wardrobe, f=-1);
    planeBottom(wardrobe, f=-1);
    planeBack(wardrobe, thick=4);  // Thin fiberboard back
}
```

**Add internal components (shelves, dividers):**
```scad
// Shelf at 400mm height
translate([0, 0, 400])
    planeBottom(wardrobe, l=-1, r=-1, f=-1);

// Vertical divider at 500mm from left
translate([500, 0, 0])
    planeLeft(wardrobe, f=-1, t=-1, b=-1);
```

### 2. Understand Parameter System

The woodworkers-lib uses three parameter types:

**A. Thickness-Relative Increments (multiplied by `thick`)**

Parameters: `l, r, t, b, f, B`

| Value | Effect | Example (thick=18) |
|-------|--------|--------------------|
| `0` | No change | Panel fits exactly |
| `-1` | Shorten by 1×thick | -18mm (fit inside frame) |
| `1` | Extend by 1×thick | +18mm (overlap frame) |
| `-2` | Shorten by 2×thick | -36mm (fit between two panels) |

**Use case:** Fit panels inside frames without manual calculation.

```scad
// Side panels fit between top and bottom (-1 on top, -1 on bottom)
planeLeft(cabinet, t=-1, b=-1);

// Top panel extends over sides (no reduction)
planeTop(cabinet);
```

**B. Absolute Increments (exact mm values)**

Parameters: `ll, rr, tt, bb, ff, BB`

| Value | Effect | Example |
|-------|--------|---------|
| `0` | No change | Standard dimension |
| `10` | Extend by 10mm | Add 10mm to that edge |
| `-5` | Shorten by 5mm | Remove 5mm from that edge |

**Use case:** Precise adjustments, gaps, door clearances.

```scad
// Door panel 4mm narrower on each side for clearance
planeFront(cabinet, ll=-4, rr=-4);

// Extend shelf 10mm past frame edge
planeBottom(cabinet, ff=10);
```

**C. ABS Edge Banding (visualized and reported)**

Parameters: `al, ar, at, ab, af, aB`

| Value | Effect | Reporting |
|-------|--------|-----------|
| `0` | No edge band | Dimension only |
| `4` | 4mm ABS edge tape | Dimension(4) |
| `2` | 2mm edge band | Dimension(2) |

**Use case:** Specify which edges need edge banding tape (typically front-facing edges).

```scad
// Top panel with edge band on front, left, and right
planeTop(wardrobe, f=-1, af=4, al=4, ar=4);

// Output: "plane (top): 992(4) × 378(4,4) × 18"
//                           ^        ^^
//                        front    left,right
```

**Parameter Interaction:**

Edge banding affects absolute increments automatically:
```scad
planeLeft(wardrobe, f=-1, ff=10, af=4);
// Effective front dimension: base + (-1×thick) + 10 - 4
// The 'af=4' reduces effective dimension by 4mm
```

### 3. Capture Cut List Output

**Method 1: OpenSCAD GUI Console**

1. Open `.scad` file in OpenSCAD
2. Press F5 (Preview) or F6 (Render)
3. View Console window (bottom panel)
4. Copy ECHO lines starting with `"plane (`

**Method 2: Command Line (Recommended)**

```bash
# Capture all ECHO output
openscad --render furniture.scad 2>&1 | grep "ECHO: \"plane"

# Save to file
openscad --render furniture.scad 2>&1 | grep "ECHO: \"plane" > cutlist.txt

# Count unique panels
openscad --render furniture.scad 2>&1 | grep "ECHO: \"plane" | sort | uniq -c
```

**Method 3: Script Integration**

See `scripts/extract_cutlist.py` for automated extraction with CSV export.

### 4. Parse ECHO Output

**Output Format:**
```
ECHO: "plane (FACE):  DIM1(edges) × DIM2(edges) × THICK"
```

**Parsing Rules:**

1. **Three dimensions always present:** `DIM1 × DIM2 × THICK`
2. **Thickness is smallest dimension** (typically 18mm, 16mm, or 4mm)
3. **Edge bands in parentheses** after dimension: `782(4)` = 782mm with one 4mm edge
4. **Multiple edges separated by commas:** `378(4,4)` = 378mm with two 4mm edges
5. **Panel orientation from face name:** `(left)`, `(right)`, `(top)`, `(bottom)`, `(front)`, `(back)`

**Examples:**

| ECHO Output | Interpretation |
|-------------|----------------|
| `18 × 378 × 1164(4)` | 18mm thick, 378×1164mm panel, one 4mm edge band on the 1164mm edge |
| `782(4,4) × 378(4) × 18` | 18mm thick, 782×378mm panel, three edge bands (two on 782mm edge, one on 378mm edge) |
| `1000 × 4 × 1200` | 4mm fiberboard, 1000×1200mm, no edge banding |
| `964(4) × 378 × 18` | 18mm thick, 964×378mm panel, one 4mm edge band on the 964mm edge |

**Identifying edge band locations:**

The edge band notation appears on the dimension where the edge is applied:
- `782(4,4) × 378(4) × 18` = edges on 782mm side (2 edges) + 378mm side (1 edge) = 3 total edges
- For rectangular panels, this typically means 3 visible edges (4th hidden against wall/back)

### 5. Export for Optimization Tools

**Manual CSV Creation:**

Create spreadsheet with these columns:
```
Part Name, Width, Height, Thickness, Quantity, Edge1, Edge2, Edge3, Edge4
Left Side, 378, 1164, 18, 2, 4, 0, 0, 0
Top Panel, 782, 378, 18, 1, 4, 4, 4, 0
Back Panel, 1000, 1200, 4, 1, 0, 0, 0, 0
```

**Using Utility Script:**

```bash
# Generate CSV from SCAD file
python3 scripts/extract_cutlist.py furniture.scad -o cutlist.csv

# Import to CutListOptimizer.com or optiCutter.com
```

**Upload to CutListOptimizer:**

1. Visit [cutlistoptimizer.com](https://www.cutlistoptimizer.com/)
2. Click "Import" → "CSV File"
3. Upload generated CSV
4. Set sheet dimensions (e.g., 2440×1220mm for standard plywood)
5. Set blade thickness (typically 3mm for table saw)
6. Click "Optimize"

**Output formats supported:**
- CSV (comma-separated)
- TSV (tab-separated)
- JSON (for programmatic integration)

See `examples/cutlist_export.csv` for reference format.

## Resources

### examples/
- **`wardrobe_example.scad`** - Complete wardrobe design from library README with annotations
- **`cabinet_variations.scad`** - Different cabinet configurations and cut list outputs
- **`cutlist_export.csv`** - 

Related in General