UNPKG

@types/three

Version:
15 lines (9 loc) 355 B
import { Mesh } from "three"; import { LineMaterial } from "./LineMaterial.js"; import { LineSegmentsGeometry } from "./LineSegmentsGeometry.js"; declare class Wireframe extends Mesh { readonly isWireframe: true; constructor(geometry?: LineSegmentsGeometry, material?: LineMaterial); computeLineDistances(): this; } export { Wireframe };