Explode to Polygons
Converts all non-polygon shapes (paths with width, circles, arcs, text) into simple polygon boundaries.
When to Use
- Before exporting to formats that only support polygons (e.g., GDSII BOUNDARY records)
- When boolean operations require all geometry to be closed polygons
- To eliminate path width and end-cap ambiguity
Options
| Option | Description | Default |
|---|---|---|
| Arc precision | Segments per 360° for circle/arc approximation | 72 |
| Explode text | Convert text labels to polygon outlines | Off |
| Selected layers only | Apply to selected layers instead of all | Off |
How It Works
- Paths with width are expanded to their outline polygon (including end-caps)
- Circles are approximated as regular polygons with the specified arc precision
- Arcs are converted to polyline segments
- Text (if enabled) is converted to filled polygon outlines of each character
Technical Notes
- The original shapes are replaced — this operation is not reversible without undo
- Arc precision controls the smoothness of curved shapes: higher values produce smoother curves but more vertices
- Zero-width paths become polygon outlines (two coincident edges)