@openhps/core
Version:
Open Hybrid Positioning System - Core component
25 lines (24 loc) • 586 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
/**
* This module is used to represent render bundles inside the renderer
* for further processing.
*
* @private
*/
class RenderBundle {
/**
* Constructs a new bundle group.
*
* @param {BundleGroup} bundleGroup - The bundle group.
* @param {Camera} camera - The camera the bundle group is rendered with.
*/
constructor(bundleGroup, camera) {
this.bundleGroup = bundleGroup;
this.camera = camera;
}
}
var _default = exports.default = RenderBundle;