This can be used as a helper object to view the edges of a geometry.
const geometry = new v3d.BoxGeometry(3, 3, 3);
const edges = new v3d.EdgesGeometry(geometry);
const line = new v3d.LineSegments(edges, new v3d.LineBasicMaterial({ color: 0xffffff }));
app.scene.add(line);
1 degree.See the base BufferGeometry class for common properties.
An object with a property for each of the constructor parameters. Any modification after instantiation does not change the geometry.
See the base BufferGeometry class for common methods.
For more info on how to obtain the source code of this module see this page.