Overview

Beyond G-code, PureCut CNC can send your work out of the app three ways: a 2D vector SVG, a 3D STL mesh, or a printed page. SVG and STL share a single Export Model dialog; printing has its own Print Design dialog. All of them are reachable from the top command bar in any view — they act on the whole project, not a specific view.

Exporting G-code is separate. Toolpath / machine-code output has its own dialog with per-operation selection — see G-code Export.

Export Model — SVG & STL

Click Export Model in the top toolbar (next to Import) to open the export dialog. The Format dropdown chooses the file type — SVG or STL — and each format has its own options. The File name defaults to the project name.

SVG — 2D vector

Exports the 2D design as a self-contained vector file drawn in physical millimetres, so it opens at true size (DPI-independent) in vector tools — ideal for laser cutting, drag-knife work, and documentation. Hidden features are left out.

OptionDescription
Export areaVisible design extents or Stock extents.
ContentToggle Tabs, Clamps, Feature labels, and a Grid on or off.
ColorColor or Monochrome.
screenshots/sketch-export-svg.png
Export Model dialog set to SVG — export area, content toggles, and color mode

STL — 3D mesh

Exports the assembled 3D model as a mesh. The dialog computes a manifold boolean union of all add / subtract features, then appends any imported meshes as raw transformed triangles so their original geometry is preserved regardless of CSG validity. A live triangle count and estimated file size update as you change the options.

OptionDescription
STL encodingBinary (smaller, faster to write) or ASCII (human-readable).
Curve qualityCoarse 10° (matches the 3D viewport), Normal 5°, Fine 2°, or Very fine 1°. Controls how finely arcs and bézier curves are tessellated — finer means more triangles and smoother curves.
Include imported meshesWhen off, only the CSG-assembled body is exported — imported model features are skipped.
screenshots/sketch-export-stl.png
Export Model dialog set to STL — curve quality, binary/ASCII encoding, and live triangle count
Tip: STL output uses internal design coordinates, so a round-trip (Export ModelImport Geometry) preserves position and orientation.