STL Print-Impact Diffing
Before sending a revised STL, drop in both versions to identify geometry changes that could affect printing, assembly, and quoting.
When a mechanical designer sends a revised STL to a client or print team, the most common response is, “It looks about the same.” But a smaller hole, a newly thin wall, or an added overhang can change assembly fit, print supports, and pricing. Those changes are difficult to spot by rotating two models separately.
Users drop the before and after STL files into a browser and select the intended manufacturing method, such as FDM printing, resin printing, or machining. The page overlays the models, colors added and removed material, and groups differences into practical issues such as hole diameter, wall thickness, mating faces, and overhang areas.
Selecting a difference shows its dimensions, a recommended viewing angle, and its potential manufacturing impact in a side panel. Users can mark key areas and generate a link with a fixed view and dimensional callouts, so clients can confirm changes in the browser without installing CAD software. Once the review is complete, the link summarizes what has been confirmed, what needs revision, and what remains disputed.
By default, models are compared locally in the browser, which suits parts that have not yet been made public or are covered by an NDA. The first release focuses on STL geometry differences and print risks; it does not replace full CAD constraint checking or provide a factory’s final quote.
Why now
As observed on August 3, Meshdiff’s Hacker News post ranked No. 2, with 173 points and 18 comments. S1 That exposure puts the problem of receiving a revised STL from a client and being unable to verify the changes in front of printing and design practitioners, while making a browser-based local comparison easier to try immediately. S2
Target user
Core users are small print-service shops, mechanical designers, and outsourced-manufacturing coordinators who regularly receive “final” STL files. Before quoting, starting a print, or sending a file to a client for confirmation, they need to know whether changes affect holes, wall thickness, and mating faces. They fear having to inspect the entire model again—and that “not much changed” will conceal rework. A direct confirmation link saves more communication than side-by-side screenshots.
Minimal entry point
Use three.js STLLoader for rendering and file reading. First normalize units, orientation, and bounding boxes across the two meshes. Run diff computation in a Web Worker, initially reporting added material, removed material, and volume change. Surface selection and nearest-point queries can use three-mesh-bvh, which already provides BVH acceleration, distance comparisons, and voxelization capabilities. S3 Flag hole diameter and wall thickness as suspected changes first, then verify them with local cross-sections. The initial version should focus on FDM wall thickness, hole diameter, overhang angle, and mating faces. Shared links store only the camera state, annotations, and summary; raw STL files are not uploaded by default.
Punching above its weight
The first users are already in the Hacker News thread, r/3DPrintingTools, and print shops that receive customer STL files. S1S2 Public examples can let visitors understand the output before uploading a file. Then collect anonymized before-and-after samples and turn them into short cases about holes, thin walls, overhangs, and assembly issues. Each case can link back to an interactive comparison page and capture searches for specific failure terms.
Competitors & gaps
- Meshdiff (current version)Google
- Meshdiff already reads STL, 3MF, and OBJ files in the browser. It uses voxel diffs to show added and removed material, with a tolerance slider and volume-change data. Computation runs in a Web Worker, and local files are not uploaded. S2 This solves the first-level question of where a model changed. Its public description focuses on geometric differences and does not list risk categories for hole diameter, wall thickness, mating faces, or overhangs. External communication still requires screenshots or separate notes. The opening is to explain manufacturing impact and preserve fixed viewpoints, dimensional annotations, and confirmation status. Semantic detection must not be presented as exact CAD feature recognition; every finding should show its evidence and confidence level.
- Autodesk Construction Cloud CompareGoogle
- Autodesk Construction Cloud can compare different versions of the same 3D model. It supports overlay and side-by-side views, using color to show changes. S4 Its documented formats include RVT, DWG, DXF, IFC, NWD, and F3D, but not STL. S4 Its strengths are version management and established project-review workflows. For print teams that receive only two STL files, this system is heavyweight. It also requires the files to be different versions of the same model, making it unsuitable for independently received files. The opening is local comparison without creating a project, followed by lightweight links for annotated delivery. Manufacturing mode, hole-diameter changes, and thin-wall risks can provide an explanation layer better suited to print handoffs.
How it makes money
Local comparison and basic diff viewing are free. Shared reviews, persistent links, team permissions, and review history are available through per-seat monthly subscriptions; print shops that use it occasionally can buy shared workspaces per project.
The case against
STL files do not retain a feature tree, dimensional constraints, or reliable units. Holes must be inferred from triangle surfaces, while chamfers or remeshing can create large numbers of false differences. If automatic alignment snaps to similar surfaces, every conclusion can be offset. Thin walls and overhangs also depend on material, nozzle, layer height, and part orientation. Rules that are too strict force engineers to dismiss false positives one by one; rules that are too loose miss assembly-relevant changes. Voxelizing large models in the browser can consume substantial memory. If a shared link includes geometry, confidentiality promises become a cloud-hosting responsibility. Machining also involves tool access, tolerances, and fixturing, so adding it too early could be mistaken for a quoting conclusion.