DecalGeometry.d.ts 325 B

12345678910111213141516171819
  1. import {
  2. BufferGeometry,
  3. Euler,
  4. Mesh,
  5. Vector3
  6. } from '../../../src/Three';
  7. export class DecalGeometry extends BufferGeometry {
  8. constructor( mesh: Mesh, position: Vector3, orientation: Euler, size: Vector3 );
  9. }
  10. export class DecalVertex {
  11. constructor( position: Vector3, normal: Vector3 );
  12. clone(): DecalVertex;
  13. }