Wireframe.d.ts 334 B

123456789101112131415
  1. import {
  2. Mesh,
  3. } from '../../../src/Three';
  4. import { LineMaterial } from './LineMaterial';
  5. import { LineSegmentsGeometry } from './LineSegmentsGeometry';
  6. export class Wireframe extends Mesh {
  7. constructor( geometry?: LineSegmentsGeometry, material?: LineMaterial );
  8. readonly isWireframe: true;
  9. computeLineDistances(): this;
  10. }