Interface IRenderer

Interface for a renderer object, providing methods to add and remove objects from a scene, update bounding boxes, and notify scene updates.

interface IRenderer {
    add(scene: Scene | Object3D<Object3DEventMap>): any;
    notifySceneUpdate(): any;
    remove(scene: Scene): any;
    updateBox(box: Box3): any;
}

Methods