📄 threejs/Addons/Lines/WireframeGeometry2

File: WireframeGeometry2.md | Updated: 11/15/2025


title: WireframeGeometry2 category: Addons layout: docs

WireframeGeometry2

A special type of line segments geometry intended for wireframe rendering.

This is used in Wireframe to describe the shape.

Code Example

const geometry = new THREE.IcosahedronGeometry();
const wireframeGeometry = new WireframeGeometry2( geo );

Import

WireframeGeometry2 is an addon, and must be imported explicitly, see Installation#Addons.

import { WireframeGeometry2 } from 'three/addons/lines/WireframeGeometry2.js';

Constructor

new WireframeGeometry2( geometry : BufferGeometry )

Constructs a new wireframe geometry.

geometry | The geometry to render the wireframe for.
---|---

Properties

.isWireframeGeometry2 : boolean (readonly)

This flag can be used for type testing.

Default is true.

Source

examples/jsm/lines/WireframeGeometry2.js