summit/frontend/node_modules/three-stdlib/objects/ShadowMesh.d.ts

11 lines
301 B
TypeScript
Raw Normal View History

2025-12-08 16:31:30 +00:00
import { Mesh, Plane, Vector4, Matrix4, MeshBasicMaterial, BufferGeometry } from 'three'
export class ShadowMesh extends Mesh<BufferGeometry, MeshBasicMaterial> {
readonly isShadowMesh: true
meshMatrix: Matrix4
constructor(mesh: Mesh)
update(plane: Plane, lightPosition4D: Vector4): void
}