@itwin/ecschema-rpcinterface-tests 3.5.0-dev.4 → 3.5.0-dev.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/_fc1f.bundled-tests.js.map +1 -1
- package/lib/dist/bundled-tests.js +679 -356
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/object-storage.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_4_0_node_modules_itwin_obj-3576c6.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_9_node_modules_loaders_gl_draco_di-01256f.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3.bundled-tests.js.map +1 -1
- package/package.json +16 -16
|
@@ -65010,6 +65010,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
65010
65010
|
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
65011
65011
|
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
65012
65012
|
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
65013
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
65013
65014
|
/*---------------------------------------------------------------------------------------------
|
|
65014
65015
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
65015
65016
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -65021,6 +65022,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
65021
65022
|
|
|
65022
65023
|
|
|
65023
65024
|
|
|
65025
|
+
|
|
65024
65026
|
/** Identify the Reality Data service provider
|
|
65025
65027
|
* @beta
|
|
65026
65028
|
*/
|
|
@@ -65128,6 +65130,11 @@ var ContextRealityModelProps;
|
|
|
65128
65130
|
if (input.appearanceOverrides.rgb)
|
|
65129
65131
|
output.appearanceOverrides.rgb = { ...input.appearanceOverrides.rgb };
|
|
65130
65132
|
}
|
|
65133
|
+
if (input.displaySettings) {
|
|
65134
|
+
output.displaySettings = { ...input.displaySettings };
|
|
65135
|
+
if (input.displaySettings.pointCloud)
|
|
65136
|
+
output.displaySettings.pointCloud = { ...output.displaySettings.pointCloud };
|
|
65137
|
+
}
|
|
65131
65138
|
if (input.planarClipMask)
|
|
65132
65139
|
output.planarClipMask = { ...input.planarClipMask };
|
|
65133
65140
|
if (input.classifiers)
|
|
@@ -65152,6 +65159,10 @@ class ContextRealityModel {
|
|
|
65152
65159
|
this.onPlanarClipMaskChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65153
65160
|
/** Event dispatched just before assignment to [[appearanceOverrides]]. */
|
|
65154
65161
|
this.onAppearanceOverridesChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65162
|
+
/** Event dispatched just before assignment to [[displaySettings]].
|
|
65163
|
+
* @beta
|
|
65164
|
+
*/
|
|
65165
|
+
this.onDisplaySettingsChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65155
65166
|
this._props = props;
|
|
65156
65167
|
this.rdSourceKey = props.rdSourceKey;
|
|
65157
65168
|
this.name = (_a = props.name) !== null && _a !== void 0 ? _a : "";
|
|
@@ -65160,6 +65171,7 @@ class ContextRealityModel {
|
|
|
65160
65171
|
this.realityDataId = props.realityDataId;
|
|
65161
65172
|
this.description = (_c = props.description) !== null && _c !== void 0 ? _c : "";
|
|
65162
65173
|
this._appearanceOverrides = props.appearanceOverrides ? _FeatureSymbology__WEBPACK_IMPORTED_MODULE_1__.FeatureAppearance.fromJSON(props.appearanceOverrides) : undefined;
|
|
65174
|
+
this._displaySettings = _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_4__.RealityModelDisplaySettings.fromJSON(props.displaySettings);
|
|
65163
65175
|
if (props.planarClipMask && props.planarClipMask.mode !== _PlanarClipMask__WEBPACK_IMPORTED_MODULE_2__.PlanarClipMaskMode.None)
|
|
65164
65176
|
this._planarClipMask = _PlanarClipMask__WEBPACK_IMPORTED_MODULE_2__.PlanarClipMaskSettings.fromJSON(props.planarClipMask);
|
|
65165
65177
|
if (props.classifiers)
|
|
@@ -65189,6 +65201,17 @@ class ContextRealityModel {
|
|
|
65189
65201
|
this._props.appearanceOverrides = overrides.toJSON();
|
|
65190
65202
|
this._appearanceOverrides = overrides;
|
|
65191
65203
|
}
|
|
65204
|
+
/** Settings controlling how this reality model is displayed in a [Viewport]($frontend).
|
|
65205
|
+
* @beta
|
|
65206
|
+
*/
|
|
65207
|
+
get displaySettings() {
|
|
65208
|
+
return this._displaySettings;
|
|
65209
|
+
}
|
|
65210
|
+
set displaySettings(settings) {
|
|
65211
|
+
this.onDisplaySettingsChanged.raiseEvent(settings, this);
|
|
65212
|
+
this._props.displaySettings = settings.toJSON();
|
|
65213
|
+
this._displaySettings = settings;
|
|
65214
|
+
}
|
|
65192
65215
|
/** Convert this model to its JSON representation. */
|
|
65193
65216
|
toJSON() {
|
|
65194
65217
|
return ContextRealityModelProps.clone(this._props);
|
|
@@ -65217,6 +65240,10 @@ class ContextRealityModels {
|
|
|
65217
65240
|
this.onPlanarClipMaskChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65218
65241
|
/** Event dispatched just before [[ContextRealityModel.appearanceOverrides]] is modified for one of the reality models. */
|
|
65219
65242
|
this.onAppearanceOverridesChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65243
|
+
/** Event dispatched just before [[ContextRealityModel.displaySettings]] is modified for one of the reality models.
|
|
65244
|
+
* @beta
|
|
65245
|
+
*/
|
|
65246
|
+
this.onDisplaySettingsChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65220
65247
|
/** Event dispatched when a model is [[add]]ed, [[delete]]d, [[replace]]d, or [[update]]d. */
|
|
65221
65248
|
this.onChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65222
65249
|
this._container = container;
|
|
@@ -65315,6 +65342,8 @@ class ContextRealityModels {
|
|
|
65315
65342
|
model.onPlanarClipMaskChanged.addListener(this.handlePlanarClipMaskChanged, this);
|
|
65316
65343
|
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
65317
65344
|
model.onAppearanceOverridesChanged.addListener(this.handleAppearanceOverridesChanged, this);
|
|
65345
|
+
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
65346
|
+
model.onDisplaySettingsChanged.addListener(this.handleDisplaySettingsChanged, this);
|
|
65318
65347
|
return model;
|
|
65319
65348
|
}
|
|
65320
65349
|
dropEventListeners(model) {
|
|
@@ -65322,6 +65351,8 @@ class ContextRealityModels {
|
|
|
65322
65351
|
model.onPlanarClipMaskChanged.removeListener(this.handlePlanarClipMaskChanged, this);
|
|
65323
65352
|
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
65324
65353
|
model.onAppearanceOverridesChanged.removeListener(this.handleAppearanceOverridesChanged, this);
|
|
65354
|
+
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
65355
|
+
model.onDisplaySettingsChanged.removeListener(this.handleDisplaySettingsChanged, this);
|
|
65325
65356
|
}
|
|
65326
65357
|
handlePlanarClipMaskChanged(mask, model) {
|
|
65327
65358
|
this.onPlanarClipMaskChanged.raiseEvent(model, mask);
|
|
@@ -65329,6 +65360,9 @@ class ContextRealityModels {
|
|
|
65329
65360
|
handleAppearanceOverridesChanged(app, model) {
|
|
65330
65361
|
this.onAppearanceOverridesChanged.raiseEvent(model, app);
|
|
65331
65362
|
}
|
|
65363
|
+
handleDisplaySettingsChanged(settings, model) {
|
|
65364
|
+
this.onDisplaySettingsChanged.raiseEvent(model, settings);
|
|
65365
|
+
}
|
|
65332
65366
|
}
|
|
65333
65367
|
|
|
65334
65368
|
|
|
@@ -65368,7 +65402,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
65368
65402
|
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
65369
65403
|
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
65370
65404
|
/* harmony import */ var _ContextRealityModel__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ContextRealityModel */ "../../core/common/lib/esm/ContextRealityModel.js");
|
|
65371
|
-
/* harmony import */ var
|
|
65405
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
65406
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
65372
65407
|
/*---------------------------------------------------------------------------------------------
|
|
65373
65408
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
65374
65409
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -65397,6 +65432,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
65397
65432
|
|
|
65398
65433
|
|
|
65399
65434
|
|
|
65435
|
+
|
|
65400
65436
|
|
|
65401
65437
|
|
|
65402
65438
|
/** Describes the style in which monochrome color is applied by a [[DisplayStyleSettings]].
|
|
@@ -65602,6 +65638,10 @@ class DisplayStyleSettings {
|
|
|
65602
65638
|
this.onSubCategoryOverridesChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65603
65639
|
/** Event raised just before changing the appearance override for a model. */
|
|
65604
65640
|
this.onModelAppearanceOverrideChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65641
|
+
/** Event raised just before [[setRealityModelDisplaySettings]] changes the display settings for a reality model.
|
|
65642
|
+
* @beta
|
|
65643
|
+
*/
|
|
65644
|
+
this.onRealityModelDisplaySettingsChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65605
65645
|
/** Event raised just prior to assignment to the [[DisplayStyle3dSettings.thematic]] property. */
|
|
65606
65646
|
this.onThematicChanged = new _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeEvent();
|
|
65607
65647
|
/** Event raised just prior to assignment to the [[DisplayStyle3dSettings.hiddenLineSettings]] property. */
|
|
@@ -65635,7 +65675,7 @@ class DisplayStyleSettings {
|
|
|
65635
65675
|
this._excludedElements = new ExcludedElements(this._json);
|
|
65636
65676
|
if (this._json.analysisStyle)
|
|
65637
65677
|
this._analysisStyle = _AnalysisStyle__WEBPACK_IMPORTED_MODULE_2__.AnalysisStyle.fromJSON(this._json.analysisStyle);
|
|
65638
|
-
this._whiteOnWhiteReversal =
|
|
65678
|
+
this._whiteOnWhiteReversal = _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_22__.WhiteOnWhiteReversalSettings.fromJSON(this._json.whiteOnWhiteReversal);
|
|
65639
65679
|
this._clipStyle = _ClipStyle__WEBPACK_IMPORTED_MODULE_4__.ClipStyle.fromJSON(this._json.clipStyle);
|
|
65640
65680
|
this._subCategoryOverrides = new OverridesMap(this._json, "subCategoryOvr", this.onSubCategoryOverridesChanged, (props) => props.subCategory, (ovr, subCategory) => { return { ...ovr.toJSON(), subCategory }; }, (props) => {
|
|
65641
65681
|
const ovr = _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_9__.SubCategoryOverride.fromJSON(props);
|
|
@@ -65645,6 +65685,7 @@ class DisplayStyleSettings {
|
|
|
65645
65685
|
const app = _FeatureSymbology__WEBPACK_IMPORTED_MODULE_7__.FeatureAppearance.fromJSON(props);
|
|
65646
65686
|
return app.anyOverridden ? app : undefined;
|
|
65647
65687
|
});
|
|
65688
|
+
this._realityModelDisplaySettings = new OverridesMap(this._json, "realityModelDisplay", this.onRealityModelDisplaySettingsChanged, (props) => props.modelId, (settings, modelId) => { return { ...settings.toJSON(), modelId }; }, (props) => _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_21__.RealityModelDisplaySettings.fromJSON(props));
|
|
65648
65689
|
this._planarClipMasks = new OverridesMap(this._json, "planarClipOvr", this.onPlanarClipMaskChanged, (props) => props.modelId, (ovr, modelId) => { return { ...ovr.toJSON(), modelId }; }, (props) => {
|
|
65649
65690
|
const settings = _PlanarClipMask__WEBPACK_IMPORTED_MODULE_8__.PlanarClipMaskSettings.fromJSON(props);
|
|
65650
65691
|
return settings.isValid ? settings : undefined;
|
|
@@ -65873,6 +65914,26 @@ class DisplayStyleSettings {
|
|
|
65873
65914
|
get hasModelAppearanceOverride() {
|
|
65874
65915
|
return this.modelAppearanceOverrides.size > 0;
|
|
65875
65916
|
}
|
|
65917
|
+
/** Get any settings that override how the reality model with the specified Id is displayed.
|
|
65918
|
+
* @param modelId The Id of the [Model]($backend).
|
|
65919
|
+
* @returns the display settings, or `undefined` if no settings have been associated with `modelId`.
|
|
65920
|
+
* @see [[setRealityModelDisplaySettings]] to change the settings.
|
|
65921
|
+
* @beta
|
|
65922
|
+
*/
|
|
65923
|
+
getRealityModelDisplaySettings(modelId) {
|
|
65924
|
+
return this._realityModelDisplaySettings.get(modelId);
|
|
65925
|
+
}
|
|
65926
|
+
/** Change the settings that control how the reality model with the specified Id is displayed.
|
|
65927
|
+
* @param modelId The Id of the [Model]($backend) to which the settings apply.
|
|
65928
|
+
* @param settings The settings to apply to the model, or `undefined` to clear any previous settings for that model.
|
|
65929
|
+
* @beta
|
|
65930
|
+
*/
|
|
65931
|
+
setRealityModelDisplaySettings(modelId, settings) {
|
|
65932
|
+
if (settings)
|
|
65933
|
+
this._realityModelDisplaySettings.set(modelId, settings);
|
|
65934
|
+
else
|
|
65935
|
+
this._realityModelDisplaySettings.delete(modelId);
|
|
65936
|
+
}
|
|
65876
65937
|
/** The set of elements that will not be drawn by this display style.
|
|
65877
65938
|
* @returns An iterable over the elements' Ids.
|
|
65878
65939
|
*/
|
|
@@ -66027,7 +66088,7 @@ class DisplayStyleSettings {
|
|
|
66027
66088
|
if (overrides.analysisStyle)
|
|
66028
66089
|
this.analysisStyle = _AnalysisStyle__WEBPACK_IMPORTED_MODULE_2__.AnalysisStyle.fromJSON(overrides.analysisStyle);
|
|
66029
66090
|
if (overrides.whiteOnWhiteReversal)
|
|
66030
|
-
this.whiteOnWhiteReversal =
|
|
66091
|
+
this.whiteOnWhiteReversal = _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_22__.WhiteOnWhiteReversalSettings.fromJSON(overrides.whiteOnWhiteReversal);
|
|
66031
66092
|
if (undefined !== overrides.analysisFraction)
|
|
66032
66093
|
this.analysisFraction = overrides.analysisFraction;
|
|
66033
66094
|
if (overrides.scheduleScript)
|
|
@@ -66042,6 +66103,10 @@ class DisplayStyleSettings {
|
|
|
66042
66103
|
this._json.modelOvr = [...overrides.modelOvr];
|
|
66043
66104
|
this._modelAppearanceOverrides.populate();
|
|
66044
66105
|
}
|
|
66106
|
+
if (overrides.realityModelDisplay) {
|
|
66107
|
+
this._json.realityModelDisplay = [...overrides.realityModelDisplay];
|
|
66108
|
+
this._realityModelDisplaySettings.populate();
|
|
66109
|
+
}
|
|
66045
66110
|
if (overrides.excludedElements)
|
|
66046
66111
|
this._excludedElements.reset("string" === typeof overrides.excludedElements ? overrides.excludedElements : [...overrides.excludedElements]);
|
|
66047
66112
|
this.onOverridesApplied.raiseEvent(overrides);
|
|
@@ -70053,6 +70118,12 @@ class EcefLocation {
|
|
|
70053
70118
|
}
|
|
70054
70119
|
/** Get the transform from iModel Spatial coordinates to ECEF from this EcefLocation */
|
|
70055
70120
|
getTransform() { return this._transform; }
|
|
70121
|
+
/** Returns true if this EcefLocation is not located at the center of the Earth.
|
|
70122
|
+
* @alpha are locations very close to the center considered valid? What are the specific criteria?
|
|
70123
|
+
*/
|
|
70124
|
+
get isValid() {
|
|
70125
|
+
return !this.origin.isZero;
|
|
70126
|
+
}
|
|
70056
70127
|
/** Construct ECEF Location from cartographic origin with optional known point and angle. */
|
|
70057
70128
|
static createFromCartographicOrigin(origin, point, angle) {
|
|
70058
70129
|
const ecefOrigin = origin.toEcef();
|
|
@@ -70293,7 +70364,8 @@ class IModel {
|
|
|
70293
70364
|
this.rootSubject = props.rootSubject;
|
|
70294
70365
|
this.projectExtents = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Range3d.fromJSON(props.projectExtents);
|
|
70295
70366
|
this.globalOrigin = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Point3d.fromJSON(props.globalOrigin);
|
|
70296
|
-
|
|
70367
|
+
const ecefLocation = props.ecefLocation ? new EcefLocation(props.ecefLocation) : undefined;
|
|
70368
|
+
this.ecefLocation = (ecefLocation === null || ecefLocation === void 0 ? void 0 : ecefLocation.isValid) ? ecefLocation : undefined;
|
|
70297
70369
|
this.geographicCoordinateSystem = props.geographicCoordinateSystem ? new _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_3__.GeographicCRS(props.geographicCoordinateSystem) : undefined;
|
|
70298
70370
|
}
|
|
70299
70371
|
/** Get the default subCategoryId for the supplied categoryId */
|
|
@@ -73176,6 +73248,131 @@ var DefaultSupportedTypes;
|
|
|
73176
73248
|
})(DefaultSupportedTypes || (DefaultSupportedTypes = {}));
|
|
73177
73249
|
|
|
73178
73250
|
|
|
73251
|
+
/***/ }),
|
|
73252
|
+
|
|
73253
|
+
/***/ "../../core/common/lib/esm/RealityModelDisplaySettings.js":
|
|
73254
|
+
/*!****************************************************************!*\
|
|
73255
|
+
!*** ../../core/common/lib/esm/RealityModelDisplaySettings.js ***!
|
|
73256
|
+
\****************************************************************/
|
|
73257
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
73258
|
+
|
|
73259
|
+
"use strict";
|
|
73260
|
+
__webpack_require__.r(__webpack_exports__);
|
|
73261
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
73262
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* binding */ PointCloudDisplaySettings),
|
|
73263
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* binding */ RealityModelDisplaySettings)
|
|
73264
|
+
/* harmony export */ });
|
|
73265
|
+
/*---------------------------------------------------------------------------------------------
|
|
73266
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
73267
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
73268
|
+
*--------------------------------------------------------------------------------------------*/
|
|
73269
|
+
/** @packageDocumentation
|
|
73270
|
+
* @module DisplayStyles
|
|
73271
|
+
*/
|
|
73272
|
+
/** Settings that control how a point cloud reality model is displayed within a [Viewport]($frontend).
|
|
73273
|
+
* @note This is an immutable type - to modify its properties, use [[clone]].
|
|
73274
|
+
* @see [[RealityModelDisplaySettings.pointCloud]].
|
|
73275
|
+
* @beta
|
|
73276
|
+
*/
|
|
73277
|
+
class PointCloudDisplaySettings {
|
|
73278
|
+
constructor(props) {
|
|
73279
|
+
var _a, _b, _c, _d, _e, _f;
|
|
73280
|
+
this.shape = (_a = props === null || props === void 0 ? void 0 : props.shape) !== null && _a !== void 0 ? _a : "round";
|
|
73281
|
+
this.sizeMode = (_b = props === null || props === void 0 ? void 0 : props.sizeMode) !== null && _b !== void 0 ? _b : "voxel";
|
|
73282
|
+
// No sanity checks here - e.g., min < max, pixelSize and voxelScale > 0, etc.
|
|
73283
|
+
this.pixelSize = (_c = props === null || props === void 0 ? void 0 : props.pixelSize) !== null && _c !== void 0 ? _c : 1;
|
|
73284
|
+
this.voxelScale = (_d = props === null || props === void 0 ? void 0 : props.voxelScale) !== null && _d !== void 0 ? _d : 1;
|
|
73285
|
+
this.minPixelsPerVoxel = (_e = props === null || props === void 0 ? void 0 : props.minPixelsPerVoxel) !== null && _e !== void 0 ? _e : 2;
|
|
73286
|
+
this.maxPixelsPerVoxel = (_f = props === null || props === void 0 ? void 0 : props.maxPixelsPerVoxel) !== null && _f !== void 0 ? _f : 20;
|
|
73287
|
+
}
|
|
73288
|
+
/** Create display settings from their JSON representation. If `props` is `undefined`, the default settings are returned. */
|
|
73289
|
+
static fromJSON(props) {
|
|
73290
|
+
return props ? new PointCloudDisplaySettings(props) : this.defaults;
|
|
73291
|
+
}
|
|
73292
|
+
/** Convert these settings to their JSON representation. */
|
|
73293
|
+
toJSON() {
|
|
73294
|
+
const defs = PointCloudDisplaySettings.defaults;
|
|
73295
|
+
if (this.equals(defs))
|
|
73296
|
+
return undefined;
|
|
73297
|
+
const props = {};
|
|
73298
|
+
if (this.shape !== defs.shape)
|
|
73299
|
+
props.shape = this.shape;
|
|
73300
|
+
if (this.sizeMode !== defs.sizeMode)
|
|
73301
|
+
props.sizeMode = this.sizeMode;
|
|
73302
|
+
if (this.pixelSize !== defs.pixelSize)
|
|
73303
|
+
props.pixelSize = this.pixelSize;
|
|
73304
|
+
if (this.voxelScale !== defs.voxelScale)
|
|
73305
|
+
props.voxelScale = this.voxelScale;
|
|
73306
|
+
if (this.minPixelsPerVoxel !== defs.minPixelsPerVoxel)
|
|
73307
|
+
props.minPixelsPerVoxel = this.minPixelsPerVoxel;
|
|
73308
|
+
if (this.maxPixelsPerVoxel !== defs.maxPixelsPerVoxel)
|
|
73309
|
+
props.maxPixelsPerVoxel = this.maxPixelsPerVoxel;
|
|
73310
|
+
return props;
|
|
73311
|
+
}
|
|
73312
|
+
/** Create a copy of these settings, identical except for any properties explicitly specified by `changedProps`. */
|
|
73313
|
+
clone(changedProps) {
|
|
73314
|
+
return PointCloudDisplaySettings.fromJSON({
|
|
73315
|
+
...this.toJSON(),
|
|
73316
|
+
...changedProps,
|
|
73317
|
+
});
|
|
73318
|
+
}
|
|
73319
|
+
/** Returns true if these settings are identical to `other`. */
|
|
73320
|
+
equals(other) {
|
|
73321
|
+
if (this === other)
|
|
73322
|
+
return true;
|
|
73323
|
+
return this.shape === other.shape && this.sizeMode === other.sizeMode && this.pixelSize === other.pixelSize
|
|
73324
|
+
&& this.voxelScale === other.voxelScale && this.minPixelsPerVoxel === other.minPixelsPerVoxel && this.maxPixelsPerVoxel === other.maxPixelsPerVoxel;
|
|
73325
|
+
}
|
|
73326
|
+
}
|
|
73327
|
+
/** Settings with all properties initialized to their default values. */
|
|
73328
|
+
PointCloudDisplaySettings.defaults = new PointCloudDisplaySettings();
|
|
73329
|
+
/** Settings that control how a reality model - whether a [[ContextRealityModel]] or a persistent reality [Model]($backend) - is displayed within a [Viewport]($frontend).
|
|
73330
|
+
* @see [[ContextRealityModel.displaySettings]] to apply these settings to a context reality model.
|
|
73331
|
+
* @see [[DisplayStyleSettings.setRealityModelDisplaySettings]] to apply these settings to a persistent reality model.
|
|
73332
|
+
* @note This is an immutable type - to modify its properties, use [[clone]].
|
|
73333
|
+
* @beta
|
|
73334
|
+
*/
|
|
73335
|
+
class RealityModelDisplaySettings {
|
|
73336
|
+
constructor(overrideColorRatio, pointCloud) {
|
|
73337
|
+
this.overrideColorRatio = overrideColorRatio !== null && overrideColorRatio !== void 0 ? overrideColorRatio : 0.5;
|
|
73338
|
+
this.pointCloud = pointCloud;
|
|
73339
|
+
}
|
|
73340
|
+
/** Create display settings from their JSON representation. If `props` is `undefined`, the default settings are returned. */
|
|
73341
|
+
static fromJSON(props) {
|
|
73342
|
+
if (!props)
|
|
73343
|
+
return this.defaults;
|
|
73344
|
+
return new RealityModelDisplaySettings(props.overrideColorRatio, PointCloudDisplaySettings.fromJSON(props.pointCloud));
|
|
73345
|
+
}
|
|
73346
|
+
/** Convert these settings to their JSON representation, which is `undefined` if all of their properties match the default settings. */
|
|
73347
|
+
toJSON() {
|
|
73348
|
+
const pointCloud = this.pointCloud.toJSON();
|
|
73349
|
+
const overrideColorRatio = this.overrideColorRatio === RealityModelDisplaySettings.defaults.overrideColorRatio ? undefined : this.overrideColorRatio;
|
|
73350
|
+
if (undefined === pointCloud && undefined === overrideColorRatio)
|
|
73351
|
+
return undefined;
|
|
73352
|
+
const props = {};
|
|
73353
|
+
if (undefined !== pointCloud)
|
|
73354
|
+
props.pointCloud = pointCloud;
|
|
73355
|
+
if (undefined !== overrideColorRatio)
|
|
73356
|
+
props.overrideColorRatio = overrideColorRatio;
|
|
73357
|
+
return props;
|
|
73358
|
+
}
|
|
73359
|
+
/** Returns true if these settings are identical to `other`. */
|
|
73360
|
+
equals(other) {
|
|
73361
|
+
if (this === other)
|
|
73362
|
+
return true;
|
|
73363
|
+
return this.overrideColorRatio === other.overrideColorRatio && this.pointCloud.equals(other.pointCloud);
|
|
73364
|
+
}
|
|
73365
|
+
/** Create a copy of these settings, identical except for any properties explicitly specified by `changedProps`. */
|
|
73366
|
+
clone(changedProps) {
|
|
73367
|
+
const pointCloud = changedProps.pointCloud ? this.pointCloud.clone(changedProps.pointCloud) : this.pointCloud;
|
|
73368
|
+
const colorRatio = changedProps.hasOwnProperty("overrideColorRatio") ? changedProps.overrideColorRatio : this.overrideColorRatio;
|
|
73369
|
+
return new RealityModelDisplaySettings(colorRatio, pointCloud);
|
|
73370
|
+
}
|
|
73371
|
+
}
|
|
73372
|
+
/** Settings with all properties initialized to their default values. */
|
|
73373
|
+
RealityModelDisplaySettings.defaults = new RealityModelDisplaySettings(undefined, PointCloudDisplaySettings.defaults);
|
|
73374
|
+
|
|
73375
|
+
|
|
73179
73376
|
/***/ }),
|
|
73180
73377
|
|
|
73181
73378
|
/***/ "../../core/common/lib/esm/Render.js":
|
|
@@ -74593,9 +74790,13 @@ class RgbColor {
|
|
|
74593
74790
|
toColorDef(transparency = 0) {
|
|
74594
74791
|
return _ColorDef__WEBPACK_IMPORTED_MODULE_1__.ColorDef.from(this.r, this.g, this.b, transparency);
|
|
74595
74792
|
}
|
|
74793
|
+
/** Convert this color to its JSON representation. */
|
|
74596
74794
|
toJSON() {
|
|
74597
74795
|
return { r: this.r, g: this.g, b: this.b };
|
|
74598
74796
|
}
|
|
74797
|
+
/** Create an RgbColor from its JSON representation.
|
|
74798
|
+
* If `json` is `undefined`, the result is pure white.
|
|
74799
|
+
*/
|
|
74599
74800
|
static fromJSON(json) {
|
|
74600
74801
|
let r = 0xff;
|
|
74601
74802
|
let g = 0xff;
|
|
@@ -74610,12 +74811,18 @@ class RgbColor {
|
|
|
74610
74811
|
}
|
|
74611
74812
|
return new RgbColor(r, g, b);
|
|
74612
74813
|
}
|
|
74613
|
-
|
|
74614
|
-
|
|
74814
|
+
/** Returns true if this color's red, green, and blue components are identical to those of `other`. */
|
|
74815
|
+
equals(other) {
|
|
74816
|
+
return this.r === other.r && this.g === other.g && this.b === other.b;
|
|
74615
74817
|
}
|
|
74818
|
+
/** Compare this color to another color using the rules of an [OrderedComparator]($bentley). */
|
|
74616
74819
|
compareTo(other) {
|
|
74617
74820
|
return (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(this.r, other.r) || (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(this.g, other.g) || (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(this.b, other.b);
|
|
74618
74821
|
}
|
|
74822
|
+
/** Convert this color to a string in the form "#rrggbb" where the values are the hex digits of the respective color components. */
|
|
74823
|
+
toHexString() {
|
|
74824
|
+
return this.toColorDef().toHexString();
|
|
74825
|
+
}
|
|
74619
74826
|
}
|
|
74620
74827
|
|
|
74621
74828
|
|
|
@@ -78019,7 +78226,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78019
78226
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
78020
78227
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
78021
78228
|
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_36__.AreaPattern),
|
|
78022
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
78229
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_140__.B3dmHeader),
|
|
78023
78230
|
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_44__.BRepEntity),
|
|
78024
78231
|
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_40__.BRepGeometryOperation),
|
|
78025
78232
|
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.BackendError),
|
|
@@ -78031,9 +78238,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78031
78238
|
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_72__.BaseLayerSettings),
|
|
78032
78239
|
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__.BaseMapLayerSettings),
|
|
78033
78240
|
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.BatchType),
|
|
78034
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
78035
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
78036
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
78241
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_134__.BentleyCloudRpcConfiguration),
|
|
78242
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_134__.BentleyCloudRpcManager),
|
|
78243
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_135__.BentleyCloudRpcProtocol),
|
|
78037
78244
|
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.BentleyError),
|
|
78038
78245
|
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.BentleyStatus),
|
|
78039
78246
|
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_14__.BisCodeSpec),
|
|
@@ -78041,8 +78248,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78041
78248
|
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_37__.BoundingSphere),
|
|
78042
78249
|
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.BriefcaseIdValue),
|
|
78043
78250
|
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.BriefcaseStatus),
|
|
78044
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
78045
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
78251
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_129__.CURRENT_INVOCATION),
|
|
78252
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_129__.CURRENT_REQUEST),
|
|
78046
78253
|
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_7__.Camera),
|
|
78047
78254
|
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_48__.Carto2DDegrees),
|
|
78048
78255
|
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_38__.Cartographic),
|
|
@@ -78064,13 +78271,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78064
78271
|
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_16__.ColorDef),
|
|
78065
78272
|
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.ColorIndex),
|
|
78066
78273
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_17__.CommonLoggerCategory),
|
|
78067
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
78068
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
78069
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
78274
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_141__.CompositeTileHeader),
|
|
78275
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.ContentFlags),
|
|
78276
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.ContentIdProvider),
|
|
78070
78277
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModel),
|
|
78071
78278
|
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModelProps),
|
|
78072
78279
|
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModels),
|
|
78073
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
78280
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_145__.CurrentImdlVersion),
|
|
78074
78281
|
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.CutStyle),
|
|
78075
78282
|
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.DbQueryError),
|
|
78076
78283
|
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.DbRequestKind),
|
|
@@ -78079,8 +78286,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78079
78286
|
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.DbResult),
|
|
78080
78287
|
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.DbValueFormat),
|
|
78081
78288
|
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_86__.DefaultSupportedTypes),
|
|
78082
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
78083
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
78289
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_94__.DevToolsRpcInterface),
|
|
78290
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_94__.DevToolsStatsOptions),
|
|
78084
78291
|
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyle3dSettings),
|
|
78085
78292
|
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_19__.DisplayStyleSettings),
|
|
78086
78293
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.DomainOptions),
|
|
@@ -78088,9 +78295,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78088
78295
|
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_81__.ECSqlReader),
|
|
78089
78296
|
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlSystemProperty),
|
|
78090
78297
|
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_22__.ECSqlValueType),
|
|
78091
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
78298
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_116__.Easing),
|
|
78092
78299
|
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_61__.EcefLocation),
|
|
78093
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
78300
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.EdgeArgs),
|
|
78094
78301
|
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_40__.ElementGeometry),
|
|
78095
78302
|
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_83__.ElementGeometryChange),
|
|
78096
78303
|
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_40__.ElementGeometryOpcode),
|
|
@@ -78107,7 +78314,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78107
78314
|
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_25__.FeatureOverrideType),
|
|
78108
78315
|
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_30__.FeatureOverrides),
|
|
78109
78316
|
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.FeatureTable),
|
|
78110
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
78317
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_145__.FeatureTableHeader),
|
|
78111
78318
|
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_51__.FillDisplay),
|
|
78112
78319
|
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_54__.FillFlags),
|
|
78113
78320
|
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_32__.FontMap),
|
|
@@ -78128,15 +78335,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78128
78335
|
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_44__.GeometryStreamFlags),
|
|
78129
78336
|
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_44__.GeometryStreamIterator),
|
|
78130
78337
|
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_52__.GeometrySummaryVerbosity),
|
|
78131
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
78338
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_143__.GlbHeader),
|
|
78132
78339
|
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.GlobeMode),
|
|
78133
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
78134
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
78340
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_143__.GltfV2ChunkTypes),
|
|
78341
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_143__.GltfVersions),
|
|
78135
78342
|
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_53__.Gradient),
|
|
78136
78343
|
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_54__.GraphicParams),
|
|
78137
78344
|
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.GridFileDefinition),
|
|
78138
78345
|
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.GridFileTransform),
|
|
78139
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
78346
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_118__.GridOrientationType),
|
|
78140
78347
|
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_55__.GroundPlane),
|
|
78141
78348
|
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_58__.HSLColor),
|
|
78142
78349
|
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_59__.HSVColor),
|
|
@@ -78147,15 +78354,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78147
78354
|
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_57__.Hilite),
|
|
78148
78355
|
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_39__.HorizontalCRS),
|
|
78149
78356
|
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_39__.HorizontalCRSExtent),
|
|
78150
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
78357
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_144__.I3dmHeader),
|
|
78151
78358
|
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_61__.IModel),
|
|
78152
78359
|
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.IModelError),
|
|
78153
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
78154
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
78360
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_95__.IModelNotFoundResponse),
|
|
78361
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_95__.IModelReadRpcInterface),
|
|
78155
78362
|
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.IModelStatus),
|
|
78156
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
78363
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_96__.IModelTileRpcInterface),
|
|
78157
78364
|
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_63__.IModelVersion),
|
|
78158
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
78365
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_129__.INSTANCE),
|
|
78159
78366
|
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.ImageBuffer),
|
|
78160
78367
|
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.ImageBufferFormat),
|
|
78161
78368
|
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_45__.ImageGraphic),
|
|
@@ -78163,10 +78370,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78163
78370
|
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__.ImageMapLayerSettings),
|
|
78164
78371
|
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.ImageSource),
|
|
78165
78372
|
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.ImageSourceFormat),
|
|
78166
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
78167
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
78373
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_145__.ImdlFlags),
|
|
78374
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_145__.ImdlHeader),
|
|
78168
78375
|
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_78__.InternetConnectivityStatus),
|
|
78169
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
78376
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_116__.Interpolation),
|
|
78170
78377
|
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_68__.IpcAppChannel),
|
|
78171
78378
|
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_67__.IpcSession),
|
|
78172
78379
|
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_65__.IpcWebSocket),
|
|
@@ -78181,12 +78388,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78181
78388
|
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_72__.MapImagerySettings),
|
|
78182
78389
|
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__.MapLayerSettings),
|
|
78183
78390
|
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_73__.MapSubLayerSettings),
|
|
78184
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
78391
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_125__.MarshalingBinaryMarker),
|
|
78185
78392
|
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_74__.MassPropertiesOperation),
|
|
78186
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
78187
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
78188
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
78189
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
78393
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshEdge),
|
|
78394
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshEdges),
|
|
78395
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshPolyline),
|
|
78396
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshPolylineList),
|
|
78190
78397
|
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_76__.ModelClipGroup),
|
|
78191
78398
|
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_76__.ModelClipGroups),
|
|
78192
78399
|
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_83__.ModelGeometryChanges),
|
|
@@ -78197,11 +78404,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78197
78404
|
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.Npc),
|
|
78198
78405
|
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.NpcCenter),
|
|
78199
78406
|
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.NpcCorners),
|
|
78200
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
78407
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_129__.OPERATION),
|
|
78201
78408
|
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_79__.OctEncodedNormal),
|
|
78202
78409
|
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_79__.OctEncodedNormalPair),
|
|
78203
78410
|
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_78__.OverriddenBy),
|
|
78204
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
78411
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_129__.POLICY),
|
|
78205
78412
|
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeatureTable),
|
|
78206
78413
|
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_47__.Placement2d),
|
|
78207
78414
|
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_47__.Placement3d),
|
|
@@ -78209,11 +78416,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78209
78416
|
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_82__.PlanarClipMaskMode),
|
|
78210
78417
|
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_82__.PlanarClipMaskPriority),
|
|
78211
78418
|
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_82__.PlanarClipMaskSettings),
|
|
78212
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
78213
|
-
/* harmony export */ "
|
|
78214
|
-
/* harmony export */ "
|
|
78215
|
-
/* harmony export */ "
|
|
78216
|
-
/* harmony export */ "
|
|
78419
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_146__.PntsHeader),
|
|
78420
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_87__.PointCloudDisplaySettings),
|
|
78421
|
+
/* harmony export */ "PolylineData": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineData),
|
|
78422
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineEdgeArgs),
|
|
78423
|
+
/* harmony export */ "PolylineFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineFlags),
|
|
78424
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineTypeFlags),
|
|
78217
78425
|
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.PositionalVectorTransform),
|
|
78218
78426
|
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PrimitiveTypeCode),
|
|
78219
78427
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.ProfileOptions),
|
|
@@ -78234,133 +78442,134 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78234
78442
|
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.QueryBinder),
|
|
78235
78443
|
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.QueryOptionsBuilder),
|
|
78236
78444
|
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_80__.QueryRowFormat),
|
|
78237
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
78445
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_129__.REGISTRY),
|
|
78238
78446
|
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.Rank),
|
|
78239
78447
|
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataFormat),
|
|
78240
78448
|
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataProvider),
|
|
78241
78449
|
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.RealityDataSourceKey),
|
|
78450
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_87__.RealityModelDisplaySettings),
|
|
78242
78451
|
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.RelatedElement),
|
|
78243
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
78244
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
78245
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
78246
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
78452
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_89__.RenderMaterial),
|
|
78453
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_119__.RenderMode),
|
|
78454
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_90__.RenderSchedule),
|
|
78455
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_91__.RenderTexture),
|
|
78247
78456
|
/* harmony export */ "RepositoryStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.RepositoryStatus),
|
|
78248
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
78249
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
78250
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
78251
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
78252
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
78253
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
78254
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
78255
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
78256
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
78257
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
78258
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
78457
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_130__.ResponseLike),
|
|
78458
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_92__.RgbColor),
|
|
78459
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_93__.RpcConfiguration),
|
|
78460
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_121__.RpcContentType),
|
|
78461
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_122__.RpcControlChannel),
|
|
78462
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_122__.RpcControlResponse),
|
|
78463
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_93__.RpcDefaultConfiguration),
|
|
78464
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_93__.RpcDirectProtocol),
|
|
78465
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_93__.RpcDirectRequest),
|
|
78466
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_121__.RpcEndpoint),
|
|
78467
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_100__.RpcInterface),
|
|
78259
78468
|
/* harmony export */ "RpcInterfaceStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.RpcInterfaceStatus),
|
|
78260
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
78261
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
78262
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
78263
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
78264
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
78265
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
78266
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
78267
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
78268
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
78269
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
78270
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
78271
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
78272
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
78273
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
78274
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
78275
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
78276
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
78277
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
78278
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
78279
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
78280
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
78281
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
78282
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
78283
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
78284
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
78285
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
78286
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
78287
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
78469
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_123__.RpcInvocation),
|
|
78470
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_101__.RpcManager),
|
|
78471
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_125__.RpcMarshaling),
|
|
78472
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_137__.RpcMultipart),
|
|
78473
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_122__.RpcNotFoundResponse),
|
|
78474
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_136__.RpcOpenAPIDescription),
|
|
78475
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_126__.RpcOperation),
|
|
78476
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_126__.RpcOperationPolicy),
|
|
78477
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_127__.RpcPendingQueue),
|
|
78478
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_122__.RpcPendingResponse),
|
|
78479
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_128__.RpcProtocol),
|
|
78480
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_121__.RpcProtocolEvent),
|
|
78481
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_128__.RpcProtocolVersion),
|
|
78482
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_133__.RpcPushChannel),
|
|
78483
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_133__.RpcPushConnection),
|
|
78484
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_133__.RpcPushService),
|
|
78485
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_133__.RpcPushSubscription),
|
|
78486
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_133__.RpcPushTransport),
|
|
78487
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_129__.RpcRegistry),
|
|
78488
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_130__.RpcRequest),
|
|
78489
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_121__.RpcRequestEvent),
|
|
78490
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_128__.RpcRequestFulfillment),
|
|
78491
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_121__.RpcRequestStatus),
|
|
78492
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_121__.RpcResponseCacheControl),
|
|
78493
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_93__.RpcRoutingMap),
|
|
78494
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_132__.RpcRoutingToken),
|
|
78495
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_125__.RpcSerializedValue),
|
|
78496
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_124__.RpcSessionInvocation),
|
|
78288
78497
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SchemaState),
|
|
78289
78498
|
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.SectionType),
|
|
78290
78499
|
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.ServerError),
|
|
78291
78500
|
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_62__.ServerTimeoutError),
|
|
78292
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
78293
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
78294
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
78295
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
78296
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
78297
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
78298
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
78501
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.SilhouetteEdgeArgs),
|
|
78502
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_103__.SkyBox),
|
|
78503
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_103__.SkyBoxImageType),
|
|
78504
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_103__.SkyCube),
|
|
78505
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_103__.SkyGradient),
|
|
78506
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_103__.SkySphere),
|
|
78507
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_97__.SnapshotIModelRpcInterface),
|
|
78299
78508
|
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_69__.SolarLight),
|
|
78300
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
78301
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
78302
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
78303
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
78304
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
78305
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
78306
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
78307
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
78509
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_106__.SolarShadowSettings),
|
|
78510
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifier),
|
|
78511
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifierFlags),
|
|
78512
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifierInsideDisplay),
|
|
78513
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifierOutsideDisplay),
|
|
78514
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__.SpatialClassifiers),
|
|
78515
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_108__.SubCategoryAppearance),
|
|
78516
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_109__.SubCategoryOverride),
|
|
78308
78517
|
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SyncMode),
|
|
78309
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
78310
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
78311
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
78518
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_110__.TerrainHeightOriginMode),
|
|
78519
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_110__.TerrainSettings),
|
|
78520
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_98__.TestRpcManager),
|
|
78312
78521
|
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_49__.TextString),
|
|
78313
78522
|
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_75__.TextureMapUnits),
|
|
78314
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
78315
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
78316
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
78317
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
78318
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
78319
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
78320
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
78321
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
78322
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
78323
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
78324
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
78325
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
78326
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
78327
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
78328
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
78329
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
78330
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
78331
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
78332
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
78333
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
78523
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_111__.TextureMapping),
|
|
78524
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_112__.TextureTransparency),
|
|
78525
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_113__.ThematicDisplay),
|
|
78526
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_113__.ThematicDisplayMode),
|
|
78527
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_113__.ThematicDisplaySensor),
|
|
78528
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_113__.ThematicDisplaySensorSettings),
|
|
78529
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_113__.ThematicGradientColorScheme),
|
|
78530
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_113__.ThematicGradientMode),
|
|
78531
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_113__.ThematicGradientSettings),
|
|
78532
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_115__.TileContentSource),
|
|
78533
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_147__.TileFormat),
|
|
78534
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_147__.TileHeader),
|
|
78535
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.TileMetadataReader),
|
|
78536
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.TileOptions),
|
|
78537
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_147__.TileReadError),
|
|
78538
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_147__.TileReadStatus),
|
|
78539
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.TreeFlags),
|
|
78540
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_116__.Tween),
|
|
78541
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_116__.Tweens),
|
|
78542
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_117__.TxnAction),
|
|
78334
78543
|
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.TypeDefinition),
|
|
78335
78544
|
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_8__.TypeOfChange),
|
|
78336
78545
|
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_39__.VerticalCRS),
|
|
78337
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
78338
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
78339
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
78340
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
78341
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
78342
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
78343
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
78344
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
78546
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_118__.ViewDetails),
|
|
78547
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_118__.ViewDetails3d),
|
|
78548
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_119__.ViewFlags),
|
|
78549
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_121__.WEB_RPC_CONSTANTS),
|
|
78550
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_138__.WebAppRpcProtocol),
|
|
78551
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_139__.WebAppRpcRequest),
|
|
78552
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_149__.WhiteOnWhiteReversalSettings),
|
|
78553
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_99__.WipRpcInterface),
|
|
78345
78554
|
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_42__.XyzRotation),
|
|
78346
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
78347
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
78348
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
78349
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
78350
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
78351
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
78352
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
78353
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
78354
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
78355
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
78356
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
78357
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
78358
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
78359
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
78360
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
78555
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_130__.aggregateLoad),
|
|
78556
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.bisectTileRange2d),
|
|
78557
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.bisectTileRange3d),
|
|
78558
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSolarAngles),
|
|
78559
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSolarDirection),
|
|
78560
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSolarDirectionFromAngles),
|
|
78561
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__.calculateSunriseOrSunset),
|
|
78562
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.compareIModelTileTreeIds),
|
|
78563
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.computeChildTileProps),
|
|
78564
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.computeChildTileRanges),
|
|
78565
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.computeTileChordTolerance),
|
|
78566
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.defaultTileOptions),
|
|
78567
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.getMaximumMajorTileFormatVersion),
|
|
78568
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_115__.getTileObjectReference),
|
|
78569
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.iModelTileTreeIdToString),
|
|
78361
78570
|
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_64__.iTwinChannel),
|
|
78362
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
78363
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
78571
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_130__.initializeRpcRequest),
|
|
78572
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_147__.isKnownTileFormat),
|
|
78364
78573
|
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.isPlacement2dProps),
|
|
78365
78574
|
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.isPlacement3dProps),
|
|
78366
78575
|
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.isPowerOfTwo),
|
|
@@ -78369,10 +78578,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78369
78578
|
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_78__.nativeAppChannel),
|
|
78370
78579
|
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_78__.nativeAppNotify),
|
|
78371
78580
|
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_60__.nextHighestPowerOfTwo),
|
|
78372
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
78373
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
78374
|
-
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */
|
|
78375
|
-
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */
|
|
78581
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_147__.nextPoint3d64FromByteStream),
|
|
78582
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.parseTileTreeIdAndContentId),
|
|
78583
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__.readTileContentDescription),
|
|
78584
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_147__.tileFormatFromNumber)
|
|
78376
78585
|
/* harmony export */ });
|
|
78377
78586
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
78378
78587
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -78461,68 +78670,69 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78461
78670
|
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
78462
78671
|
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
78463
78672
|
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
78464
|
-
/* harmony import */ var
|
|
78465
|
-
/* harmony import */ var
|
|
78466
|
-
/* harmony import */ var
|
|
78467
|
-
/* harmony import */ var
|
|
78468
|
-
/* harmony import */ var
|
|
78469
|
-
/* harmony import */ var
|
|
78470
|
-
/* harmony import */ var
|
|
78471
|
-
/* harmony import */ var
|
|
78472
|
-
/* harmony import */ var
|
|
78473
|
-
/* harmony import */ var
|
|
78474
|
-
/* harmony import */ var
|
|
78475
|
-
/* harmony import */ var
|
|
78476
|
-
/* harmony import */ var
|
|
78477
|
-
/* harmony import */ var
|
|
78478
|
-
/* harmony import */ var
|
|
78479
|
-
/* harmony import */ var
|
|
78480
|
-
/* harmony import */ var
|
|
78481
|
-
/* harmony import */ var
|
|
78482
|
-
/* harmony import */ var
|
|
78483
|
-
/* harmony import */ var
|
|
78484
|
-
/* harmony import */ var
|
|
78485
|
-
/* harmony import */ var
|
|
78486
|
-
/* harmony import */ var
|
|
78487
|
-
/* harmony import */ var
|
|
78488
|
-
/* harmony import */ var
|
|
78489
|
-
/* harmony import */ var
|
|
78490
|
-
/* harmony import */ var
|
|
78491
|
-
/* harmony import */ var
|
|
78492
|
-
/* harmony import */ var
|
|
78493
|
-
/* harmony import */ var
|
|
78494
|
-
/* harmony import */ var
|
|
78495
|
-
/* harmony import */ var
|
|
78496
|
-
/* harmony import */ var
|
|
78497
|
-
/* harmony import */ var
|
|
78498
|
-
/* harmony import */ var
|
|
78499
|
-
/* harmony import */ var
|
|
78500
|
-
/* harmony import */ var
|
|
78501
|
-
/* harmony import */ var
|
|
78502
|
-
/* harmony import */ var
|
|
78503
|
-
/* harmony import */ var
|
|
78504
|
-
/* harmony import */ var
|
|
78505
|
-
/* harmony import */ var
|
|
78506
|
-
/* harmony import */ var
|
|
78507
|
-
/* harmony import */ var
|
|
78508
|
-
/* harmony import */ var
|
|
78509
|
-
/* harmony import */ var
|
|
78510
|
-
/* harmony import */ var
|
|
78511
|
-
/* harmony import */ var
|
|
78512
|
-
/* harmony import */ var
|
|
78513
|
-
/* harmony import */ var
|
|
78514
|
-
/* harmony import */ var
|
|
78515
|
-
/* harmony import */ var
|
|
78516
|
-
/* harmony import */ var
|
|
78517
|
-
/* harmony import */ var
|
|
78518
|
-
/* harmony import */ var
|
|
78519
|
-
/* harmony import */ var
|
|
78520
|
-
/* harmony import */ var
|
|
78521
|
-
/* harmony import */ var
|
|
78522
|
-
/* harmony import */ var
|
|
78523
|
-
/* harmony import */ var
|
|
78524
|
-
/* harmony import */ var
|
|
78525
|
-
/* harmony import */ var
|
|
78673
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
78674
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
78675
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
78676
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
78677
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
78678
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
78679
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
78680
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
78681
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
78682
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
78683
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
78684
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
78685
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
78686
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
78687
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
78688
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
78689
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
78690
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
78691
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
78692
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
78693
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
78694
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
78695
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
78696
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
78697
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
78698
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
78699
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
78700
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
78701
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
78702
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
78703
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
78704
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
78705
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
78706
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
78707
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
78708
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
78709
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
78710
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
78711
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
78712
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
78713
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
78714
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
78715
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
78716
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
78717
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
78718
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
78719
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
78720
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
78721
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
78722
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
78723
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
78724
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
78725
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
78726
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
78727
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
78728
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
78729
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
78730
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
78731
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
78732
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
78733
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
78734
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
78735
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
78526
78736
|
/*---------------------------------------------------------------------------------------------
|
|
78527
78737
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
78528
78738
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -78674,6 +78884,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
78674
78884
|
|
|
78675
78885
|
|
|
78676
78886
|
|
|
78887
|
+
|
|
78677
78888
|
|
|
78678
78889
|
|
|
78679
78890
|
/** @docs-package-description
|
|
@@ -87838,7 +88049,8 @@ class IModelTileRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
87838
88049
|
* @beta
|
|
87839
88050
|
*/
|
|
87840
88051
|
async getTileCacheConfig(_tokenProps) {
|
|
87841
|
-
|
|
88052
|
+
const response = await this.forward(arguments);
|
|
88053
|
+
return response && { ...response, expiration: new Date(response.expiration) };
|
|
87842
88054
|
}
|
|
87843
88055
|
/**
|
|
87844
88056
|
* Returns connection information for external tile cache or an empty `CloudStorageContainerUrl` if no external tile cache is configured on the backend.
|
|
@@ -108707,6 +108919,7 @@ class ContextRealityModelState extends _itwin_core_common__WEBPACK_IMPORTED_MODU
|
|
|
108707
108919
|
name: props.name,
|
|
108708
108920
|
classifiers: this.classifiers,
|
|
108709
108921
|
planarClipMask: this.planarClipMaskSettings,
|
|
108922
|
+
getDisplaySettings: () => this.displaySettings,
|
|
108710
108923
|
}) :
|
|
108711
108924
|
(0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.createOrbitGtTileTreeReference)({
|
|
108712
108925
|
iModel,
|
|
@@ -108715,6 +108928,7 @@ class ContextRealityModelState extends _itwin_core_common__WEBPACK_IMPORTED_MODU
|
|
|
108715
108928
|
name: props.name,
|
|
108716
108929
|
classifiers: this.classifiers,
|
|
108717
108930
|
source: displayStyle,
|
|
108931
|
+
getDisplaySettings: () => this.displaySettings,
|
|
108718
108932
|
});
|
|
108719
108933
|
this.onPlanarClipMaskChanged.addListener((newSettings) => {
|
|
108720
108934
|
this._treeRef.planarClipMask = newSettings ? _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_1__.PlanarClipMaskState.create(newSettings) : undefined;
|
|
@@ -116133,6 +116347,7 @@ class GeometricModelState extends ModelState {
|
|
|
116133
116347
|
// If this is a reality model, its tile tree is obtained from reality data service URL.
|
|
116134
116348
|
const spatialModel = this.asSpatialModel;
|
|
116135
116349
|
const rdSourceKey = this.jsonProperties.rdSourceKey;
|
|
116350
|
+
const getDisplaySettings = () => { var _a; return (_a = view.displayStyle.settings.getRealityModelDisplaySettings(this.id)) !== null && _a !== void 0 ? _a : _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RealityModelDisplaySettings.defaults; };
|
|
116136
116351
|
if (rdSourceKey) {
|
|
116137
116352
|
const useOrbitGtTileTreeReference = rdSourceKey.format === _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RealityDataFormat.OPC;
|
|
116138
116353
|
const treeRef = (!useOrbitGtTileTreeReference) ?
|
|
@@ -116143,6 +116358,7 @@ class GeometricModelState extends ModelState {
|
|
|
116143
116358
|
modelId: this.id,
|
|
116144
116359
|
// url: tilesetUrl, // If rdSourceKey is defined, url is not used
|
|
116145
116360
|
classifiers: undefined !== spatialModel ? spatialModel.classifiers : undefined,
|
|
116361
|
+
getDisplaySettings,
|
|
116146
116362
|
}) :
|
|
116147
116363
|
(0,_tile_internal__WEBPACK_IMPORTED_MODULE_5__.createOrbitGtTileTreeReference)({
|
|
116148
116364
|
rdSourceKey,
|
|
@@ -116151,6 +116367,7 @@ class GeometricModelState extends ModelState {
|
|
|
116151
116367
|
modelId: this.id,
|
|
116152
116368
|
// orbitGtBlob: props.orbitGtBlob!, // If rdSourceKey is defined, orbitGtBlob is not used
|
|
116153
116369
|
classifiers: undefined !== spatialModel ? spatialModel.classifiers : undefined,
|
|
116370
|
+
getDisplaySettings,
|
|
116154
116371
|
});
|
|
116155
116372
|
return treeRef;
|
|
116156
116373
|
}
|
|
@@ -116174,6 +116391,7 @@ class GeometricModelState extends ModelState {
|
|
|
116174
116391
|
orbitGtBlob,
|
|
116175
116392
|
name: orbitGtName,
|
|
116176
116393
|
classifiers: undefined !== spatialModel ? spatialModel.classifiers : undefined,
|
|
116394
|
+
getDisplaySettings,
|
|
116177
116395
|
});
|
|
116178
116396
|
}
|
|
116179
116397
|
// If this is a TileTree reality model, create it's reference
|
|
@@ -116188,6 +116406,7 @@ class GeometricModelState extends ModelState {
|
|
|
116188
116406
|
modelId: this.id,
|
|
116189
116407
|
tilesetToDbTransform: this.jsonProperties.tilesetToDbTransform,
|
|
116190
116408
|
classifiers: undefined !== spatialModel ? spatialModel.classifiers : undefined,
|
|
116409
|
+
getDisplaySettings,
|
|
116191
116410
|
});
|
|
116192
116411
|
}
|
|
116193
116412
|
return (0,_tile_internal__WEBPACK_IMPORTED_MODULE_5__.createPrimaryTileTreeReference)(view, this);
|
|
@@ -125544,6 +125763,7 @@ class Viewport {
|
|
|
125544
125763
|
removals.push(settings.onWhiteOnWhiteReversalChanged.addListener(displayStyleChanged));
|
|
125545
125764
|
removals.push(settings.contextRealityModels.onPlanarClipMaskChanged.addListener(displayStyleChanged));
|
|
125546
125765
|
removals.push(settings.contextRealityModels.onAppearanceOverridesChanged.addListener(displayStyleChanged));
|
|
125766
|
+
removals.push(settings.contextRealityModels.onDisplaySettingsChanged.addListener(displayStyleChanged));
|
|
125547
125767
|
removals.push(settings.contextRealityModels.onChanged.addListener(displayStyleChanged));
|
|
125548
125768
|
removals.push(style.onOSMBuildingDisplayChanged.addListener(() => {
|
|
125549
125769
|
displayStyleChanged();
|
|
@@ -134876,43 +135096,6 @@ var EdgeParams;
|
|
|
134876
135096
|
})(EdgeParams || (EdgeParams = {}));
|
|
134877
135097
|
|
|
134878
135098
|
|
|
134879
|
-
/***/ }),
|
|
134880
|
-
|
|
134881
|
-
/***/ "../../core/frontend/lib/esm/render/primitives/PointCloudPrimitive.js":
|
|
134882
|
-
/*!****************************************************************************!*\
|
|
134883
|
-
!*** ../../core/frontend/lib/esm/render/primitives/PointCloudPrimitive.js ***!
|
|
134884
|
-
\****************************************************************************/
|
|
134885
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
134886
|
-
|
|
134887
|
-
"use strict";
|
|
134888
|
-
__webpack_require__.r(__webpack_exports__);
|
|
134889
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
134890
|
-
/* harmony export */ "PointCloudArgs": () => (/* binding */ PointCloudArgs)
|
|
134891
|
-
/* harmony export */ });
|
|
134892
|
-
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
134893
|
-
/*---------------------------------------------------------------------------------------------
|
|
134894
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
134895
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
134896
|
-
*--------------------------------------------------------------------------------------------*/
|
|
134897
|
-
/** @packageDocumentation
|
|
134898
|
-
* @module Rendering
|
|
134899
|
-
*/
|
|
134900
|
-
|
|
134901
|
-
/** @internal */
|
|
134902
|
-
class PointCloudArgs {
|
|
134903
|
-
constructor(points, pointParams, colors, features, voxelSize = -1, colorIsBgr = false, minimumPointSize = 1) {
|
|
134904
|
-
this.features = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.FeatureIndex();
|
|
134905
|
-
this.points = points;
|
|
134906
|
-
this.colors = colors;
|
|
134907
|
-
this.pointParams = pointParams;
|
|
134908
|
-
this.voxelSize = voxelSize;
|
|
134909
|
-
this.colorIsBgr = colorIsBgr;
|
|
134910
|
-
this.minimumPointSize = minimumPointSize;
|
|
134911
|
-
features.toFeatureIndex(this.features);
|
|
134912
|
-
}
|
|
134913
|
-
}
|
|
134914
|
-
|
|
134915
|
-
|
|
134916
135099
|
/***/ }),
|
|
134917
135100
|
|
|
134918
135101
|
/***/ "../../core/frontend/lib/esm/render/primitives/PointStringParams.js":
|
|
@@ -138345,7 +138528,8 @@ class Mesh {
|
|
|
138345
138528
|
else if (1 < indices.length)
|
|
138346
138529
|
this.indices = indices;
|
|
138347
138530
|
}
|
|
138348
|
-
toFeatureIndex(
|
|
138531
|
+
toFeatureIndex(output) {
|
|
138532
|
+
const index = output !== null && output !== void 0 ? output : new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FeatureIndex();
|
|
138349
138533
|
if (!this.initialized) {
|
|
138350
138534
|
index.type = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FeatureIndexType.Empty;
|
|
138351
138535
|
}
|
|
@@ -138357,6 +138541,7 @@ class Mesh {
|
|
|
138357
138541
|
index.type = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.FeatureIndexType.NonUniform;
|
|
138358
138542
|
index.featureIDs = new Uint32Array(this.indices);
|
|
138359
138543
|
}
|
|
138544
|
+
return index;
|
|
138360
138545
|
}
|
|
138361
138546
|
}
|
|
138362
138547
|
Mesh.Features = Features;
|
|
@@ -139489,6 +139674,7 @@ class BranchState {
|
|
|
139489
139674
|
get frustumScale() { return this._opts.frustumScale; }
|
|
139490
139675
|
get appearanceProvider() { return this._opts.appearanceProvider; }
|
|
139491
139676
|
get secondaryClassifiers() { return this._opts.secondaryClassifiers; }
|
|
139677
|
+
get realityModelDisplaySettings() { return this._opts.realityModelDisplaySettings; }
|
|
139492
139678
|
get symbologyOverrides() {
|
|
139493
139679
|
return this._opts.symbologyOverrides;
|
|
139494
139680
|
}
|
|
@@ -139502,21 +139688,23 @@ class BranchState {
|
|
|
139502
139688
|
}
|
|
139503
139689
|
/** Create a BranchState from a Branch. Any properties not explicitly specified by the new Branch are inherited from the previous BranchState. */
|
|
139504
139690
|
static fromBranch(prev, branch) {
|
|
139505
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k;
|
|
139506
|
-
|
|
139507
|
-
|
|
139508
|
-
|
|
139509
|
-
|
|
139510
|
-
|
|
139511
|
-
|
|
139512
|
-
|
|
139513
|
-
|
|
139514
|
-
|
|
139515
|
-
|
|
139516
|
-
|
|
139517
|
-
|
|
139518
|
-
|
|
139519
|
-
|
|
139691
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
|
139692
|
+
return new BranchState({
|
|
139693
|
+
viewFlags: branch.branch.getViewFlags(prev.viewFlags),
|
|
139694
|
+
transform: prev.transform.multiplyTransformTransform(branch.localToWorldTransform),
|
|
139695
|
+
symbologyOverrides: (_a = branch.branch.symbologyOverrides) !== null && _a !== void 0 ? _a : prev.symbologyOverrides,
|
|
139696
|
+
iModel: (_b = branch.iModel) !== null && _b !== void 0 ? _b : prev.iModel,
|
|
139697
|
+
planarClassifier: (undefined !== branch.planarClassifier && undefined !== branch.planarClassifier.texture) ? branch.planarClassifier : prev.planarClassifier,
|
|
139698
|
+
textureDrape: (_c = branch.textureDrape) !== null && _c !== void 0 ? _c : prev.textureDrape,
|
|
139699
|
+
clipVolume: branch.clips,
|
|
139700
|
+
edgeSettings: (_d = branch.edgeSettings) !== null && _d !== void 0 ? _d : prev.edgeSettings,
|
|
139701
|
+
is3d: (_f = (_e = branch.frustum) === null || _e === void 0 ? void 0 : _e.is3d) !== null && _f !== void 0 ? _f : prev.is3d,
|
|
139702
|
+
frustumScale: (_h = (_g = branch.frustum) === null || _g === void 0 ? void 0 : _g.scale) !== null && _h !== void 0 ? _h : prev.frustumScale,
|
|
139703
|
+
secondaryClassifiers: (_j = branch.secondaryClassifiers) !== null && _j !== void 0 ? _j : prev.secondaryClassifiers,
|
|
139704
|
+
// The branch can augment the symbology overrides. If it doesn't want to, allow its parent to do so, unless this branch supplies its own symbology overrides.
|
|
139705
|
+
appearanceProvider: (_k = branch.appearanceProvider) !== null && _k !== void 0 ? _k : (branch.branch.symbologyOverrides ? undefined : prev.appearanceProvider),
|
|
139706
|
+
realityModelDisplaySettings: (_l = branch.branch.realityModelDisplaySettings) !== null && _l !== void 0 ? _l : prev.realityModelDisplaySettings,
|
|
139707
|
+
});
|
|
139520
139708
|
}
|
|
139521
139709
|
getFeatureAppearance(overrides, elemLo, elemHi, subcatLo, subcatHi, geomClass, modelLo, modelHi, type, animationNodeId) {
|
|
139522
139710
|
if (this._opts.appearanceProvider)
|
|
@@ -139627,12 +139815,16 @@ class BranchUniforms {
|
|
|
139627
139815
|
this._stack.pushBranch(branch);
|
|
139628
139816
|
if (this.top.clipVolume)
|
|
139629
139817
|
this.clipStack.push(this.top.clipVolume);
|
|
139818
|
+
if (branch.branch.realityModelDisplaySettings)
|
|
139819
|
+
this._target.uniforms.realityModel.update(branch.branch.realityModelDisplaySettings);
|
|
139630
139820
|
}
|
|
139631
139821
|
pushState(state) {
|
|
139632
139822
|
(0,_Sync__WEBPACK_IMPORTED_MODULE_6__.desync)(this);
|
|
139633
139823
|
this._stack.pushState(state);
|
|
139634
139824
|
if (this.top.clipVolume)
|
|
139635
139825
|
this.clipStack.push(this.top.clipVolume);
|
|
139826
|
+
if (state.realityModelDisplaySettings)
|
|
139827
|
+
this._target.uniforms.realityModel.update(state.realityModelDisplaySettings);
|
|
139636
139828
|
}
|
|
139637
139829
|
pop() {
|
|
139638
139830
|
(0,_Sync__WEBPACK_IMPORTED_MODULE_6__.desync)(this);
|
|
@@ -146496,16 +146688,15 @@ class PointCloudGeometry extends _CachedGeometry__WEBPACK_IMPORTED_MODULE_3__.Ca
|
|
|
146496
146688
|
super();
|
|
146497
146689
|
this._colorHandle = undefined;
|
|
146498
146690
|
this.buffers = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_5__.BuffersContainer.create();
|
|
146499
|
-
this._vertices = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_5__.QBufferHandle3d.create(pointCloud.
|
|
146691
|
+
this._vertices = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_5__.QBufferHandle3d.create(pointCloud.qparams, pointCloud.positions);
|
|
146500
146692
|
const attrPos = _AttributeMap__WEBPACK_IMPORTED_MODULE_2__.AttributeMap.findAttribute("a_pos", 2 /* PointCloud */, false);
|
|
146501
146693
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== attrPos);
|
|
146502
|
-
const vertexDataType = (pointCloud.
|
|
146694
|
+
const vertexDataType = (pointCloud.positions instanceof Uint8Array) ? _GL__WEBPACK_IMPORTED_MODULE_4__.GL.DataType.UnsignedByte : _GL__WEBPACK_IMPORTED_MODULE_4__.GL.DataType.UnsignedShort;
|
|
146503
146695
|
this.buffers.addBuffer(this._vertices, [_AttributeBuffers__WEBPACK_IMPORTED_MODULE_5__.BufferParameters.create(attrPos.location, 3, vertexDataType, false, 0, 0, false)]);
|
|
146504
|
-
this._vertexCount = pointCloud.
|
|
146696
|
+
this._vertexCount = pointCloud.positions.length / 3;
|
|
146505
146697
|
this._hasFeatures = _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FeatureIndexType.Empty !== pointCloud.features.type;
|
|
146506
|
-
this.
|
|
146507
|
-
this.colorIsBgr = pointCloud.
|
|
146508
|
-
this.minimumPointSize = pointCloud.minimumPointSize;
|
|
146698
|
+
this.voxelSize = pointCloud.voxelSize;
|
|
146699
|
+
this.colorIsBgr = "bgr" === pointCloud.colorFormat;
|
|
146509
146700
|
if (undefined !== pointCloud.colors) {
|
|
146510
146701
|
this._colorHandle = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_5__.BufferHandle.createArrayBuffer(pointCloud.colors);
|
|
146511
146702
|
const attrColor = _AttributeMap__WEBPACK_IMPORTED_MODULE_2__.AttributeMap.findAttribute("a_color", 2 /* PointCloud */, false);
|
|
@@ -146542,9 +146733,10 @@ class PointCloudGeometry extends _CachedGeometry__WEBPACK_IMPORTED_MODULE_3__.Ca
|
|
|
146542
146733
|
_System__WEBPACK_IMPORTED_MODULE_6__.System.instance.context.drawArrays(_GL__WEBPACK_IMPORTED_MODULE_4__.GL.PrimitiveType.Points, 0, this._vertexCount);
|
|
146543
146734
|
this.buffers.unbind();
|
|
146544
146735
|
}
|
|
146736
|
+
// ###TODO delete this.
|
|
146545
146737
|
getLineWeight(_params) {
|
|
146546
146738
|
// If line weight < 0 it is real size in meters (voxel size).
|
|
146547
|
-
return (this.
|
|
146739
|
+
return (this.voxelSize > 0) ? -this.voxelSize : 1;
|
|
146548
146740
|
}
|
|
146549
146741
|
}
|
|
146550
146742
|
|
|
@@ -147280,6 +147472,91 @@ class RealityMeshGeometry extends _CachedGeometry__WEBPACK_IMPORTED_MODULE_7__.I
|
|
|
147280
147472
|
}
|
|
147281
147473
|
|
|
147282
147474
|
|
|
147475
|
+
/***/ }),
|
|
147476
|
+
|
|
147477
|
+
/***/ "../../core/frontend/lib/esm/render/webgl/RealityModelUniforms.js":
|
|
147478
|
+
/*!************************************************************************!*\
|
|
147479
|
+
!*** ../../core/frontend/lib/esm/render/webgl/RealityModelUniforms.js ***!
|
|
147480
|
+
\************************************************************************/
|
|
147481
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
147482
|
+
|
|
147483
|
+
"use strict";
|
|
147484
|
+
__webpack_require__.r(__webpack_exports__);
|
|
147485
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
147486
|
+
/* harmony export */ "PointCloudUniforms": () => (/* binding */ PointCloudUniforms),
|
|
147487
|
+
/* harmony export */ "RealityModelUniforms": () => (/* binding */ RealityModelUniforms)
|
|
147488
|
+
/* harmony export */ });
|
|
147489
|
+
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
147490
|
+
/* harmony import */ var _Sync__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Sync */ "../../core/frontend/lib/esm/render/webgl/Sync.js");
|
|
147491
|
+
/*---------------------------------------------------------------------------------------------
|
|
147492
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
147493
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
147494
|
+
*--------------------------------------------------------------------------------------------*/
|
|
147495
|
+
/** @packageDocumentation
|
|
147496
|
+
* @module WebGL
|
|
147497
|
+
*/
|
|
147498
|
+
|
|
147499
|
+
|
|
147500
|
+
/** A Target keeps track of the current settings for drawing point clouds.
|
|
147501
|
+
* Pushing a Branch may *replace* the current settings. Popping the Branch does not reset them. It is expected that every Branch containing
|
|
147502
|
+
* a point cloud will also specify the settings for drawing that point cloud.
|
|
147503
|
+
* This permits the same point cloud graphics to be rendered differently in different viewports.
|
|
147504
|
+
* In future these uniforms will include eye-dome lighting.
|
|
147505
|
+
* @internal
|
|
147506
|
+
*/
|
|
147507
|
+
class PointCloudUniforms {
|
|
147508
|
+
constructor() {
|
|
147509
|
+
this.syncKey = 0;
|
|
147510
|
+
this._settings = _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PointCloudDisplaySettings.defaults;
|
|
147511
|
+
// vec3 u_pointSize
|
|
147512
|
+
// x = fixed point size in pixels if > 0, else scale applied to voxel size (negated).
|
|
147513
|
+
// y = minimum size in pixels if using voxel size.
|
|
147514
|
+
// z = maximum size in pixels if using voxel size
|
|
147515
|
+
// w = 1.0 if drawing square points, 0.0 if round.
|
|
147516
|
+
this._vec4 = new Float32Array(4);
|
|
147517
|
+
this.initialize(this._settings);
|
|
147518
|
+
}
|
|
147519
|
+
update(settings) {
|
|
147520
|
+
if (this._settings.equals(settings))
|
|
147521
|
+
return;
|
|
147522
|
+
this._settings = settings;
|
|
147523
|
+
(0,_Sync__WEBPACK_IMPORTED_MODULE_1__.desync)(this);
|
|
147524
|
+
this.initialize(settings);
|
|
147525
|
+
}
|
|
147526
|
+
bind(uniform) {
|
|
147527
|
+
if (!(0,_Sync__WEBPACK_IMPORTED_MODULE_1__.sync)(this, uniform))
|
|
147528
|
+
uniform.setUniform4fv(this._vec4);
|
|
147529
|
+
}
|
|
147530
|
+
initialize(settings) {
|
|
147531
|
+
this._vec4[0] = "pixel" === settings.sizeMode ? settings.pixelSize : -settings.voxelScale;
|
|
147532
|
+
this._vec4[1] = settings.minPixelsPerVoxel;
|
|
147533
|
+
this._vec4[2] = settings.maxPixelsPerVoxel;
|
|
147534
|
+
this._vec4[3] = "square" === settings.shape ? 1 : 0;
|
|
147535
|
+
}
|
|
147536
|
+
}
|
|
147537
|
+
/** Uniforms affecting how reality models are drawn.
|
|
147538
|
+
* Pushing a Branch may *replace* the current settings. Popping the Branch does not reset them. It is expected that every Branch containing
|
|
147539
|
+
* a reality model will also specify the settings for drawing that reality model.
|
|
147540
|
+
* This permits the same reality model graphics to be rendered differently in different viewports.
|
|
147541
|
+
* In future these uniforms may include additional settings for reality meshes - currently only the override color ratio applies to them.
|
|
147542
|
+
* @internal
|
|
147543
|
+
*/
|
|
147544
|
+
class RealityModelUniforms {
|
|
147545
|
+
constructor() {
|
|
147546
|
+
// ###TODO when we need it: public readonly mesh = new RealityMeshUniforms();
|
|
147547
|
+
this.pointCloud = new PointCloudUniforms();
|
|
147548
|
+
this._overrideColorMix = 0.5;
|
|
147549
|
+
}
|
|
147550
|
+
update(settings) {
|
|
147551
|
+
this._overrideColorMix = settings.overrideColorRatio;
|
|
147552
|
+
this.pointCloud.update(settings.pointCloud);
|
|
147553
|
+
}
|
|
147554
|
+
bindOverrideColorMix(uniform) {
|
|
147555
|
+
uniform.setUniform1f(this._overrideColorMix);
|
|
147556
|
+
}
|
|
147557
|
+
}
|
|
147558
|
+
|
|
147559
|
+
|
|
147283
147560
|
/***/ }),
|
|
147284
147561
|
|
|
147285
147562
|
/***/ "../../core/frontend/lib/esm/render/webgl/RenderBuffer.js":
|
|
@@ -155675,6 +155952,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
155675
155952
|
/* harmony import */ var _Sync__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./Sync */ "../../core/frontend/lib/esm/render/webgl/Sync.js");
|
|
155676
155953
|
/* harmony import */ var _ThematicUniforms__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./ThematicUniforms */ "../../core/frontend/lib/esm/render/webgl/ThematicUniforms.js");
|
|
155677
155954
|
/* harmony import */ var _ViewRectUniforms__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ViewRectUniforms */ "../../core/frontend/lib/esm/render/webgl/ViewRectUniforms.js");
|
|
155955
|
+
/* harmony import */ var _RealityModelUniforms__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./RealityModelUniforms */ "../../core/frontend/lib/esm/render/webgl/RealityModelUniforms.js");
|
|
155678
155956
|
/*---------------------------------------------------------------------------------------------
|
|
155679
155957
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
155680
155958
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -155693,6 +155971,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
155693
155971
|
|
|
155694
155972
|
|
|
155695
155973
|
|
|
155974
|
+
|
|
155696
155975
|
class PixelWidthFactor {
|
|
155697
155976
|
constructor() {
|
|
155698
155977
|
/** The pixel width factor depends on both the frustum and the view rect. It also depends on the frustum scale associated with the current Branch. */
|
|
@@ -155786,6 +156065,7 @@ class TargetUniforms {
|
|
|
155786
156065
|
this.style = new _StyleUniforms__WEBPACK_IMPORTED_MODULE_7__.StyleUniforms();
|
|
155787
156066
|
this.lights = new _LightingUniforms__WEBPACK_IMPORTED_MODULE_5__.LightingUniforms();
|
|
155788
156067
|
this.thematic = new _ThematicUniforms__WEBPACK_IMPORTED_MODULE_9__.ThematicUniforms();
|
|
156068
|
+
this.realityModel = new _RealityModelUniforms__WEBPACK_IMPORTED_MODULE_11__.RealityModelUniforms();
|
|
155789
156069
|
this._pixelWidthFactor = new PixelWidthFactor();
|
|
155790
156070
|
this._sunDirection = new SunDirection();
|
|
155791
156071
|
this.frustum = new _FrustumUniforms__WEBPACK_IMPORTED_MODULE_3__.FrustumUniforms();
|
|
@@ -156370,10 +156650,6 @@ PointStringTechnique._kUnquantized = PointStringTechnique._kHilite + numHiliteVa
|
|
|
156370
156650
|
class PointCloudTechnique extends VariedTechnique {
|
|
156371
156651
|
constructor(gl) {
|
|
156372
156652
|
super(PointCloudTechnique._kHilite + 2);
|
|
156373
|
-
this._earlyZFlags = [
|
|
156374
|
-
_TechniqueFlags__WEBPACK_IMPORTED_MODULE_32__.TechniqueFlags.fromDescription("Opaque-Hilite-Overrides"),
|
|
156375
|
-
_TechniqueFlags__WEBPACK_IMPORTED_MODULE_32__.TechniqueFlags.fromDescription("Opaque-Hilite-Classified"),
|
|
156376
|
-
];
|
|
156377
156653
|
for (let iClassified = 0 /* No */; iClassified <= 1 /* Yes */; iClassified++) {
|
|
156378
156654
|
this.addHiliteShader(gl, 0 /* No */, iClassified, "quantized", (_inst, classified) => (0,_glsl_PointCloud__WEBPACK_IMPORTED_MODULE_21__.createPointCloudHiliter)(classified));
|
|
156379
156655
|
const flags = scratchTechniqueFlags;
|
|
@@ -156385,11 +156661,7 @@ class PointCloudTechnique extends VariedTechnique {
|
|
|
156385
156661
|
const builder = (0,_glsl_PointCloud__WEBPACK_IMPORTED_MODULE_21__.createPointCloudBuilder)(flags.isClassified, featureMode, thematic);
|
|
156386
156662
|
if (2 /* Overrides */ === featureMode) {
|
|
156387
156663
|
(0,_glsl_FeatureSymbology__WEBPACK_IMPORTED_MODULE_16__.addUniformFeatureSymbology)(builder, true);
|
|
156388
|
-
builder.vert
|
|
156389
|
-
prog.addGraphicUniform("u_overrideColorMix", (uniform, params) => {
|
|
156390
|
-
uniform.setUniform1f(params.geometry.asPointCloud.overrideColorMix);
|
|
156391
|
-
});
|
|
156392
|
-
});
|
|
156664
|
+
(0,_glsl_RealityMesh__WEBPACK_IMPORTED_MODULE_24__.addColorOverrideMix)(builder.vert);
|
|
156393
156665
|
builder.vert.set(7 /* ApplyFeatureColor */, _glsl_FeatureSymbology__WEBPACK_IMPORTED_MODULE_16__.mixFeatureColor);
|
|
156394
156666
|
}
|
|
156395
156667
|
this.addFeatureId(builder, featureMode);
|
|
@@ -156437,7 +156709,7 @@ class RealityMeshTechnique extends VariedTechnique {
|
|
|
156437
156709
|
flags.isClassified = iClassified;
|
|
156438
156710
|
flags.isWiremesh = wiremesh;
|
|
156439
156711
|
flags.isTranslucent = 1 === iTranslucent;
|
|
156440
|
-
const builder = (0,_glsl_RealityMesh__WEBPACK_IMPORTED_MODULE_24__
|
|
156712
|
+
const builder = (0,_glsl_RealityMesh__WEBPACK_IMPORTED_MODULE_24__.createRealityMeshBuilder)(flags);
|
|
156441
156713
|
if (flags.isTranslucent) {
|
|
156442
156714
|
(0,_glsl_Common__WEBPACK_IMPORTED_MODULE_9__.addShaderFlags)(builder);
|
|
156443
156715
|
(0,_glsl_Translucency__WEBPACK_IMPORTED_MODULE_28__.addTranslucency)(builder);
|
|
@@ -162780,14 +163052,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
162780
163052
|
/* harmony export */ "createPointCloudBuilder": () => (/* binding */ createPointCloudBuilder),
|
|
162781
163053
|
/* harmony export */ "createPointCloudHiliter": () => (/* binding */ createPointCloudHiliter)
|
|
162782
163054
|
/* harmony export */ });
|
|
162783
|
-
/* harmony import */ var
|
|
162784
|
-
/* harmony import */ var
|
|
162785
|
-
/* harmony import */ var
|
|
162786
|
-
/* harmony import */ var
|
|
162787
|
-
/* harmony import */ var
|
|
162788
|
-
/* harmony import */ var
|
|
162789
|
-
/* harmony import */ var
|
|
162790
|
-
/* harmony import */ var
|
|
163055
|
+
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
163056
|
+
/* harmony import */ var _AttributeMap__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../AttributeMap */ "../../core/frontend/lib/esm/render/webgl/AttributeMap.js");
|
|
163057
|
+
/* harmony import */ var _ShaderBuilder__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../ShaderBuilder */ "../../core/frontend/lib/esm/render/webgl/ShaderBuilder.js");
|
|
163058
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/frontend/lib/esm/render/webgl/glsl/FeatureSymbology.js");
|
|
163059
|
+
/* harmony import */ var _PlanarClassification__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./PlanarClassification */ "../../core/frontend/lib/esm/render/webgl/glsl/PlanarClassification.js");
|
|
163060
|
+
/* harmony import */ var _Vertex__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Vertex */ "../../core/frontend/lib/esm/render/webgl/glsl/Vertex.js");
|
|
163061
|
+
/* harmony import */ var _Viewport__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./Viewport */ "../../core/frontend/lib/esm/render/webgl/glsl/Viewport.js");
|
|
163062
|
+
/* harmony import */ var _Thematic__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./Thematic */ "../../core/frontend/lib/esm/render/webgl/glsl/Thematic.js");
|
|
163063
|
+
/* harmony import */ var _Surface__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./Surface */ "../../core/frontend/lib/esm/render/webgl/glsl/Surface.js");
|
|
162791
163064
|
/*---------------------------------------------------------------------------------------------
|
|
162792
163065
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
162793
163066
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -162803,68 +163076,91 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
162803
163076
|
|
|
162804
163077
|
|
|
162805
163078
|
|
|
162806
|
-
|
|
163079
|
+
|
|
163080
|
+
// Revert components if color format is BGR instead of RGB.
|
|
163081
|
+
const computeColor = `
|
|
163082
|
+
return u_pointCloud.y == 1.0 ? vec4(a_color.b, a_color.g, a_color.r, 1.0) : vec4(a_color, 1.0);
|
|
163083
|
+
`;
|
|
162807
163084
|
const computeBaseColor = "return v_color;";
|
|
163085
|
+
// Round the point unless drawing square points.
|
|
162808
163086
|
const roundPointDiscard = `
|
|
162809
|
-
|
|
162810
|
-
|
|
163087
|
+
if (u_pointCloudSettings.w == 1.0)
|
|
163088
|
+
return false;
|
|
163089
|
+
|
|
163090
|
+
vec2 pointXY = (2.0 * gl_PointCoord - 1.0);
|
|
163091
|
+
return dot(pointXY, pointXY) > 1.0;
|
|
162811
163092
|
`;
|
|
162812
163093
|
const checkForClassifiedDiscard = "return baseColor.a == 0.0;";
|
|
162813
163094
|
const computePosition = `
|
|
162814
163095
|
gl_PointSize = 1.0;
|
|
162815
163096
|
vec4 pos = MAT_MVP * rawPos;
|
|
163097
|
+
if (u_pointCloudSettings.x > 0.0) {
|
|
163098
|
+
// Size is specified in pixels.
|
|
163099
|
+
gl_PointSize = u_pointCloudSettings.x;
|
|
163100
|
+
return pos;
|
|
163101
|
+
}
|
|
162816
163102
|
|
|
162817
|
-
|
|
162818
|
-
|
|
162819
|
-
|
|
162820
|
-
|
|
163103
|
+
// Point size is in meters (voxel size).
|
|
163104
|
+
if (pos.w <= 0.0) {
|
|
163105
|
+
// Cannot perform perspective divide below.
|
|
163106
|
+
return pos;
|
|
162821
163107
|
}
|
|
163108
|
+
|
|
163109
|
+
// Convert voxel size in meters into pixel size, then compute pixel size, taking perspective into account.
|
|
163110
|
+
mat4 toView = u_viewportTransformation * MAT_MVP;
|
|
163111
|
+
float scale = length(toView[0].xyz);
|
|
163112
|
+
gl_PointSize = -u_pointCloudSettings.x * clamp(u_pointCloud.x * scale / pos.w, u_pointCloudSettings.y, u_pointCloudSettings.z);
|
|
162822
163113
|
return pos;
|
|
162823
163114
|
`;
|
|
162824
163115
|
function createBuilder() {
|
|
162825
|
-
const builder = new
|
|
163116
|
+
const builder = new _ShaderBuilder__WEBPACK_IMPORTED_MODULE_2__.ProgramBuilder(_AttributeMap__WEBPACK_IMPORTED_MODULE_1__.AttributeMap.findAttributeMap(2 /* PointCloud */, false));
|
|
162826
163117
|
const vert = builder.vert;
|
|
162827
|
-
(0,
|
|
162828
|
-
(0,_Viewport__WEBPACK_IMPORTED_MODULE_5__.addViewportTransformation)(vert);
|
|
163118
|
+
(0,_Viewport__WEBPACK_IMPORTED_MODULE_6__.addViewportTransformation)(vert);
|
|
162829
163119
|
vert.set(10 /* ComputePosition */, computePosition);
|
|
162830
|
-
(0,
|
|
163120
|
+
(0,_Vertex__WEBPACK_IMPORTED_MODULE_5__.addModelViewProjectionMatrix)(vert);
|
|
163121
|
+
builder.frag.set(0 /* CheckForEarlyDiscard */, roundPointDiscard);
|
|
163122
|
+
// Uniforms based on the PointCloudDisplaySettings.
|
|
163123
|
+
builder.addUniform("u_pointCloudSettings", 5 /* Vec4 */, (prog) => {
|
|
163124
|
+
prog.addGraphicUniform("u_pointCloudSettings", (uniform, params) => {
|
|
163125
|
+
params.target.uniforms.realityModel.pointCloud.bind(uniform);
|
|
163126
|
+
});
|
|
163127
|
+
});
|
|
163128
|
+
// Uniforms based on the PointCloudGeometry.
|
|
163129
|
+
builder.vert.addUniform("u_pointCloud", 3 /* Vec2 */, (prog) => {
|
|
163130
|
+
prog.addGraphicUniform("u_pointCloud", (uniform, params) => {
|
|
163131
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(params.geometry.asPointCloud !== undefined);
|
|
163132
|
+
scratchPointCloud[0] = params.geometry.asPointCloud.voxelSize;
|
|
163133
|
+
scratchPointCloud[1] = params.geometry.asPointCloud.colorIsBgr ? 1 : 0;
|
|
163134
|
+
uniform.setUniform2fv(scratchPointCloud);
|
|
163135
|
+
});
|
|
163136
|
+
});
|
|
162831
163137
|
return builder;
|
|
162832
163138
|
}
|
|
162833
|
-
const
|
|
163139
|
+
const scratchPointCloud = new Float32Array([0, 0]);
|
|
162834
163140
|
/** @internal */
|
|
162835
163141
|
function createPointCloudBuilder(classified, featureMode, thematic) {
|
|
162836
163142
|
const builder = createBuilder();
|
|
162837
163143
|
builder.addVarying("v_color", 5 /* Vec4 */);
|
|
162838
163144
|
builder.vert.set(5 /* ComputeBaseColor */, computeColor);
|
|
162839
|
-
|
|
162840
|
-
frag.set(1 /* ComputeBaseColor */, computeBaseColor);
|
|
162841
|
-
frag.set(0 /* CheckForEarlyDiscard */, roundPointDiscard);
|
|
163145
|
+
builder.frag.set(1 /* ComputeBaseColor */, computeBaseColor);
|
|
162842
163146
|
if (classified) {
|
|
162843
|
-
(0,
|
|
163147
|
+
(0,_PlanarClassification__WEBPACK_IMPORTED_MODULE_4__.addColorPlanarClassifier)(builder, false, thematic);
|
|
162844
163148
|
builder.frag.set(4 /* CheckForDiscard */, checkForClassifiedDiscard);
|
|
162845
163149
|
if (0 /* None */ !== featureMode)
|
|
162846
|
-
(0,
|
|
163150
|
+
(0,_PlanarClassification__WEBPACK_IMPORTED_MODULE_4__.addFeaturePlanarClassifier)(builder);
|
|
162847
163151
|
}
|
|
162848
163152
|
if (1 /* Yes */ === thematic) {
|
|
162849
|
-
(0,
|
|
162850
|
-
(0,
|
|
162851
|
-
}
|
|
162852
|
-
builder.vert.addUniform("u_pointCloudParams", 3 /* Vec2 */, (prog) => {
|
|
162853
|
-
prog.addGraphicUniform("u_pointCloudParams", (uniform, params) => {
|
|
162854
|
-
const pointCloud = params.geometry.asPointCloud;
|
|
162855
|
-
scratchPointCloudParams[0] = pointCloud.colorIsBgr ? 1 : 0; // Volume classifier, by element color.
|
|
162856
|
-
scratchPointCloudParams[1] = pointCloud.minimumPointSize;
|
|
162857
|
-
uniform.setUniform2fv(scratchPointCloudParams);
|
|
162858
|
-
});
|
|
162859
|
-
});
|
|
163153
|
+
(0,_Thematic__WEBPACK_IMPORTED_MODULE_7__.addThematicDisplay)(builder, true);
|
|
163154
|
+
(0,_Surface__WEBPACK_IMPORTED_MODULE_8__.addTexture)(builder, 0 /* No */, 1 /* Yes */, true);
|
|
163155
|
+
}
|
|
162860
163156
|
return builder;
|
|
162861
163157
|
}
|
|
162862
163158
|
/** @internal */
|
|
162863
163159
|
function createPointCloudHiliter(classified) {
|
|
162864
163160
|
const builder = createBuilder();
|
|
162865
|
-
(0,
|
|
163161
|
+
(0,_FeatureSymbology__WEBPACK_IMPORTED_MODULE_3__.addUniformHiliter)(builder);
|
|
162866
163162
|
if (classified)
|
|
162867
|
-
(0,
|
|
163163
|
+
(0,_PlanarClassification__WEBPACK_IMPORTED_MODULE_4__.addHilitePlanarClassifier)(builder, false);
|
|
162868
163164
|
return builder;
|
|
162869
163165
|
}
|
|
162870
163166
|
|
|
@@ -163315,9 +163611,10 @@ function createPolylineHiliter(isInstanced, positionType) {
|
|
|
163315
163611
|
"use strict";
|
|
163316
163612
|
__webpack_require__.r(__webpack_exports__);
|
|
163317
163613
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
163614
|
+
/* harmony export */ "addColorOverrideMix": () => (/* binding */ addColorOverrideMix),
|
|
163318
163615
|
/* harmony export */ "createClassifierRealityMeshHiliter": () => (/* binding */ createClassifierRealityMeshHiliter),
|
|
163319
|
-
/* harmony export */ "
|
|
163320
|
-
/* harmony export */ "
|
|
163616
|
+
/* harmony export */ "createRealityMeshBuilder": () => (/* binding */ createRealityMeshBuilder),
|
|
163617
|
+
/* harmony export */ "createRealityMeshHiliter": () => (/* binding */ createRealityMeshHiliter)
|
|
163321
163618
|
/* harmony export */ });
|
|
163322
163619
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
163323
163620
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
@@ -163557,10 +163854,11 @@ function addThematicToRealityMesh(builder, gradientTextureUnit) {
|
|
|
163557
163854
|
});
|
|
163558
163855
|
});
|
|
163559
163856
|
}
|
|
163857
|
+
/** @internal */
|
|
163560
163858
|
function addColorOverrideMix(frag) {
|
|
163561
163859
|
frag.addUniform("u_overrideColorMix", 2 /* Float */, (prog) => {
|
|
163562
163860
|
prog.addGraphicUniform("u_overrideColorMix", (uniform, params) => {
|
|
163563
|
-
|
|
163861
|
+
params.target.uniforms.realityModel.bindOverrideColorMix(uniform);
|
|
163564
163862
|
});
|
|
163565
163863
|
});
|
|
163566
163864
|
}
|
|
@@ -171054,8 +171352,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171054
171352
|
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
171055
171353
|
/* harmony import */ var _RealityDataSource__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../RealityDataSource */ "../../core/frontend/lib/esm/RealityDataSource.js");
|
|
171056
171354
|
/* harmony import */ var _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../render/primitives/mesh/MeshPrimitives */ "../../core/frontend/lib/esm/render/primitives/mesh/MeshPrimitives.js");
|
|
171057
|
-
/* harmony import */ var
|
|
171058
|
-
/* harmony import */ var _internal__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
171355
|
+
/* harmony import */ var _internal__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
171059
171356
|
/*---------------------------------------------------------------------------------------------
|
|
171060
171357
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
171061
171358
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -171072,7 +171369,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171072
171369
|
|
|
171073
171370
|
|
|
171074
171371
|
|
|
171075
|
-
|
|
171076
171372
|
const scratchRange = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_2__.Range3d.create();
|
|
171077
171373
|
const scratchWorldFrustum = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.Frustum();
|
|
171078
171374
|
class OrbitGtTreeSupplier {
|
|
@@ -171130,9 +171426,9 @@ class OrbitGtTileTreeParams {
|
|
|
171130
171426
|
this.modelId = modelId;
|
|
171131
171427
|
this.iModel = iModel;
|
|
171132
171428
|
}
|
|
171133
|
-
get priority() { return
|
|
171429
|
+
get priority() { return _internal__WEBPACK_IMPORTED_MODULE_8__.TileLoadPriority.Context; }
|
|
171134
171430
|
}
|
|
171135
|
-
class OrbitGtRootTile extends
|
|
171431
|
+
class OrbitGtRootTile extends _internal__WEBPACK_IMPORTED_MODULE_8__.Tile {
|
|
171136
171432
|
_loadChildren(_resolve, _reject) { }
|
|
171137
171433
|
async requestContent(_isCanceled) { return undefined; }
|
|
171138
171434
|
get channel() { return _IModelApp__WEBPACK_IMPORTED_MODULE_5__.IModelApp.tileAdmin.channels.getForHttp("itwinjs-orbitgit"); }
|
|
@@ -171201,7 +171497,7 @@ class TileSortProjector {
|
|
|
171201
171497
|
coordinate.z = point.z;
|
|
171202
171498
|
}
|
|
171203
171499
|
}
|
|
171204
|
-
class OrbitGtTileGraphic extends
|
|
171500
|
+
class OrbitGtTileGraphic extends _internal__WEBPACK_IMPORTED_MODULE_8__.TileUsageMarker {
|
|
171205
171501
|
constructor(graphic, viewport, time) {
|
|
171206
171502
|
super();
|
|
171207
171503
|
this.graphic = graphic;
|
|
@@ -171212,7 +171508,7 @@ class OrbitGtTileGraphic extends _internal__WEBPACK_IMPORTED_MODULE_9__.TileUsag
|
|
|
171212
171508
|
}
|
|
171213
171509
|
}
|
|
171214
171510
|
/** @internal */
|
|
171215
|
-
class OrbitGtTileTree extends
|
|
171511
|
+
class OrbitGtTileTree extends _internal__WEBPACK_IMPORTED_MODULE_8__.TileTree {
|
|
171216
171512
|
constructor(treeParams, _dataManager, cloudRange, _centerOffset, _ecefTransform) {
|
|
171217
171513
|
super(treeParams);
|
|
171218
171514
|
this._dataManager = _dataManager;
|
|
@@ -171296,7 +171592,14 @@ class OrbitGtTileTree extends _internal__WEBPACK_IMPORTED_MODULE_9__.TileTree {
|
|
|
171296
171592
|
const voxelSize = (range.high.x - range.low.x) / 64;
|
|
171297
171593
|
features.add(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.Feature(this.modelId), 1);
|
|
171298
171594
|
const tilePoints = (tile.points8 != null) ? tile.points8.toNativeBuffer() : tile.points16.toNativeBuffer();
|
|
171299
|
-
let renderGraphic = system.createPointCloud(
|
|
171595
|
+
let renderGraphic = system.createPointCloud({
|
|
171596
|
+
positions: tilePoints,
|
|
171597
|
+
qparams: qParams,
|
|
171598
|
+
colors: tile.colors.toNativeBuffer(),
|
|
171599
|
+
features: features.toFeatureIndex(),
|
|
171600
|
+
voxelSize,
|
|
171601
|
+
colorFormat: "bgr",
|
|
171602
|
+
}, this.iModel);
|
|
171300
171603
|
renderGraphic = system.createBatch(renderGraphic, _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.PackedFeatureTable.pack(featureTable), range);
|
|
171301
171604
|
args.graphics.add(renderGraphic);
|
|
171302
171605
|
this._tileGraphics.set(key, new OrbitGtTileGraphic(renderGraphic, args.context.viewport, args.now));
|
|
@@ -171435,7 +171738,7 @@ class OrbitGtTileTree extends _internal__WEBPACK_IMPORTED_MODULE_9__.TileTree {
|
|
|
171435
171738
|
/** Supplies a reality data [[TileTree]] from a URL. May be associated with a persistent [[GeometricModelState]], or attached at run-time via a [[ContextOrbitGtState]].
|
|
171436
171739
|
* @internal
|
|
171437
171740
|
*/
|
|
171438
|
-
class OrbitGtTreeReference extends
|
|
171741
|
+
class OrbitGtTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_8__.RealityModelTileTree.Reference {
|
|
171439
171742
|
constructor(props) {
|
|
171440
171743
|
super(props);
|
|
171441
171744
|
// Create rdSourceKey if not provided
|
|
@@ -171486,7 +171789,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171486
171789
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
171487
171790
|
/* harmony import */ var _FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../FrontendLoggerCategory */ "../../core/frontend/lib/esm/FrontendLoggerCategory.js");
|
|
171488
171791
|
/* harmony import */ var _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../render/primitives/mesh/MeshPrimitives */ "../../core/frontend/lib/esm/render/primitives/mesh/MeshPrimitives.js");
|
|
171489
|
-
/* harmony import */ var _render_primitives_PointCloudPrimitive__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../render/primitives/PointCloudPrimitive */ "../../core/frontend/lib/esm/render/primitives/PointCloudPrimitive.js");
|
|
171490
171792
|
/*---------------------------------------------------------------------------------------------
|
|
171491
171793
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
171492
171794
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -171499,7 +171801,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
171499
171801
|
|
|
171500
171802
|
|
|
171501
171803
|
|
|
171502
|
-
|
|
171503
171804
|
function readPntsColors(stream, dataOffset, pnts) {
|
|
171504
171805
|
const nPts = pnts.POINTS_LENGTH;
|
|
171505
171806
|
const nComponents = 3 * nPts;
|
|
@@ -171671,7 +171972,14 @@ async function readPointCloudTileContent(stream, iModel, modelId, _is3d, range,
|
|
|
171671
171972
|
const features = new _render_primitives_mesh_MeshPrimitives__WEBPACK_IMPORTED_MODULE_4__.Mesh.Features(featureTable);
|
|
171672
171973
|
features.add(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.Feature(modelId), 1);
|
|
171673
171974
|
const voxelSize = props.params.rangeDiagonal.maxAbs() / 256;
|
|
171674
|
-
let renderGraphic = system.createPointCloud(
|
|
171975
|
+
let renderGraphic = system.createPointCloud({
|
|
171976
|
+
positions: props.points,
|
|
171977
|
+
qparams: props.params,
|
|
171978
|
+
colors: props.colors,
|
|
171979
|
+
features: features.toFeatureIndex(),
|
|
171980
|
+
voxelSize,
|
|
171981
|
+
colorFormat: "rgb",
|
|
171982
|
+
}, iModel);
|
|
171675
171983
|
renderGraphic = system.createBatch(renderGraphic, _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PackedFeatureTable.pack(featureTable), range);
|
|
171676
171984
|
return renderGraphic;
|
|
171677
171985
|
}
|
|
@@ -172708,6 +173016,7 @@ class RealityModelTileTree extends _internal__WEBPACK_IMPORTED_MODULE_7__.Realit
|
|
|
172708
173016
|
}
|
|
172709
173017
|
this._iModel = props.iModel;
|
|
172710
173018
|
this._source = props.source;
|
|
173019
|
+
this._getDisplaySettings = () => props.getDisplaySettings();
|
|
172711
173020
|
if (props.planarClipMask)
|
|
172712
173021
|
this._planarClipMask = _PlanarClipMaskState__WEBPACK_IMPORTED_MODULE_5__.PlanarClipMaskState.create(props.planarClipMask);
|
|
172713
173022
|
if (undefined !== props.classifiers)
|
|
@@ -172774,6 +173083,12 @@ class RealityModelTileTree extends _internal__WEBPACK_IMPORTED_MODULE_7__.Realit
|
|
|
172774
173083
|
if (undefined !== tree)
|
|
172775
173084
|
tree.collectStatistics(stats);
|
|
172776
173085
|
}
|
|
173086
|
+
createDrawArgs(context) {
|
|
173087
|
+
const args = super.createDrawArgs(context);
|
|
173088
|
+
if (args)
|
|
173089
|
+
args.graphics.realityModelDisplaySettings = this._getDisplaySettings();
|
|
173090
|
+
return args;
|
|
173091
|
+
}
|
|
172777
173092
|
}
|
|
172778
173093
|
RealityModelTileTree.Reference = Reference;
|
|
172779
173094
|
async function createRealityModelTileTree(rdSourceKey, iModel, modelId, tilesetToDb, opts) {
|
|
@@ -172876,6 +173191,7 @@ class RealityTreeReference extends RealityModelTileTree.Reference {
|
|
|
172876
173191
|
rdSourceKey: this._rdSourceKey,
|
|
172877
173192
|
name: this._name,
|
|
172878
173193
|
produceGeometry: true,
|
|
173194
|
+
getDisplaySettings: () => _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RealityModelDisplaySettings.defaults,
|
|
172879
173195
|
});
|
|
172880
173196
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== ref.collectTileGeometry);
|
|
172881
173197
|
return ref;
|
|
@@ -174935,19 +175251,26 @@ class TileAdmin {
|
|
|
174935
175251
|
this._totalElided = 0;
|
|
174936
175252
|
}
|
|
174937
175253
|
async getTileStorage() {
|
|
174938
|
-
if (this._tileStorage
|
|
174939
|
-
|
|
174940
|
-
|
|
174941
|
-
|
|
174942
|
-
|
|
174943
|
-
|
|
174944
|
-
|
|
174945
|
-
|
|
174946
|
-
|
|
174947
|
-
|
|
174948
|
-
|
|
174949
|
-
|
|
174950
|
-
|
|
175254
|
+
if (this._tileStorage !== undefined)
|
|
175255
|
+
return this._tileStorage;
|
|
175256
|
+
// if object-storage-azure is already being dynamically loaded, just return the promise.
|
|
175257
|
+
if (this._tileStoragePromise !== undefined)
|
|
175258
|
+
return this._tileStoragePromise;
|
|
175259
|
+
// if custom implementation is provided, construct a new TileStorage instance and return it.
|
|
175260
|
+
if (this._cloudStorage !== undefined) {
|
|
175261
|
+
this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(this._cloudStorage);
|
|
175262
|
+
return this._tileStorage;
|
|
175263
|
+
}
|
|
175264
|
+
// start dynamically loading default implementation and save the promise to avoid duplicate instances
|
|
175265
|
+
this._tileStoragePromise = (async () => {
|
|
175266
|
+
await __webpack_require__.e(/*! import() */ "vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3").then(__webpack_require__.t.bind(__webpack_require__, /*! reflect-metadata */ "../../common/temp/node_modules/.pnpm/reflect-metadata@0.1.13/node_modules/reflect-metadata/Reflect.js", 23));
|
|
175267
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
175268
|
+
const azureFrontend = await __webpack_require__(/*! ./object-storage-azure */ "../../core/frontend/lib/esm/tile/object-storage-azure.js")();
|
|
175269
|
+
const azureStorage = new azureFrontend.AzureFrontendStorage(new azureFrontend.FrontendBlockBlobClientWrapperFactory());
|
|
175270
|
+
this._tileStorage = new _internal__WEBPACK_IMPORTED_MODULE_6__.TileStorage(azureStorage);
|
|
175271
|
+
return this._tileStorage;
|
|
175272
|
+
})();
|
|
175273
|
+
return this._tileStoragePromise;
|
|
174951
175274
|
}
|
|
174952
175275
|
/** @internal */
|
|
174953
175276
|
get enableInstancing() { return this._enableInstancing && _IModelApp__WEBPACK_IMPORTED_MODULE_2__.IModelApp.renderSystem.supportsInstancing; }
|
|
@@ -308561,7 +308884,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
308561
308884
|
/***/ ((module) => {
|
|
308562
308885
|
|
|
308563
308886
|
"use strict";
|
|
308564
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.
|
|
308887
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"3.5.0-dev.5","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs","build:ci":"npm run -s build && npm run -s build:esm","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"../../tools/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core/tree/master/core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^3.5.0-dev.5","@itwin/core-bentley":"workspace:^3.5.0-dev.5","@itwin/core-common":"workspace:^3.5.0-dev.5","@itwin/core-geometry":"workspace:^3.5.0-dev.5","@itwin/core-orbitgt":"workspace:^3.5.0-dev.5","@itwin/core-quantity":"workspace:^3.5.0-dev.5","@itwin/webgl-compatibility":"workspace:^3.5.0-dev.5"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.0","@types/lodash":"^4.14.0","@types/mocha":"^8.2.2","@types/node":"16.11.59","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^7.11.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~4.4.0","webpack":"^5.64.4"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/object-storage-azure":"~1.4.0","@itwin/cloud-agnostic-core":"~1.4.0","@itwin/object-storage-core":"~1.4.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","lodash":"^4.17.10","qs":"^6.5.1","semver":"^7.3.5","superagent":"7.1.3","wms-capabilities":"0.4.0","xml-js":"~1.6.11","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
|
|
308565
308888
|
|
|
308566
308889
|
/***/ })
|
|
308567
308890
|
|