.stepSTEP.stlSTLtessellated

Convert STEP to STL

Convert STEP to STL in your browser. The conversion runs on this page and the file never leaves your computer.

Drop your .step file

up to 250 MB · .step .stp

Free, and it opens in this tab. Nothing is uploaded, and there's no account to make.

Runs locally · nothing uploaded · the CAD kernel loads once you choose a file

Before you convert: what this keeps and what it destroys

Preserved

  • The shape, to within the tessellation tolerance
  • Overall dimensions and proportions
  • Watertightness, where the input is watertight

Destroyed

  • Exact curves and surfaces, replaced by triangles
  • The feature tree and any parametric history
  • A recorded unit: STL stores none
  • Colour
  • The separation between parts, merged into one body

↺ the reverse: STL → STEP · about .step · about .stl · just view it instead

Why people convert STEP to STL

This is the most common conversion in mechanical 3D printing. Usually someone has sent you a STEP file of a part and you want to print it.

STEP holds exact surfaces and a slicer wants triangles. Any slicer that reads STEP directly does this conversion internally anyway, so doing it here first shows you what the slicer won't: how many triangles you ended up with, whether the mesh came out closed, and what the part measures.

The setting that matters is tessellation tolerance. Too coarse and a 6 mm hole prints as a visible hexagon. Too fine and you have a 300 MB file that makes your slicer crawl. For a printed functional part, a chord deviation of about 0.01 to 0.05 mm is a sensible middle, and that is the range this site uses.

After converting, check that the overall dimensions match what you expect, that the mesh reports as watertight, and that curved faces look smooth enough at the size you're printing.

What you get

You get a binary STL file containing triangles. The exact surfaces in the STEP file are evaluated and tessellated at a tolerance fine enough that curves look smooth at normal viewing and printing sizes, The triangle count depends on how much curvature the part has: a bracket of flat faces produces very few, a turbine blade a great many.

Not carried across: a recorded unit, colour, the assembly structure. STL has nowhere to put them.

The whole conversion runs on this page, in your browser. Nothing is uploaded, so there is no server that could keep a copy of your file even in principle.

What to check afterwards

  • STEP declares its unit in the file, so the physical size survives the conversion without anyone guessing. If the result is the wrong size, the problem came from somewhere other than this step.
  • Colour is lost. STL has nowhere to store it. If colour matters, pick a target that keeps it: 3MF, GLB, PLY or USDZ.
  • Separate parts merge into one body. STEP can describe an assembly and STL cannot, so a multi-part model arrives as a single mesh. 3MF and GLB both keep the structure if you need it.
  • Curves become facets. STEP stores exact surfaces, so a hole is a cylinder with a radius. STL stores triangles, so that cylinder becomes a many-sided prism. Look at curved faces in the result at the size you intend to make the part.
  • Coordinates are stored as 32-bit floats. For a part measured in millimetres that's far finer than any machine tolerance. For a model spanning hundreds of thousands of units it isn't.

If you need something this conversion cannot give you

If the unit has to be unambiguous, convert to 3MF instead. It records the unit in the file, so nobody downstream has to assume millimetres and nobody has to scale by 25.4 after the fact.

If colour has to survive, convert to 3MF for printing, GLB for the web, or PLY if the colour is per-vertex scan data.

If the parts must stay separate, convert to 3MF or GLB. Both keep a real structure, so a five-part assembly arrives as five parts rather than one merged body.

If you need editable CAD geometry, don't convert at all. Open the STEP file directly in FreeCAD, Fusion, Onshape or SolidWorks. Every mesh format destroys the exact surfaces, and no later conversion brings them back.

If you are 3D printing and your slicer is current, 3MF is the better target in every respect: smaller, unit-bearing, colour-bearing, and multi-part.

Going the other way

Convert STL back to STEP exists, but it is not the inverse of this page. Going this way tessellates exact surfaces into triangles. Going back rebuilds a faceted solid out of those triangles. You do not get your original surfaces back, and the round trip is lossy in a way that compounds.

How we know this conversion works

This pair was checked against 44 files from the test corpus on 2026-09-04. Each run parses its own output back in and compares the bounding box, the triangle count and, for closed solids, the volume against the input.

A pair that fails those checks doesn't get a page. That's why this site lists 120 conversions and not the several hundred a format-times-format grid would suggest.