@itwin/core-frontend
Version:
iTwin.js frontend components
23 lines • 1.2 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/** @packageDocumentation
* @module Tiles
*/
import { TileDrawArgs } from "../../tile/internal";
export class RealityTileDrawArgs extends TileDrawArgs {
maxSelectionCount;
_secondaryClassifiers;
_worldToViewMap;
get worldToViewMap() { return this._worldToViewMap; }
get secondaryClassifiers() { return this._secondaryClassifiers; }
constructor(args, worldToViewMap, frustumPlanes, maxSelectionCount, _secondaryClassifiers) {
super({ ...args, viewFlagOverrides: args.viewFlagOverrides, symbologyOverrides: args.symbologyOverrides, parentsAndChildrenExclusive: false });
this.maxSelectionCount = maxSelectionCount;
this._secondaryClassifiers = _secondaryClassifiers;
this._worldToViewMap = worldToViewMap;
this._frustumPlanes = frustumPlanes;
}
}
//# sourceMappingURL=RealityTileDrawArgs.js.map