@types/three
Version:
TypeScript definitions for three
15 lines (9 loc) • 355 B
TypeScript
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 };