| 251 | // re-generation of the Gsplats for this SplatGenerator. |
| 252 | |
| 253 | export interface FrameUpdateContext { |
| 254 | renderer: THREE.WebGLRenderer; |
| 255 | object: SplatGenerator; |
| 256 | time: number; |
| 257 | deltaTime: number; |
| 258 | viewToWorld: THREE.Matrix4; |
| 259 | camera?: THREE.Camera; |
| 260 | renderSize?: THREE.Vector2; |
| 261 | globalEdits: SplatEdit[]; |
| 262 | lodIndices?: { numSplats: number; texture: THREE.DataTexture }; |
| 263 | } |
| 264 | |
| 265 | export class SplatGenerator extends THREE.Object3D { |
| 266 | numSplats: number; |
nothing calls this directly
no outgoing calls
no test coverage detected