The easiest route is material.wireframe = true, but that draws every triangle’s diagonal too, which gets messy. THREE.WireframeGeometry(geometry) extracts every triangle edge as LineSegments the same way, while THREE.EdgesGeometry(geometry, thresholdAngle) keeps only edges where the angle between adjacent faces exceeds the threshold — the edges you’d actually notice.
The demo layers WireframeGeometry lines over a translucent filled shape, so you can see how the lines expose the surface’s own triangulation.
Common uses: loading placeholders, edit-mode overlays in 3D editors, low-res previews, and blueprint-style visuals. On very high-poly meshes the lines get so dense they wash out — watch for that.
When to use
Use for structural diagnostics, loading states, and edit-mode indicators. On dense meshes, use EdgesGeometry and tune the threshold angle.