@itwin/ecschema-rpcinterface-tests 4.5.0-dev.2 → 4.5.0-dev.20
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/LICENSE.md +1 -1
- package/lib/backend/BackendInit.js.map +1 -1
- package/lib/common/Settings.js +4 -4
- package/lib/common/Settings.js.map +1 -1
- package/lib/common/SideChannels.js.map +1 -1
- package/lib/dist/bundled-tests.js +981 -715
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/frontend/SchemaRpcInterface.test.js.map +1 -1
- package/lib/frontend/setup/IModelSession.js.map +1 -1
- package/lib/frontend/setup/TestContext.js.map +1 -1
- package/package.json +15 -15
|
@@ -22970,7 +22970,6 @@ class BentleyError extends Error {
|
|
|
22970
22970
|
case GeoServiceStatus.CSMapError: return "CSMap error";
|
|
22971
22971
|
case GeoServiceStatus.Pending: return "Pending";
|
|
22972
22972
|
case RealityDataStatus.InvalidData: return "Invalid or unknown data";
|
|
22973
|
-
case IModelStatus.Success:
|
|
22974
22973
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_OK:
|
|
22975
22974
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_ROW:
|
|
22976
22975
|
case _BeSQLite__WEBPACK_IMPORTED_MODULE_0__.DbResult.BE_SQLITE_DONE:
|
|
@@ -25632,15 +25631,12 @@ class Logger {
|
|
|
25632
25631
|
const stack = Logger.logExceptionCallstacks ? `\n${_BentleyError__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorStack(err)}` : "";
|
|
25633
25632
|
return _BentleyError__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorMessage(err) + stack;
|
|
25634
25633
|
}
|
|
25635
|
-
/** Log the specified exception. The special "ExceptionType" property will be added as metadata
|
|
25636
|
-
* in addition to any other metadata that may be supplied by the caller, unless the
|
|
25637
|
-
* metadata supplied by the caller already includes this property.
|
|
25634
|
+
/** Log the specified exception. The special "ExceptionType" property will be added as metadata.
|
|
25638
25635
|
* @param category The category of the message.
|
|
25639
25636
|
* @param err The exception object.
|
|
25640
25637
|
* @param log The logger output function to use - defaults to Logger.logError
|
|
25641
|
-
* @param metaData Optional data for the message
|
|
25642
25638
|
*/
|
|
25643
|
-
static logException(category, err, log = (_category, message) => Logger.logError(_category, message)) {
|
|
25639
|
+
static logException(category, err, log = (_category, message, metaData) => Logger.logError(_category, message, metaData)) {
|
|
25644
25640
|
log(category, Logger.getExceptionMessage(err), () => {
|
|
25645
25641
|
return { ..._BentleyError__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorMetadata(err), exceptionType: err.constructor.name };
|
|
25646
25642
|
});
|
|
@@ -35670,6 +35666,60 @@ class Frustum {
|
|
|
35670
35666
|
}
|
|
35671
35667
|
|
|
35672
35668
|
|
|
35669
|
+
/***/ }),
|
|
35670
|
+
|
|
35671
|
+
/***/ "../../core/common/lib/esm/GenericInstanceFilter.js":
|
|
35672
|
+
/*!**********************************************************!*\
|
|
35673
|
+
!*** ../../core/common/lib/esm/GenericInstanceFilter.js ***!
|
|
35674
|
+
\**********************************************************/
|
|
35675
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
35676
|
+
|
|
35677
|
+
"use strict";
|
|
35678
|
+
__webpack_require__.r(__webpack_exports__);
|
|
35679
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
35680
|
+
/* harmony export */ "GenericInstanceFilter": () => (/* binding */ GenericInstanceFilter),
|
|
35681
|
+
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* binding */ GenericInstanceFilterRuleValue)
|
|
35682
|
+
/* harmony export */ });
|
|
35683
|
+
/*---------------------------------------------------------------------------------------------
|
|
35684
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
35685
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
35686
|
+
*--------------------------------------------------------------------------------------------*/
|
|
35687
|
+
/** @packageDocumentation
|
|
35688
|
+
* @module Utils
|
|
35689
|
+
*/
|
|
35690
|
+
/** @beta */
|
|
35691
|
+
var GenericInstanceFilterRuleValue;
|
|
35692
|
+
(function (GenericInstanceFilterRuleValue) {
|
|
35693
|
+
/** Checks if supplied value is [[GenericInstanceFilterRuleValue.Point2d]] like. Returns `true` for `Point2d` and [[GenericInstanceFilterRuleValue.Point3d]]. */
|
|
35694
|
+
function isPoint2d(value) {
|
|
35695
|
+
return value.x !== undefined && value.y !== undefined;
|
|
35696
|
+
}
|
|
35697
|
+
GenericInstanceFilterRuleValue.isPoint2d = isPoint2d;
|
|
35698
|
+
/** Checks if supplied value is [[GenericInstanceFilterRuleValue.Point3d]] like. */
|
|
35699
|
+
function isPoint3d(value) {
|
|
35700
|
+
return isPoint2d(value) && value.z !== undefined;
|
|
35701
|
+
}
|
|
35702
|
+
GenericInstanceFilterRuleValue.isPoint3d = isPoint3d;
|
|
35703
|
+
/** Checks if supplied value is [[GenericInstanceFilterRuleValue.InstanceKey]] like. */
|
|
35704
|
+
function isInstanceKey(value) {
|
|
35705
|
+
return value !== undefined && value.className !== undefined;
|
|
35706
|
+
}
|
|
35707
|
+
GenericInstanceFilterRuleValue.isInstanceKey = isInstanceKey;
|
|
35708
|
+
})(GenericInstanceFilterRuleValue || (GenericInstanceFilterRuleValue = {}));
|
|
35709
|
+
/** @beta */
|
|
35710
|
+
var GenericInstanceFilter;
|
|
35711
|
+
(function (GenericInstanceFilter) {
|
|
35712
|
+
/**
|
|
35713
|
+
* Function that checks if supplied object is [[GenericInstanceFilterRuleGroup]].
|
|
35714
|
+
* @beta
|
|
35715
|
+
*/
|
|
35716
|
+
function isFilterRuleGroup(obj) {
|
|
35717
|
+
return obj.rules !== undefined;
|
|
35718
|
+
}
|
|
35719
|
+
GenericInstanceFilter.isFilterRuleGroup = isFilterRuleGroup;
|
|
35720
|
+
})(GenericInstanceFilter || (GenericInstanceFilter = {}));
|
|
35721
|
+
|
|
35722
|
+
|
|
35673
35723
|
/***/ }),
|
|
35674
35724
|
|
|
35675
35725
|
/***/ "../../core/common/lib/esm/GeoCoordinateServices.js":
|
|
@@ -43277,6 +43327,7 @@ SubCategoryOverride.defaults = new SubCategoryOverride({});
|
|
|
43277
43327
|
"use strict";
|
|
43278
43328
|
__webpack_require__.r(__webpack_exports__);
|
|
43279
43329
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
43330
|
+
/* harmony export */ "CesiumTerrainAssetId": () => (/* binding */ CesiumTerrainAssetId),
|
|
43280
43331
|
/* harmony export */ "TerrainHeightOriginMode": () => (/* binding */ TerrainHeightOriginMode),
|
|
43281
43332
|
/* harmony export */ "TerrainSettings": () => (/* binding */ TerrainSettings)
|
|
43282
43333
|
/* harmony export */ });
|
|
@@ -43287,6 +43338,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
43287
43338
|
/** @packageDocumentation
|
|
43288
43339
|
* @module DisplayStyles
|
|
43289
43340
|
*/
|
|
43341
|
+
/** Ids of [Cesium ION assets](https://cesium.com/platform/cesium-ion/content/) providing global terrain data.
|
|
43342
|
+
* These values are appropriate to use with [[TerrainSettings.dataSource]] when [[TerrainSettings.providerName]] is set to "CesiumWorldTerrain".
|
|
43343
|
+
* You may alternatively use the Id of any ION asset to which you have access.
|
|
43344
|
+
* @see [[TerrainSettings.fromCesiumIonAsset]] to create TerrainSettings that obtain terrain from a specified ION asset.
|
|
43345
|
+
* @public
|
|
43346
|
+
*/
|
|
43347
|
+
var CesiumTerrainAssetId;
|
|
43348
|
+
(function (CesiumTerrainAssetId) {
|
|
43349
|
+
/** Default [global 3d terrain](https://cesium.com/platform/cesium-ion/content/cesium-world-terrain/). */
|
|
43350
|
+
CesiumTerrainAssetId["Default"] = "1";
|
|
43351
|
+
/** Global 3d terrain that includes [bathymetry](https://cesium.com/platform/cesium-ion/content/cesium-world-bathymetry/) (seafloor) terrain. */
|
|
43352
|
+
CesiumTerrainAssetId["Bathymetry"] = "2426648";
|
|
43353
|
+
})(CesiumTerrainAssetId || (CesiumTerrainAssetId = {}));
|
|
43290
43354
|
/** Correction modes for terrain height
|
|
43291
43355
|
* @see [[TerrainProps]]
|
|
43292
43356
|
* @public
|
|
@@ -43312,11 +43376,24 @@ class TerrainSettings {
|
|
|
43312
43376
|
get nonLocatable() {
|
|
43313
43377
|
return this._nonLocatable;
|
|
43314
43378
|
}
|
|
43315
|
-
|
|
43316
|
-
|
|
43317
|
-
|
|
43318
|
-
|
|
43319
|
-
|
|
43379
|
+
/** @internal */
|
|
43380
|
+
constructor(providerNameOrProps, exaggeration, applyLighting, heightOrigin, heightOriginMode) {
|
|
43381
|
+
let providerName;
|
|
43382
|
+
let dataSource;
|
|
43383
|
+
let nonLocatable;
|
|
43384
|
+
if (typeof providerNameOrProps === "string") {
|
|
43385
|
+
providerName = providerNameOrProps;
|
|
43386
|
+
}
|
|
43387
|
+
else if (providerNameOrProps) {
|
|
43388
|
+
({ providerName, dataSource, exaggeration, applyLighting, heightOrigin, heightOriginMode, nonLocatable } = providerNameOrProps);
|
|
43389
|
+
}
|
|
43390
|
+
this.providerName = providerName ?? "CesiumWorldTerrain";
|
|
43391
|
+
this.dataSource = dataSource ?? "";
|
|
43392
|
+
this.exaggeration = Math.min(100, Math.max(0.1, exaggeration ?? 1.0));
|
|
43393
|
+
this.applyLighting = applyLighting ?? false;
|
|
43394
|
+
this.heightOrigin = heightOrigin ?? 0.0;
|
|
43395
|
+
if (true === nonLocatable)
|
|
43396
|
+
this._nonLocatable = true;
|
|
43320
43397
|
switch (heightOriginMode) {
|
|
43321
43398
|
case TerrainHeightOriginMode.Ground:
|
|
43322
43399
|
case TerrainHeightOriginMode.Geoid:
|
|
@@ -43328,18 +43405,24 @@ class TerrainSettings {
|
|
|
43328
43405
|
}
|
|
43329
43406
|
}
|
|
43330
43407
|
static fromJSON(json) {
|
|
43331
|
-
|
|
43332
|
-
|
|
43333
|
-
|
|
43334
|
-
|
|
43335
|
-
|
|
43336
|
-
|
|
43337
|
-
|
|
43408
|
+
return new TerrainSettings(json);
|
|
43409
|
+
}
|
|
43410
|
+
/** Create settings that obtain terrain from a [Cesium ION asset](https://cesium.com/platform/cesium-ion/content/) such as
|
|
43411
|
+
* one of those defined by [[CesiumTerrainAssetId]].
|
|
43412
|
+
* @note You must ensure your Cesium ION account has access to the specified asset.
|
|
43413
|
+
*/
|
|
43414
|
+
static fromCesiumIonAsset(assetId = CesiumTerrainAssetId.Default, options) {
|
|
43415
|
+
return TerrainSettings.fromJSON({
|
|
43416
|
+
...options,
|
|
43417
|
+
dataSource: assetId,
|
|
43418
|
+
});
|
|
43338
43419
|
}
|
|
43339
43420
|
toJSON() {
|
|
43340
43421
|
const props = { heightOriginMode: this.heightOriginMode };
|
|
43341
43422
|
if ("CesiumWorldTerrain" !== this.providerName)
|
|
43342
43423
|
props.providerName = this.providerName;
|
|
43424
|
+
if (this.dataSource)
|
|
43425
|
+
props.dataSource = this.dataSource;
|
|
43343
43426
|
if (1 !== this.exaggeration)
|
|
43344
43427
|
props.exaggeration = this.exaggeration;
|
|
43345
43428
|
if (this.nonLocatable)
|
|
@@ -43351,7 +43434,7 @@ class TerrainSettings {
|
|
|
43351
43434
|
return props;
|
|
43352
43435
|
}
|
|
43353
43436
|
equals(other) {
|
|
43354
|
-
return this.providerName === other.providerName && this.exaggeration === other.exaggeration && this.applyLighting === other.applyLighting
|
|
43437
|
+
return this.providerName === other.providerName && this.dataSource === other.dataSource && this.exaggeration === other.exaggeration && this.applyLighting === other.applyLighting
|
|
43355
43438
|
&& this.heightOrigin === other.heightOrigin && this.heightOriginMode === other.heightOriginMode && this.nonLocatable === other.nonLocatable;
|
|
43356
43439
|
}
|
|
43357
43440
|
/** Returns true if these settings are equivalent to the supplied JSON settings. */
|
|
@@ -43367,6 +43450,7 @@ class TerrainSettings {
|
|
|
43367
43450
|
return this;
|
|
43368
43451
|
const props = {
|
|
43369
43452
|
providerName: changedProps.providerName ?? this.providerName,
|
|
43453
|
+
dataSource: changedProps.dataSource ?? this.dataSource,
|
|
43370
43454
|
exaggeration: changedProps.exaggeration ?? this.exaggeration,
|
|
43371
43455
|
nonLocatable: changedProps.nonLocatable ?? this.nonLocatable,
|
|
43372
43456
|
applyLighting: changedProps.applyLighting ?? this.applyLighting,
|
|
@@ -45352,48 +45436,49 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
45352
45436
|
"use strict";
|
|
45353
45437
|
__webpack_require__.r(__webpack_exports__);
|
|
45354
45438
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
45355
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
45356
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
45357
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
45439
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_36__.AdditionalTransform),
|
|
45440
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__.AffineTransform),
|
|
45441
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.AmbientLight),
|
|
45358
45442
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
45359
45443
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
45360
45444
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
45361
45445
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
45362
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
45446
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_37__.AreaPattern),
|
|
45363
45447
|
/* harmony export */ "Atmosphere": () => (/* reexport safe */ _Atmosphere__WEBPACK_IMPORTED_MODULE_2__.Atmosphere),
|
|
45364
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
45365
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
45366
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
45367
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
45368
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
45448
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_143__.B3dmHeader),
|
|
45449
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.BRepEntity),
|
|
45450
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__.BRepGeometryOperation),
|
|
45451
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BackendError),
|
|
45452
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.BackgroundFill),
|
|
45369
45453
|
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapProvider),
|
|
45370
45454
|
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_5__.BackgroundMapSettings),
|
|
45371
45455
|
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapType),
|
|
45372
45456
|
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_6__.Base64EncodedString),
|
|
45373
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
45374
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
45457
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_73__.BaseLayerSettings),
|
|
45458
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.BaseMapLayerSettings),
|
|
45375
45459
|
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.BatchType),
|
|
45376
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
45377
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
45378
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
45379
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
45380
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
45460
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_136__.BentleyCloudRpcConfiguration),
|
|
45461
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_136__.BentleyCloudRpcManager),
|
|
45462
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcProtocol),
|
|
45463
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BentleyError),
|
|
45464
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BentleyStatus),
|
|
45381
45465
|
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_13__.BisCodeSpec),
|
|
45382
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
45383
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
45466
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.BlobOptionsBuilder),
|
|
45467
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_38__.BoundingSphere),
|
|
45384
45468
|
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.BriefcaseIdValue),
|
|
45385
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
45386
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
45387
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
45469
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BriefcaseStatus),
|
|
45470
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.CURRENT_INVOCATION),
|
|
45471
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.CURRENT_REQUEST),
|
|
45388
45472
|
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_8__.Camera),
|
|
45389
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
45390
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
45391
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
45473
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__.Carto2DDegrees),
|
|
45474
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_39__.Cartographic),
|
|
45475
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_39__.CartographicRange),
|
|
45476
|
+
/* harmony export */ "CesiumTerrainAssetId": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__.CesiumTerrainAssetId),
|
|
45392
45477
|
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ChangeOpCode),
|
|
45393
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
45478
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ChangeSetStatus),
|
|
45394
45479
|
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ChangedValueState),
|
|
45395
45480
|
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_11__.ChangesetType),
|
|
45396
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
45481
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ChannelConstraintError),
|
|
45397
45482
|
/* harmony export */ "ClipIntersectionStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_12__.ClipIntersectionStyle),
|
|
45398
45483
|
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_12__.ClipStyle),
|
|
45399
45484
|
/* harmony export */ "Code": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_13__.Code),
|
|
@@ -45403,38 +45488,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45403
45488
|
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_15__.ColorDef),
|
|
45404
45489
|
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.ColorIndex),
|
|
45405
45490
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_16__.CommonLoggerCategory),
|
|
45406
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
45491
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_144__.CompositeTileHeader),
|
|
45407
45492
|
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_27__.ConcreteEntityTypes),
|
|
45408
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
45409
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
45493
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.ContentFlags),
|
|
45494
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.ContentIdProvider),
|
|
45410
45495
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.ContextRealityModel),
|
|
45411
45496
|
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.ContextRealityModelProps),
|
|
45412
45497
|
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.ContextRealityModels),
|
|
45413
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
45498
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.CurrentImdlVersion),
|
|
45414
45499
|
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_12__.CutStyle),
|
|
45415
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
45416
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
45417
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
45418
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
45419
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
45420
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
45421
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
45422
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
45423
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
45500
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbQueryError),
|
|
45501
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbRequestKind),
|
|
45502
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbResponseKind),
|
|
45503
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbResponseStatus),
|
|
45504
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.DbResult),
|
|
45505
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbValueFormat),
|
|
45506
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_88__.DefaultSupportedTypes),
|
|
45507
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_129__.DevToolsRpcInterface),
|
|
45508
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_129__.DevToolsStatsOptions),
|
|
45424
45509
|
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_18__.DisplayStyle3dSettings),
|
|
45425
45510
|
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_18__.DisplayStyleSettings),
|
|
45426
45511
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.DomainOptions),
|
|
45427
45512
|
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ECJsNames),
|
|
45428
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
45513
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_82__.ECSqlReader),
|
|
45429
45514
|
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ECSqlSystemProperty),
|
|
45430
45515
|
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ECSqlValueType),
|
|
45431
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
45432
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
45433
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
45434
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
45435
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
45436
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
45437
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
45516
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Easing),
|
|
45517
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_62__.EcefLocation),
|
|
45518
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.EdgeArgs),
|
|
45519
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__.ElementGeometry),
|
|
45520
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_84__.ElementGeometryChange),
|
|
45521
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__.ElementGeometryOpcode),
|
|
45522
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_72__.EmptyLocalization),
|
|
45438
45523
|
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.EntityMetaData),
|
|
45439
45524
|
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_27__.EntityReferenceSet),
|
|
45440
45525
|
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_28__.Environment),
|
|
@@ -45447,282 +45532,284 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45447
45532
|
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_25__.FeatureOverrideType),
|
|
45448
45533
|
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_30__.FeatureOverrides),
|
|
45449
45534
|
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.FeatureTable),
|
|
45450
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
45451
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
45452
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
45535
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.FeatureTableHeader),
|
|
45536
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.FillDisplay),
|
|
45537
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_55__.FillFlags),
|
|
45453
45538
|
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_32__.FontMap),
|
|
45454
45539
|
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_32__.FontType),
|
|
45455
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
45540
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.FresnelSettings),
|
|
45456
45541
|
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.Frustum),
|
|
45457
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
45458
|
-
/* harmony export */ "
|
|
45459
|
-
/* harmony export */ "
|
|
45460
|
-
/* harmony export */ "
|
|
45461
|
-
/* harmony export */ "
|
|
45462
|
-
/* harmony export */ "
|
|
45463
|
-
/* harmony export */ "
|
|
45464
|
-
/* harmony export */ "
|
|
45465
|
-
/* harmony export */ "
|
|
45466
|
-
/* harmony export */ "
|
|
45467
|
-
/* harmony export */ "
|
|
45468
|
-
/* harmony export */ "
|
|
45469
|
-
/* harmony export */ "
|
|
45470
|
-
/* harmony export */ "
|
|
45471
|
-
/* harmony export */ "
|
|
45542
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_42__.FrustumPlanes),
|
|
45543
|
+
/* harmony export */ "GenericInstanceFilter": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_34__.GenericInstanceFilter),
|
|
45544
|
+
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_34__.GenericInstanceFilterRuleValue),
|
|
45545
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_35__.GeoCoordStatus),
|
|
45546
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeocentricTransform),
|
|
45547
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeodeticDatum),
|
|
45548
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_44__.GeodeticEllipsoid),
|
|
45549
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeodeticTransform),
|
|
45550
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeodeticTransformPath),
|
|
45551
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.GeographicCRS),
|
|
45552
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.GeometryClass),
|
|
45553
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.GeometryParams),
|
|
45554
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.GeometryStreamBuilder),
|
|
45555
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.GeometryStreamFlags),
|
|
45556
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.GeometryStreamIterator),
|
|
45557
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_53__.GeometrySummaryVerbosity),
|
|
45558
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__.GlbHeader),
|
|
45472
45559
|
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_5__.GlobeMode),
|
|
45473
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
45474
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
45475
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
45476
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
45477
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
45478
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
45479
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
45480
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
45481
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
45482
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
45483
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
45484
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
45485
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
45486
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
45487
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
45488
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
45489
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
45490
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
45491
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
45492
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
45493
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
45494
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
45495
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
45496
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
45497
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
45498
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
45499
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
45500
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
45501
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
45502
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
45503
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
45504
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
45505
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
45506
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
45507
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
45508
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
45509
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
45510
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
45511
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
45512
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
45513
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
45514
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
45515
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
45516
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
45517
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
45518
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
45519
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
45520
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
45521
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
45522
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
45523
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
45524
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
45525
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
45526
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
45527
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
45528
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
45529
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
45530
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
45560
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__.GltfV2ChunkTypes),
|
|
45561
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__.GltfVersions),
|
|
45562
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_54__.Gradient),
|
|
45563
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_55__.GraphicParams),
|
|
45564
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GridFileDefinition),
|
|
45565
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GridFileTransform),
|
|
45566
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_112__.GridOrientationType),
|
|
45567
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_56__.GroundPlane),
|
|
45568
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_59__.HSLColor),
|
|
45569
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_60__.HSVColor),
|
|
45570
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_60__.HSVConstants),
|
|
45571
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_36__.Helmert2DWithZOffset),
|
|
45572
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.HemisphereLights),
|
|
45573
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_57__.HiddenLine),
|
|
45574
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_58__.Hilite),
|
|
45575
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.HorizontalCRS),
|
|
45576
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.HorizontalCRSExtent),
|
|
45577
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_147__.I3dmHeader),
|
|
45578
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_62__.IModel),
|
|
45579
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.IModelError),
|
|
45580
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_130__.IModelNotFoundResponse),
|
|
45581
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_130__.IModelReadRpcInterface),
|
|
45582
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.IModelStatus),
|
|
45583
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_131__.IModelTileRpcInterface),
|
|
45584
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_64__.IModelVersion),
|
|
45585
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.INSTANCE),
|
|
45586
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageBuffer),
|
|
45587
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageBufferFormat),
|
|
45588
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_46__.ImageGraphic),
|
|
45589
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_46__.ImageGraphicCorners),
|
|
45590
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.ImageMapLayerSettings),
|
|
45591
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageSource),
|
|
45592
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageSourceFormat),
|
|
45593
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.ImdlFlags),
|
|
45594
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.ImdlHeader),
|
|
45595
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__.InternetConnectivityStatus),
|
|
45596
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Interpolation),
|
|
45597
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_68__.IpcSession),
|
|
45598
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocket),
|
|
45599
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketBackend),
|
|
45600
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketFrontend),
|
|
45601
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketMessage),
|
|
45602
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketMessageType),
|
|
45603
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketTransport),
|
|
45604
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.LightSettings),
|
|
45605
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_71__.LinePixels),
|
|
45606
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_47__.LineStyle),
|
|
45607
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_73__.MapImagerySettings),
|
|
45608
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.MapLayerSettings),
|
|
45609
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.MapSubLayerSettings),
|
|
45610
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__.MarshalingBinaryMarker),
|
|
45611
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_75__.MassPropertiesOperation),
|
|
45612
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshEdge),
|
|
45613
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshEdges),
|
|
45614
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshPolyline),
|
|
45615
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshPolylineList),
|
|
45616
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_77__.ModelClipGroup),
|
|
45617
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_77__.ModelClipGroups),
|
|
45531
45618
|
/* harmony export */ "ModelFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.ModelFeature),
|
|
45532
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
45533
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
45619
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_84__.ModelGeometryChanges),
|
|
45620
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.ModelMapLayerSettings),
|
|
45534
45621
|
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_18__.MonochromeMode),
|
|
45535
45622
|
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.MultiModelPackedFeatureTable),
|
|
45536
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
45623
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.NoContentError),
|
|
45537
45624
|
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.NonUniformColor),
|
|
45538
|
-
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */
|
|
45625
|
+
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_76__.NormalMapFlags),
|
|
45539
45626
|
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.Npc),
|
|
45540
45627
|
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.NpcCenter),
|
|
45541
45628
|
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.NpcCorners),
|
|
45542
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
45543
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
45544
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
45545
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
45546
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
45629
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.OPERATION),
|
|
45630
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_80__.OctEncodedNormal),
|
|
45631
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_80__.OctEncodedNormalPair),
|
|
45632
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__.OverriddenBy),
|
|
45633
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.POLICY),
|
|
45547
45634
|
/* harmony export */ "PackedFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeature),
|
|
45548
45635
|
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeatureModelTable),
|
|
45549
45636
|
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeatureTable),
|
|
45550
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
45551
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
45552
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
45553
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
45554
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
45555
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
45556
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
45557
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
45558
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
45559
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
45560
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
45637
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_48__.Placement2d),
|
|
45638
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_48__.Placement3d),
|
|
45639
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_85__.PlanProjectionSettings),
|
|
45640
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__.PlanarClipMaskMode),
|
|
45641
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__.PlanarClipMaskPriority),
|
|
45642
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__.PlanarClipMaskSettings),
|
|
45643
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_149__.PntsHeader),
|
|
45644
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_89__.PointCloudDisplaySettings),
|
|
45645
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.PolylineEdgeArgs),
|
|
45646
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.PolylineTypeFlags),
|
|
45647
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.PositionalVectorTransform),
|
|
45561
45648
|
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PrimitiveTypeCode),
|
|
45562
45649
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.ProfileOptions),
|
|
45563
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
45650
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__.Projection),
|
|
45564
45651
|
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PropertyMetaData),
|
|
45565
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
45566
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
45567
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
45568
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
45569
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
45570
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
45571
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
45572
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
45573
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
45574
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
45575
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
45576
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
45577
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
45578
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
45579
|
-
/* harmony export */ "QueryParamType": () => (/* reexport safe */
|
|
45580
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
45581
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
45652
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_82__.PropertyMetaDataMap),
|
|
45653
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QParams2d),
|
|
45654
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QParams3d),
|
|
45655
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2d),
|
|
45656
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2dBuffer),
|
|
45657
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2dBufferBuilder),
|
|
45658
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2dList),
|
|
45659
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3d),
|
|
45660
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3dBuffer),
|
|
45661
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3dBufferBuilder),
|
|
45662
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3dList),
|
|
45663
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.Quantization),
|
|
45664
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryBinder),
|
|
45665
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryOptionsBuilder),
|
|
45666
|
+
/* harmony export */ "QueryParamType": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryParamType),
|
|
45667
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryRowFormat),
|
|
45668
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.REGISTRY),
|
|
45582
45669
|
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.Rank),
|
|
45583
45670
|
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.RealityDataFormat),
|
|
45584
45671
|
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.RealityDataProvider),
|
|
45585
45672
|
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.RealityDataSourceKey),
|
|
45586
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
45673
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_89__.RealityModelDisplaySettings),
|
|
45587
45674
|
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.RelatedElement),
|
|
45588
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
45589
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
45590
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
45591
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
45592
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
45593
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
45594
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
45595
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
45596
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
45597
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
45598
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
45599
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
45600
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
45601
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
45602
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
45603
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
45604
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
45605
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
45606
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
45607
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
45608
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
45609
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
45610
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
45611
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
45612
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
45613
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
45614
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
45615
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
45616
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
45617
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
45618
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
45619
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
45620
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
45621
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
45622
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
45623
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
45624
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
45625
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
45626
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
45627
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
45628
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
45629
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
45630
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
45675
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_91__.RenderMaterial),
|
|
45676
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_113__.RenderMode),
|
|
45677
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_92__.RenderSchedule),
|
|
45678
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_93__.RenderTexture),
|
|
45679
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.ResponseLike),
|
|
45680
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_94__.RgbColor),
|
|
45681
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcConfiguration),
|
|
45682
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcContentType),
|
|
45683
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcControlChannel),
|
|
45684
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcControlResponse),
|
|
45685
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcDefaultConfiguration),
|
|
45686
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcDirectProtocol),
|
|
45687
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcDirectRequest),
|
|
45688
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcEndpoint),
|
|
45689
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_135__.RpcInterface),
|
|
45690
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_117__.RpcInvocation),
|
|
45691
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_95__.RpcManager),
|
|
45692
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__.RpcMarshaling),
|
|
45693
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_139__.RpcMultipart),
|
|
45694
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcNotFoundResponse),
|
|
45695
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_138__.RpcOpenAPIDescription),
|
|
45696
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_120__.RpcOperation),
|
|
45697
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_120__.RpcOperationPolicy),
|
|
45698
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_121__.RpcPendingQueue),
|
|
45699
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcPendingResponse),
|
|
45700
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__.RpcProtocol),
|
|
45701
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcProtocolEvent),
|
|
45702
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__.RpcProtocolVersion),
|
|
45703
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushChannel),
|
|
45704
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushConnection),
|
|
45705
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushService),
|
|
45706
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushSubscription),
|
|
45707
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushTransport),
|
|
45708
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.RpcRegistry),
|
|
45709
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.RpcRequest),
|
|
45710
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcRequestEvent),
|
|
45711
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__.RpcRequestFulfillment),
|
|
45712
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcRequestStatus),
|
|
45713
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcResponseCacheControl),
|
|
45714
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcRoutingMap),
|
|
45715
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_126__.RpcRoutingToken),
|
|
45716
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__.RpcSerializedValue),
|
|
45717
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_118__.RpcSessionInvocation),
|
|
45631
45718
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.SchemaState),
|
|
45632
45719
|
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.SectionType),
|
|
45633
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
45634
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
45635
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
45636
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
45637
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
45638
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
45639
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
45640
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
45641
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
45642
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
45643
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
45644
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
45645
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
45646
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
45647
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
45648
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
45649
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
45650
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
45720
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ServerError),
|
|
45721
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ServerTimeoutError),
|
|
45722
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.SilhouetteEdgeArgs),
|
|
45723
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyBox),
|
|
45724
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyBoxImageType),
|
|
45725
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyCube),
|
|
45726
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyGradient),
|
|
45727
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkySphere),
|
|
45728
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_132__.SnapshotIModelRpcInterface),
|
|
45729
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.SolarLight),
|
|
45730
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_100__.SolarShadowSettings),
|
|
45731
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifier),
|
|
45732
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifierFlags),
|
|
45733
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifierInsideDisplay),
|
|
45734
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifierOutsideDisplay),
|
|
45735
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifiers),
|
|
45736
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_102__.SubCategoryAppearance),
|
|
45737
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_103__.SubCategoryOverride),
|
|
45651
45738
|
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.SyncMode),
|
|
45652
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
45653
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
45654
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
45655
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
45656
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
45657
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
45658
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
45659
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
45660
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
45661
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
45662
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
45663
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
45664
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
45665
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
45666
|
-
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */
|
|
45667
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
45668
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
45669
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
45670
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
45671
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
45672
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
45673
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
45674
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
45675
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
45676
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
45677
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
45739
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__.TerrainHeightOriginMode),
|
|
45740
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__.TerrainSettings),
|
|
45741
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_133__.TestRpcManager),
|
|
45742
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_50__.TextString),
|
|
45743
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_76__.TextureMapUnits),
|
|
45744
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_105__.TextureMapping),
|
|
45745
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_106__.TextureTransparency),
|
|
45746
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplay),
|
|
45747
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplayMode),
|
|
45748
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplaySensor),
|
|
45749
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplaySensorSettings),
|
|
45750
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientColorScheme),
|
|
45751
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientMode),
|
|
45752
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientSettings),
|
|
45753
|
+
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientTransparencyMode),
|
|
45754
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_109__.TileContentSource),
|
|
45755
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileFormat),
|
|
45756
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileHeader),
|
|
45757
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.TileMetadataReader),
|
|
45758
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.TileOptions),
|
|
45759
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileReadError),
|
|
45760
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileReadStatus),
|
|
45761
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.TreeFlags),
|
|
45762
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Tween),
|
|
45763
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Tweens),
|
|
45764
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_111__.TxnAction),
|
|
45678
45765
|
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.TypeDefinition),
|
|
45679
45766
|
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_9__.TypeOfChange),
|
|
45680
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
45681
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
45682
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
45683
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
45684
|
-
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */
|
|
45685
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
45686
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
45687
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
45688
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
45689
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
45690
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
45691
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
45692
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
45693
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
45694
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
45695
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
45696
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
45697
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
45698
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
45699
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
45700
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
45701
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
45702
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
45703
|
-
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */
|
|
45704
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
45705
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
45706
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
45707
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
45708
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
45709
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
45710
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
45711
|
-
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */
|
|
45712
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
45767
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.VerticalCRS),
|
|
45768
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_112__.ViewDetails),
|
|
45769
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_112__.ViewDetails3d),
|
|
45770
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_113__.ViewFlags),
|
|
45771
|
+
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_114__.ViewStoreRpc),
|
|
45772
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.WEB_RPC_CONSTANTS),
|
|
45773
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_142__.WebAppRpcLogging),
|
|
45774
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_140__.WebAppRpcProtocol),
|
|
45775
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_141__.WebAppRpcRequest),
|
|
45776
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__.WhiteOnWhiteReversalSettings),
|
|
45777
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_134__.WipRpcInterface),
|
|
45778
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.XyzRotation),
|
|
45779
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.aggregateLoad),
|
|
45780
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.bisectTileRange2d),
|
|
45781
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.bisectTileRange3d),
|
|
45782
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSolarAngles),
|
|
45783
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSolarDirection),
|
|
45784
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSolarDirectionFromAngles),
|
|
45785
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSunriseOrSunset),
|
|
45786
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.compareIModelTileTreeIds),
|
|
45787
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.computeChildTileProps),
|
|
45788
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.computeChildTileRanges),
|
|
45789
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.computeTileChordTolerance),
|
|
45790
|
+
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.decodeTileContentDescription),
|
|
45791
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.defaultTileOptions),
|
|
45792
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.getMaximumMajorTileFormatVersion),
|
|
45793
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_69__.getPullChangesIpcChannel),
|
|
45794
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_109__.getTileObjectReference),
|
|
45795
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.iModelTileTreeIdToString),
|
|
45796
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_65__.iTwinChannel),
|
|
45797
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.initializeRpcRequest),
|
|
45798
|
+
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_69__.ipcAppChannels),
|
|
45799
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.isKnownTileFormat),
|
|
45713
45800
|
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.isPlacement2dProps),
|
|
45714
45801
|
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.isPlacement3dProps),
|
|
45715
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
45716
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
45717
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
45718
|
-
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */
|
|
45719
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
45720
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
45721
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
45802
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.isPowerOfTwo),
|
|
45803
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.isValidImageSourceFormat),
|
|
45804
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_35__.mapToGeoServiceStatus),
|
|
45805
|
+
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__.nativeAppIpcStrings),
|
|
45806
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.nextHighestPowerOfTwo),
|
|
45807
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.nextPoint3d64FromByteStream),
|
|
45808
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.parseTileTreeIdAndContentId),
|
|
45722
45809
|
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_23__.readElementMeshes),
|
|
45723
|
-
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */
|
|
45724
|
-
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */
|
|
45725
|
-
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */
|
|
45810
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.readTileContentDescription),
|
|
45811
|
+
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_68__.rpcOverIpcStrings),
|
|
45812
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.tileFormatFromNumber)
|
|
45726
45813
|
/* harmony export */ });
|
|
45727
45814
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
45728
45815
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -45758,125 +45845,126 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45758
45845
|
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
45759
45846
|
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
45760
45847
|
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
45761
|
-
/* harmony import */ var
|
|
45762
|
-
/* harmony import */ var
|
|
45763
|
-
/* harmony import */ var
|
|
45764
|
-
/* harmony import */ var
|
|
45765
|
-
/* harmony import */ var
|
|
45766
|
-
/* harmony import */ var
|
|
45767
|
-
/* harmony import */ var
|
|
45768
|
-
/* harmony import */ var
|
|
45769
|
-
/* harmony import */ var
|
|
45770
|
-
/* harmony import */ var
|
|
45771
|
-
/* harmony import */ var
|
|
45772
|
-
/* harmony import */ var
|
|
45773
|
-
/* harmony import */ var
|
|
45774
|
-
/* harmony import */ var
|
|
45775
|
-
/* harmony import */ var
|
|
45776
|
-
/* harmony import */ var
|
|
45777
|
-
/* harmony import */ var
|
|
45778
|
-
/* harmony import */ var
|
|
45779
|
-
/* harmony import */ var
|
|
45780
|
-
/* harmony import */ var
|
|
45781
|
-
/* harmony import */ var
|
|
45782
|
-
/* harmony import */ var
|
|
45783
|
-
/* harmony import */ var
|
|
45784
|
-
/* harmony import */ var
|
|
45785
|
-
/* harmony import */ var
|
|
45786
|
-
/* harmony import */ var
|
|
45787
|
-
/* harmony import */ var
|
|
45788
|
-
/* harmony import */ var
|
|
45789
|
-
/* harmony import */ var
|
|
45790
|
-
/* harmony import */ var
|
|
45791
|
-
/* harmony import */ var
|
|
45792
|
-
/* harmony import */ var
|
|
45793
|
-
/* harmony import */ var
|
|
45794
|
-
/* harmony import */ var
|
|
45795
|
-
/* harmony import */ var
|
|
45796
|
-
/* harmony import */ var
|
|
45797
|
-
/* harmony import */ var
|
|
45798
|
-
/* harmony import */ var
|
|
45799
|
-
/* harmony import */ var
|
|
45800
|
-
/* harmony import */ var
|
|
45801
|
-
/* harmony import */ var
|
|
45802
|
-
/* harmony import */ var
|
|
45803
|
-
/* harmony import */ var
|
|
45804
|
-
/* harmony import */ var
|
|
45805
|
-
/* harmony import */ var
|
|
45806
|
-
/* harmony import */ var
|
|
45807
|
-
/* harmony import */ var
|
|
45808
|
-
/* harmony import */ var
|
|
45809
|
-
/* harmony import */ var
|
|
45810
|
-
/* harmony import */ var
|
|
45811
|
-
/* harmony import */ var
|
|
45812
|
-
/* harmony import */ var
|
|
45813
|
-
/* harmony import */ var
|
|
45814
|
-
/* harmony import */ var
|
|
45815
|
-
/* harmony import */ var
|
|
45816
|
-
/* harmony import */ var
|
|
45817
|
-
/* harmony import */ var
|
|
45818
|
-
/* harmony import */ var
|
|
45819
|
-
/* harmony import */ var
|
|
45820
|
-
/* harmony import */ var
|
|
45821
|
-
/* harmony import */ var
|
|
45822
|
-
/* harmony import */ var
|
|
45823
|
-
/* harmony import */ var
|
|
45824
|
-
/* harmony import */ var
|
|
45825
|
-
/* harmony import */ var
|
|
45826
|
-
/* harmony import */ var
|
|
45827
|
-
/* harmony import */ var
|
|
45828
|
-
/* harmony import */ var
|
|
45829
|
-
/* harmony import */ var
|
|
45830
|
-
/* harmony import */ var
|
|
45831
|
-
/* harmony import */ var
|
|
45832
|
-
/* harmony import */ var
|
|
45833
|
-
/* harmony import */ var
|
|
45834
|
-
/* harmony import */ var
|
|
45835
|
-
/* harmony import */ var
|
|
45836
|
-
/* harmony import */ var
|
|
45837
|
-
/* harmony import */ var
|
|
45838
|
-
/* harmony import */ var
|
|
45839
|
-
/* harmony import */ var
|
|
45840
|
-
/* harmony import */ var
|
|
45841
|
-
/* harmony import */ var
|
|
45842
|
-
/* harmony import */ var
|
|
45843
|
-
/* harmony import */ var
|
|
45844
|
-
/* harmony import */ var
|
|
45845
|
-
/* harmony import */ var
|
|
45846
|
-
/* harmony import */ var
|
|
45847
|
-
/* harmony import */ var
|
|
45848
|
-
/* harmony import */ var
|
|
45849
|
-
/* harmony import */ var
|
|
45850
|
-
/* harmony import */ var
|
|
45851
|
-
/* harmony import */ var
|
|
45852
|
-
/* harmony import */ var
|
|
45853
|
-
/* harmony import */ var
|
|
45854
|
-
/* harmony import */ var
|
|
45855
|
-
/* harmony import */ var
|
|
45856
|
-
/* harmony import */ var
|
|
45857
|
-
/* harmony import */ var
|
|
45858
|
-
/* harmony import */ var
|
|
45859
|
-
/* harmony import */ var
|
|
45860
|
-
/* harmony import */ var
|
|
45861
|
-
/* harmony import */ var
|
|
45862
|
-
/* harmony import */ var
|
|
45863
|
-
/* harmony import */ var
|
|
45864
|
-
/* harmony import */ var
|
|
45865
|
-
/* harmony import */ var
|
|
45866
|
-
/* harmony import */ var
|
|
45867
|
-
/* harmony import */ var
|
|
45868
|
-
/* harmony import */ var
|
|
45869
|
-
/* harmony import */ var
|
|
45870
|
-
/* harmony import */ var
|
|
45871
|
-
/* harmony import */ var
|
|
45872
|
-
/* harmony import */ var
|
|
45873
|
-
/* harmony import */ var
|
|
45874
|
-
/* harmony import */ var
|
|
45875
|
-
/* harmony import */ var
|
|
45876
|
-
/* harmony import */ var
|
|
45877
|
-
/* harmony import */ var
|
|
45878
|
-
/* harmony import */ var
|
|
45879
|
-
/* harmony import */ var
|
|
45848
|
+
/* harmony import */ var _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./GenericInstanceFilter */ "../../core/common/lib/esm/GenericInstanceFilter.js");
|
|
45849
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
45850
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
45851
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
45852
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
45853
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
45854
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
45855
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
45856
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
45857
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
45858
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
45859
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
45860
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
45861
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
45862
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
45863
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
45864
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
45865
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
45866
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
45867
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
45868
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
45869
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
45870
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
45871
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
45872
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
45873
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
45874
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
45875
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
45876
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
45877
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
45878
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
45879
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
45880
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
45881
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
45882
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
45883
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
45884
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
45885
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
45886
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
45887
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
45888
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
45889
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
45890
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
45891
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
45892
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
45893
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
45894
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
45895
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
45896
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
45897
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
45898
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
45899
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
45900
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
45901
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
45902
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
45903
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
45904
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
45905
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
45906
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
45907
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
45908
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
45909
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
45910
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
45911
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
45912
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
45913
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
45914
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
45915
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
45916
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
45917
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
45918
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
45919
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
45920
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
45921
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
45922
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
45923
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
45924
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
45925
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
45926
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
45927
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
45928
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
45929
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
45930
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
45931
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
45932
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
45933
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
45934
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
45935
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
45936
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
45937
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
45938
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
45939
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
45940
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
45941
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
45942
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
45943
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
45944
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
45945
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
45946
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
45947
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
45948
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
45949
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
45950
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
45951
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
45952
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
45953
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
45954
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
45955
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
45956
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
45957
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
45958
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
45959
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
45960
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
45961
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
45962
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
45963
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
45964
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
45965
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
45966
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
45967
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
45880
45968
|
/*---------------------------------------------------------------------------------------------
|
|
45881
45969
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
45882
45970
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -46032,6 +46120,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
46032
46120
|
|
|
46033
46121
|
|
|
46034
46122
|
|
|
46123
|
+
|
|
46035
46124
|
|
|
46036
46125
|
|
|
46037
46126
|
/** @docs-package-description
|
|
@@ -55818,7 +55907,7 @@ var RpcResponseCacheControl;
|
|
|
55818
55907
|
})(RpcResponseCacheControl || (RpcResponseCacheControl = {}));
|
|
55819
55908
|
/** RPC protocol event types.
|
|
55820
55909
|
* @public
|
|
55821
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55910
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55822
55911
|
*/
|
|
55823
55912
|
var RpcProtocolEvent;
|
|
55824
55913
|
(function (RpcProtocolEvent) {
|
|
@@ -55838,7 +55927,7 @@ var RpcProtocolEvent;
|
|
|
55838
55927
|
})(RpcProtocolEvent || (RpcProtocolEvent = {}));
|
|
55839
55928
|
/** The status of an RPC operation request.
|
|
55840
55929
|
* @public
|
|
55841
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55930
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55842
55931
|
*/
|
|
55843
55932
|
var RpcRequestStatus;
|
|
55844
55933
|
(function (RpcRequestStatus) {
|
|
@@ -55858,7 +55947,7 @@ var RpcRequestStatus;
|
|
|
55858
55947
|
RpcRequestStatus[RpcRequestStatus["RequestTimeout"] = 13] = "RequestTimeout";
|
|
55859
55948
|
RpcRequestStatus[RpcRequestStatus["TooManyRequests"] = 14] = "TooManyRequests";
|
|
55860
55949
|
})(RpcRequestStatus || (RpcRequestStatus = {}));
|
|
55861
|
-
/** @public @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55950
|
+
/** @public @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future. */
|
|
55862
55951
|
(function (RpcRequestStatus) {
|
|
55863
55952
|
function isTransientError(status) {
|
|
55864
55953
|
return status === RpcRequestStatus.BadGateway || status === RpcRequestStatus.ServiceUnavailable || status === RpcRequestStatus.GatewayTimeout
|
|
@@ -55868,7 +55957,7 @@ var RpcRequestStatus;
|
|
|
55868
55957
|
})(RpcRequestStatus || (RpcRequestStatus = {}));
|
|
55869
55958
|
/** RPC request event types.
|
|
55870
55959
|
* @public
|
|
55871
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55960
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55872
55961
|
*/
|
|
55873
55962
|
var RpcRequestEvent;
|
|
55874
55963
|
(function (RpcRequestEvent) {
|
|
@@ -55878,7 +55967,7 @@ var RpcRequestEvent;
|
|
|
55878
55967
|
})(RpcRequestEvent || (RpcRequestEvent = {}));
|
|
55879
55968
|
/** RPC content types.
|
|
55880
55969
|
* @public
|
|
55881
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55970
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55882
55971
|
*/
|
|
55883
55972
|
var RpcContentType;
|
|
55884
55973
|
(function (RpcContentType) {
|
|
@@ -55890,7 +55979,7 @@ var RpcContentType;
|
|
|
55890
55979
|
})(RpcContentType || (RpcContentType = {}));
|
|
55891
55980
|
/** Endpoints for RPC protocols.
|
|
55892
55981
|
* @public
|
|
55893
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55982
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55894
55983
|
*/
|
|
55895
55984
|
var RpcEndpoint;
|
|
55896
55985
|
(function (RpcEndpoint) {
|
|
@@ -61946,6 +62035,11 @@ class SchemaReadHelper {
|
|
|
61946
62035
|
for (const providerTuple of caProviders) {
|
|
61947
62036
|
// First tuple entry is the CA class name.
|
|
61948
62037
|
const caClass = await this.findSchemaItem(providerTuple[0]);
|
|
62038
|
+
// If custom attribute exist within the context and is referenced, validate the reference is defined in the container's schema
|
|
62039
|
+
if (caClass && caClass.key.schemaName !== container.schema.name &&
|
|
62040
|
+
!container.schema.getReferenceSync(caClass.key.schemaName)) {
|
|
62041
|
+
throw new Exception_1.ECObjectsError(Exception_1.ECObjectsStatus.InvalidECJson, `Unable to load custom attribute ${caClass.fullName} from container ${container.fullName}, ${caClass.key.schemaName} reference not defined`);
|
|
62042
|
+
}
|
|
61949
62043
|
// Second tuple entry ia a function that provides the CA instance.
|
|
61950
62044
|
const provider = providerTuple[1];
|
|
61951
62045
|
const customAttribute = provider(caClass);
|
|
@@ -76604,6 +76698,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
76604
76698
|
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
76605
76699
|
/* harmony import */ var _IModelConnection__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./IModelConnection */ "../../core/frontend/lib/esm/IModelConnection.js");
|
|
76606
76700
|
/* harmony import */ var _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./IModelRoutingContext */ "../../core/frontend/lib/esm/IModelRoutingContext.js");
|
|
76701
|
+
/* harmony import */ var _IpcApp__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./IpcApp */ "../../core/frontend/lib/esm/IpcApp.js");
|
|
76607
76702
|
/*---------------------------------------------------------------------------------------------
|
|
76608
76703
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
76609
76704
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -76617,17 +76712,22 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
76617
76712
|
|
|
76618
76713
|
|
|
76619
76714
|
|
|
76715
|
+
|
|
76620
76716
|
const loggerCategory = _common_FrontendLoggerCategory__WEBPACK_IMPORTED_MODULE_2__.FrontendLoggerCategory.IModelConnection;
|
|
76621
76717
|
/**
|
|
76622
|
-
* An IModelConnection to a
|
|
76623
|
-
*
|
|
76624
|
-
* at servicing requests at the same time. For this reason, this type of connection may only be used with Checkpoint iModels that are
|
|
76625
|
-
* guaranteed to be the same on every backend. Obviously Checkpoint iModels only allow readonly access.
|
|
76718
|
+
* An IModelConnection to a Checkpoint of an iModel.
|
|
76719
|
+
* @see [CheckpointConnection]($docs/learning/frontend/IModelConnection)
|
|
76626
76720
|
* @public
|
|
76627
76721
|
*/
|
|
76628
76722
|
class CheckpointConnection extends _IModelConnection__WEBPACK_IMPORTED_MODULE_4__.IModelConnection {
|
|
76629
|
-
|
|
76630
|
-
|
|
76723
|
+
/** The Guid that identifies the iTwin that owns this iModel. */
|
|
76724
|
+
get iTwinId() { return super.iTwinId; }
|
|
76725
|
+
/** The Guid that identifies this iModel. */
|
|
76726
|
+
get iModelId() { return super.iModelId; }
|
|
76727
|
+
/** Returns `true` if [[close]] has already been called. */
|
|
76728
|
+
get isClosed() { return this._isClosed ? true : false; }
|
|
76729
|
+
constructor(props, fromIpc) {
|
|
76730
|
+
super(props);
|
|
76631
76731
|
this._reopenConnectionHandler = async (request, response, resubmit, reject) => {
|
|
76632
76732
|
if (!response.hasOwnProperty("isIModelNotFoundResponse"))
|
|
76633
76733
|
return;
|
|
@@ -76650,30 +76750,30 @@ class CheckpointConnection extends _IModelConnection__WEBPACK_IMPORTED_MODULE_4_
|
|
|
76650
76750
|
request.parameters[0] = this.getRpcProps(); // Modify the token of the original request before resubmitting it.
|
|
76651
76751
|
resubmit();
|
|
76652
76752
|
};
|
|
76753
|
+
this._fromIpc = fromIpc;
|
|
76653
76754
|
}
|
|
76654
|
-
/** The Guid that identifies the iTwin that owns this iModel. */
|
|
76655
|
-
get iTwinId() { return super.iTwinId; }
|
|
76656
|
-
/** The Guid that identifies this iModel. */
|
|
76657
|
-
get iModelId() { return super.iModelId; }
|
|
76658
|
-
/** Returns `true` if [[close]] has already been called. */
|
|
76659
|
-
get isClosed() { return this._isClosed ? true : false; }
|
|
76660
76755
|
/** Type guard for instanceof [[CheckpointConnection]] */
|
|
76661
76756
|
isCheckpointConnection() { return true; }
|
|
76662
76757
|
/**
|
|
76663
|
-
* Open a readonly IModelConnection to an iModel
|
|
76758
|
+
* Open a readonly IModelConnection to a Checkpoint of an iModel.
|
|
76664
76759
|
*/
|
|
76665
76760
|
static async openRemote(iTwinId, iModelId, version = _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.IModelVersion.latest()) {
|
|
76666
|
-
const routingContext = _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_5__.IModelRoutingContext.current || _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_5__.IModelRoutingContext["default"];
|
|
76667
|
-
const accessToken = await _IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.getAccessToken();
|
|
76668
76761
|
if (undefined === _IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.hubAccess)
|
|
76669
|
-
throw new Error("Missing an implementation of
|
|
76762
|
+
throw new Error("Missing an implementation of IModelApp.hubAccess");
|
|
76763
|
+
const accessToken = await _IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.getAccessToken();
|
|
76670
76764
|
const changeset = await _IModelApp__WEBPACK_IMPORTED_MODULE_3__.IModelApp.hubAccess.getChangesetFromVersion({ accessToken, iModelId, version });
|
|
76671
|
-
|
|
76672
|
-
const
|
|
76673
|
-
|
|
76674
|
-
|
|
76675
|
-
|
|
76676
|
-
|
|
76765
|
+
let connection;
|
|
76766
|
+
const iModelProps = { iTwinId, iModelId, changeset };
|
|
76767
|
+
if (_IpcApp__WEBPACK_IMPORTED_MODULE_6__.IpcApp.isValid) {
|
|
76768
|
+
connection = new this(await _IpcApp__WEBPACK_IMPORTED_MODULE_6__.IpcApp.appFunctionIpc.openCheckpoint(iModelProps), true);
|
|
76769
|
+
}
|
|
76770
|
+
else {
|
|
76771
|
+
const routingContext = _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_5__.IModelRoutingContext.current || _IModelRoutingContext__WEBPACK_IMPORTED_MODULE_5__.IModelRoutingContext["default"];
|
|
76772
|
+
connection = new this(await this.callOpen(iModelProps, routingContext), false);
|
|
76773
|
+
_itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RpcManager.setIModel(connection);
|
|
76774
|
+
connection.routingContext = routingContext;
|
|
76775
|
+
_itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RpcRequest.notFoundHandlers.addListener(connection._reopenConnectionHandler);
|
|
76776
|
+
}
|
|
76677
76777
|
_IModelConnection__WEBPACK_IMPORTED_MODULE_4__.IModelConnection.onOpen.raiseEvent(connection);
|
|
76678
76778
|
return connection;
|
|
76679
76779
|
}
|
|
@@ -76721,7 +76821,10 @@ class CheckpointConnection extends _IModelConnection__WEBPACK_IMPORTED_MODULE_4_
|
|
|
76721
76821
|
if (this.isClosed)
|
|
76722
76822
|
return;
|
|
76723
76823
|
this.beforeClose();
|
|
76724
|
-
|
|
76824
|
+
if (this._fromIpc)
|
|
76825
|
+
await _IpcApp__WEBPACK_IMPORTED_MODULE_6__.IpcApp.appFunctionIpc.closeIModel(this._fileKey);
|
|
76826
|
+
else
|
|
76827
|
+
_itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RpcRequest.notFoundHandlers.removeListener(this._reopenConnectionHandler);
|
|
76725
76828
|
this._isClosed = true;
|
|
76726
76829
|
}
|
|
76727
76830
|
}
|
|
@@ -81383,7 +81486,7 @@ var _a;
|
|
|
81383
81486
|
/** @public */
|
|
81384
81487
|
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
|
81385
81488
|
const ITWINJS_CORE_VERSION = _package_json__WEBPACK_IMPORTED_MODULE_0__.version;
|
|
81386
|
-
const COPYRIGHT_NOTICE = 'Copyright © 2017-
|
|
81489
|
+
const COPYRIGHT_NOTICE = 'Copyright © 2017-2024 <a href="https://www.bentley.com" target="_blank" rel="noopener noreferrer">Bentley Systems, Inc.</a>';
|
|
81387
81490
|
|
|
81388
81491
|
|
|
81389
81492
|
|
|
@@ -85703,7 +85806,7 @@ class RealityDataSourceCesiumIonAssetImpl {
|
|
|
85703
85806
|
// The following is only if the reality data is not stored on PW Context Share.
|
|
85704
85807
|
const cesiumAsset = _tile_internal__WEBPACK_IMPORTED_MODULE_3__.CesiumIonAssetProvider.parseCesiumUrl(url);
|
|
85705
85808
|
if (cesiumAsset) {
|
|
85706
|
-
const tokenAndUrl = await (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessTokenAndEndpointUrl)(cesiumAsset.id
|
|
85809
|
+
const tokenAndUrl = await (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessTokenAndEndpointUrl)(`${cesiumAsset.id}`, cesiumAsset.key);
|
|
85707
85810
|
if (tokenAndUrl.url && tokenAndUrl.token) {
|
|
85708
85811
|
url = tokenAndUrl.url;
|
|
85709
85812
|
this._requestAuthorization = `Bearer ${tokenAndUrl.token}`;
|
|
@@ -100311,9 +100414,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
100311
100414
|
/* harmony export */ "QuantityFormatter": () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.QuantityFormatter),
|
|
100312
100415
|
/* harmony export */ "QuantityType": () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.QuantityType),
|
|
100313
100416
|
/* harmony export */ "ReadonlyTileUserSet": () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.ReadonlyTileUserSet),
|
|
100314
|
-
/* harmony export */ "RealityDataError": () => (/* reexport safe */
|
|
100315
|
-
/* harmony export */ "RealityDataSource": () => (/* reexport safe */
|
|
100316
|
-
/* harmony export */ "RealityDataSourceProviderRegistry": () => (/* reexport safe */
|
|
100417
|
+
/* harmony export */ "RealityDataError": () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_162__.RealityDataError),
|
|
100418
|
+
/* harmony export */ "RealityDataSource": () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_162__.RealityDataSource),
|
|
100419
|
+
/* harmony export */ "RealityDataSourceProviderRegistry": () => (/* reexport safe */ _RealityDataSource__WEBPACK_IMPORTED_MODULE_162__.RealityDataSourceProviderRegistry),
|
|
100317
100420
|
/* harmony export */ "RealityMeshParams": () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_111__.RealityMeshParams),
|
|
100318
100421
|
/* harmony export */ "RealityMeshParamsBuilder": () => (/* reexport safe */ _render_RealityMeshParams__WEBPACK_IMPORTED_MODULE_111__.RealityMeshParamsBuilder),
|
|
100319
100422
|
/* harmony export */ "RealityModelTileTree": () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.RealityModelTileTree),
|
|
@@ -100551,6 +100654,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
100551
100654
|
/* harmony export */ "getImageSourceMimeType": () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.getImageSourceMimeType),
|
|
100552
100655
|
/* harmony export */ "getQuantityTypeKey": () => (/* reexport safe */ _quantity_formatting_QuantityFormatter__WEBPACK_IMPORTED_MODULE_93__.getQuantityTypeKey),
|
|
100553
100656
|
/* harmony export */ "gltfDictionaryIterator": () => (/* reexport safe */ _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__.gltfDictionaryIterator),
|
|
100657
|
+
/* harmony export */ "headersIncludeAuthMethod": () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_161__.headersIncludeAuthMethod),
|
|
100554
100658
|
/* harmony export */ "iModelTileParamsFromJSON": () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.iModelTileParamsFromJSON),
|
|
100555
100659
|
/* harmony export */ "iModelTileTreeParamsFromJSON": () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.iModelTileTreeParamsFromJSON),
|
|
100556
100660
|
/* harmony export */ "imageBitmapFromImageSource": () => (/* reexport safe */ _common_ImageUtil__WEBPACK_IMPORTED_MODULE_13__.imageBitmapFromImageSource),
|
|
@@ -100580,6 +100684,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
100580
100684
|
/* harmony export */ "readGltfGraphics": () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readGltfGraphics),
|
|
100581
100685
|
/* harmony export */ "readImdlContent": () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readImdlContent),
|
|
100582
100686
|
/* harmony export */ "readPointCloudTileContent": () => (/* reexport safe */ _tile_internal__WEBPACK_IMPORTED_MODULE_142__.readPointCloudTileContent),
|
|
100687
|
+
/* harmony export */ "setBasicAuthorization": () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_161__.setBasicAuthorization),
|
|
100688
|
+
/* harmony export */ "setRequestTimeout": () => (/* reexport safe */ _request_utils__WEBPACK_IMPORTED_MODULE_161__.setRequestTimeout),
|
|
100583
100689
|
/* harmony export */ "splitMeshParams": () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.splitMeshParams),
|
|
100584
100690
|
/* harmony export */ "splitPointStringParams": () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.splitPointStringParams),
|
|
100585
100691
|
/* harmony export */ "splitPolylineParams": () => (/* reexport safe */ _common_render_primitives_VertexTableSplitter__WEBPACK_IMPORTED_MODULE_29__.splitPolylineParams),
|
|
@@ -100755,8 +100861,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
100755
100861
|
/* harmony import */ var _ViewCreator2d__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./ViewCreator2d */ "../../core/frontend/lib/esm/ViewCreator2d.js");
|
|
100756
100862
|
/* harmony import */ var _ViewCreator3d__WEBPACK_IMPORTED_MODULE_159__ = __webpack_require__(/*! ./ViewCreator3d */ "../../core/frontend/lib/esm/ViewCreator3d.js");
|
|
100757
100863
|
/* harmony import */ var _LocalhostIpcApp__WEBPACK_IMPORTED_MODULE_160__ = __webpack_require__(/*! ./LocalhostIpcApp */ "../../core/frontend/lib/esm/LocalhostIpcApp.js");
|
|
100758
|
-
/* harmony import */ var
|
|
100759
|
-
/* harmony import */ var
|
|
100864
|
+
/* harmony import */ var _request_utils__WEBPACK_IMPORTED_MODULE_161__ = __webpack_require__(/*! ./request/utils */ "../../core/frontend/lib/esm/request/utils.js");
|
|
100865
|
+
/* harmony import */ var _RealityDataSource__WEBPACK_IMPORTED_MODULE_162__ = __webpack_require__(/*! ./RealityDataSource */ "../../core/frontend/lib/esm/RealityDataSource.js");
|
|
100866
|
+
/* harmony import */ var _extension_ExtensionRuntime__WEBPACK_IMPORTED_MODULE_163__ = __webpack_require__(/*! ./extension/ExtensionRuntime */ "../../core/frontend/lib/esm/extension/ExtensionRuntime.js");
|
|
100760
100867
|
/*---------------------------------------------------------------------------------------------
|
|
100761
100868
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
100762
100869
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -100921,6 +101028,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
100921
101028
|
|
|
100922
101029
|
|
|
100923
101030
|
|
|
101031
|
+
|
|
100924
101032
|
|
|
100925
101033
|
|
|
100926
101034
|
// TODO/FIX: "./extension/ExtensionRuntime" import has to be last to avoid circular dependency errors.
|
|
@@ -138024,7 +138132,8 @@ async function fetchWithRetry(fetchFunc, remainingRetries) {
|
|
|
138024
138132
|
__webpack_require__.r(__webpack_exports__);
|
|
138025
138133
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
138026
138134
|
/* harmony export */ "headersIncludeAuthMethod": () => (/* binding */ headersIncludeAuthMethod),
|
|
138027
|
-
/* harmony export */ "setBasicAuthorization": () => (/* binding */ setBasicAuthorization)
|
|
138135
|
+
/* harmony export */ "setBasicAuthorization": () => (/* binding */ setBasicAuthorization),
|
|
138136
|
+
/* harmony export */ "setRequestTimeout": () => (/* binding */ setRequestTimeout)
|
|
138028
138137
|
/* harmony export */ });
|
|
138029
138138
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
138030
138139
|
/*---------------------------------------------------------------------------------------------
|
|
@@ -138066,6 +138175,15 @@ function setBasicAuthorization(headers, userOrCreds, password) {
|
|
|
138066
138175
|
if (username !== undefined && pwd !== undefined)
|
|
138067
138176
|
headers.set("Authorization", `Basic ${_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.Base64EncodedString.encode(`${username}:${pwd}`)}`);
|
|
138068
138177
|
}
|
|
138178
|
+
/**
|
|
138179
|
+
* Set number of milliseconds a request can take before automatically being terminated
|
|
138180
|
+
* @internal
|
|
138181
|
+
*/
|
|
138182
|
+
function setRequestTimeout(opts, ms, abortController) {
|
|
138183
|
+
const controller = abortController ?? new AbortController();
|
|
138184
|
+
setTimeout(() => controller.abort(), ms);
|
|
138185
|
+
opts.signal = controller.signal;
|
|
138186
|
+
}
|
|
138069
138187
|
|
|
138070
138188
|
|
|
138071
138189
|
/***/ }),
|
|
@@ -139482,9 +139600,17 @@ class GltfReader {
|
|
|
139482
139600
|
renderGraphic = renderGraphicList[0];
|
|
139483
139601
|
else
|
|
139484
139602
|
renderGraphic = this._system.createGraphicList(renderGraphicList);
|
|
139485
|
-
if (featureTable)
|
|
139486
|
-
renderGraphic = this._system.createBatch(renderGraphic, _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PackedFeatureTable.pack(featureTable), contentRange);
|
|
139487
139603
|
const transform = this.getTileTransform(transformToRoot, pseudoRtcBias);
|
|
139604
|
+
// Compute range in tileset/world space.
|
|
139605
|
+
let range = contentRange;
|
|
139606
|
+
const invTransform = transform?.inverse();
|
|
139607
|
+
if (invTransform)
|
|
139608
|
+
range = invTransform.multiplyRange(contentRange);
|
|
139609
|
+
// The batch range needs to be in tile coordinate space.
|
|
139610
|
+
// If we computed the content range ourselves, it's already in tile space.
|
|
139611
|
+
// If the content range was supplied by the caller, it's in tileset space and needs to be transformed to tile space.
|
|
139612
|
+
if (featureTable)
|
|
139613
|
+
renderGraphic = this._system.createBatch(renderGraphic, _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PackedFeatureTable.pack(featureTable), this._computedContentRange ? contentRange : range);
|
|
139488
139614
|
const viewFlagOverrides = this.viewFlagOverrides;
|
|
139489
139615
|
if (transform || viewFlagOverrides) {
|
|
139490
139616
|
const branch = new _render_GraphicBranch__WEBPACK_IMPORTED_MODULE_4__.GraphicBranch(true);
|
|
@@ -139493,8 +139619,6 @@ class GltfReader {
|
|
|
139493
139619
|
branch.add(renderGraphic);
|
|
139494
139620
|
renderGraphic = this._system.createBranch(branch, transform ?? _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_1__.Transform.createIdentity());
|
|
139495
139621
|
}
|
|
139496
|
-
const invTransform = transform?.inverse();
|
|
139497
|
-
const range = invTransform ? invTransform.multiplyRange(contentRange) : contentRange;
|
|
139498
139622
|
return {
|
|
139499
139623
|
readStatus,
|
|
139500
139624
|
isLeaf,
|
|
@@ -146878,10 +147002,9 @@ class TileAdmin {
|
|
|
146878
147002
|
gpuMemoryLimit = isMobile ? gpuMemoryLimits.mobile : gpuMemoryLimits.nonMobile;
|
|
146879
147003
|
else
|
|
146880
147004
|
gpuMemoryLimit = gpuMemoryLimits;
|
|
146881
|
-
if (undefined === gpuMemoryLimit
|
|
146882
|
-
gpuMemoryLimit = "default";
|
|
146883
|
-
|
|
146884
|
-
this.gpuMemoryLimit = gpuMemoryLimit;
|
|
147005
|
+
if (undefined === gpuMemoryLimit)
|
|
147006
|
+
gpuMemoryLimit = isMobile ? "default" : TileAdmin.nonMobileUndefinedGpuMemoryLimit;
|
|
147007
|
+
this.gpuMemoryLimit = gpuMemoryLimit;
|
|
146885
147008
|
if (undefined !== options.maximumLevelsToSkip)
|
|
146886
147009
|
this.maximumLevelsToSkip = Math.floor(Math.max(0, options.maximumLevelsToSkip));
|
|
146887
147010
|
else
|
|
@@ -147468,6 +147591,8 @@ class TileAdmin {
|
|
|
147468
147591
|
aggressive: 500 * 1024 * 1024,
|
|
147469
147592
|
relaxed: 2.5 * 1024 * 1024 * 1024, // 2.5 GB
|
|
147470
147593
|
};
|
|
147594
|
+
/** @internal exported for tests */
|
|
147595
|
+
TileAdmin.nonMobileUndefinedGpuMemoryLimit = 6000 * 1024 * 1024; // 6,000 MB - used when nonMobile limit is undefined
|
|
147471
147596
|
/** The number of bytes of GPU memory associated with the various [[GpuMemoryLimit]]s for mobile devices.
|
|
147472
147597
|
* @see [[TileAdmin.Props.gpuMemoryLimits]] to specify the limit at startup.
|
|
147473
147598
|
* @see [[TileAdmin.gpuMemoryLimit]] to adjust the actual limit after startup.
|
|
@@ -150673,7 +150798,7 @@ function getCesiumOSMBuildingsUrl() {
|
|
|
150673
150798
|
return getCesiumAssetUrl(osmBuildingAssetId, key);
|
|
150674
150799
|
}
|
|
150675
150800
|
/** @internal */
|
|
150676
|
-
async function getCesiumAccessTokenAndEndpointUrl(assetId
|
|
150801
|
+
async function getCesiumAccessTokenAndEndpointUrl(assetId, requestKey) {
|
|
150677
150802
|
if (undefined === requestKey) {
|
|
150678
150803
|
requestKey = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tileAdmin.cesiumIonKey;
|
|
150679
150804
|
if (undefined === requestKey)
|
|
@@ -150704,7 +150829,7 @@ function notifyTerrainError(detailedDescription) {
|
|
|
150704
150829
|
}
|
|
150705
150830
|
/** @internal */
|
|
150706
150831
|
async function getCesiumTerrainProvider(opts) {
|
|
150707
|
-
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl();
|
|
150832
|
+
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl(opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default);
|
|
150708
150833
|
if (!accessTokenAndEndpointUrl.token || !accessTokenAndEndpointUrl.url) {
|
|
150709
150834
|
notifyTerrainError(_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString(`iModelJs:BackgroundMap.MissingCesiumToken`));
|
|
150710
150835
|
return undefined;
|
|
@@ -150790,13 +150915,17 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
150790
150915
|
this._tilingScheme = tilingScheme;
|
|
150791
150916
|
this._tileAvailability = tileAvailability;
|
|
150792
150917
|
this._metaDataAvailableLevel = metaDataAvailableLevel;
|
|
150918
|
+
this._assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
|
|
150793
150919
|
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(CesiumTerrainProvider._tokenTimeoutInterval);
|
|
150794
150920
|
}
|
|
150795
150921
|
addLogoCards(cards) {
|
|
150796
150922
|
if (cards.dataset.cesiumIonLogoCard)
|
|
150797
150923
|
return;
|
|
150798
150924
|
cards.dataset.cesiumIonLogoCard = "true";
|
|
150799
|
-
|
|
150925
|
+
let notice = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString("iModelJs:BackgroundMap.CesiumWorldTerrainAttribution");
|
|
150926
|
+
if (this._assetId === _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Bathymetry)
|
|
150927
|
+
notice = `${notice}\n${_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString("iModelJs:BackgroundMap.CesiumBathymetryAttribution")}`;
|
|
150928
|
+
const card = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.makeLogoCard({ iconSrc: `${_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.publicPath}images/cesium-ion.svg`, heading: "Cesium Ion", notice });
|
|
150800
150929
|
cards.appendChild(card);
|
|
150801
150930
|
}
|
|
150802
150931
|
get maxDepth() { return this._maxDepth; }
|
|
@@ -150828,7 +150957,7 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
150828
150957
|
// ###TODO why does he update the access token when reading the mesh instead of when requesting it?
|
|
150829
150958
|
// This function only returns undefined if it fails to acquire token - but it doesn't need the token...
|
|
150830
150959
|
if (_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().milliseconds > this._tokenTimeOut.milliseconds) {
|
|
150831
|
-
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl();
|
|
150960
|
+
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl(this._assetId);
|
|
150832
150961
|
if (!accessTokenAndEndpointUrl.token || args.isCanceled())
|
|
150833
150962
|
return undefined;
|
|
150834
150963
|
this._accessToken = accessTokenAndEndpointUrl.token;
|
|
@@ -156136,13 +156265,16 @@ class MapTreeSupplier {
|
|
|
156136
156265
|
// Terrain-only settings.
|
|
156137
156266
|
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareStrings)(lhs.terrainProviderName, rhs.terrainProviderName);
|
|
156138
156267
|
if (0 === cmp) {
|
|
156139
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.
|
|
156268
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareStringsOrUndefined)(lhs.terrainDataSource, rhs.terrainDataSource);
|
|
156140
156269
|
if (0 === cmp) {
|
|
156141
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.
|
|
156270
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.terrainHeightOrigin, rhs.terrainHeightOrigin);
|
|
156142
156271
|
if (0 === cmp) {
|
|
156143
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.
|
|
156144
|
-
if (0 === cmp)
|
|
156145
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.
|
|
156272
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.terrainHeightOriginMode, rhs.terrainHeightOriginMode);
|
|
156273
|
+
if (0 === cmp) {
|
|
156274
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.terrainExaggeration, rhs.terrainExaggeration);
|
|
156275
|
+
if (0 === cmp)
|
|
156276
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareBooleansOrUndefined)(lhs.produceGeometry, rhs.produceGeometry);
|
|
156277
|
+
}
|
|
156146
156278
|
}
|
|
156147
156279
|
}
|
|
156148
156280
|
}
|
|
@@ -156185,6 +156317,7 @@ class MapTreeSupplier {
|
|
|
156185
156317
|
wantSkirts: id.wantSkirts,
|
|
156186
156318
|
exaggeration: id.terrainExaggeration,
|
|
156187
156319
|
wantNormals: id.wantNormals,
|
|
156320
|
+
dataSource: id.terrainDataSource,
|
|
156188
156321
|
};
|
|
156189
156322
|
if (id.applyTerrain) {
|
|
156190
156323
|
await _ApproximateTerrainHeights__WEBPACK_IMPORTED_MODULE_3__.ApproximateTerrainHeights.instance.initialize();
|
|
@@ -156343,6 +156476,7 @@ class MapTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_7__.TileTr
|
|
|
156343
156476
|
tileUserId: this._tileUserId,
|
|
156344
156477
|
applyTerrain: this.settings.applyTerrain && !this._isDrape,
|
|
156345
156478
|
terrainProviderName: this.settings.terrainSettings.providerName,
|
|
156479
|
+
terrainDataSource: this.settings.terrainSettings.dataSource,
|
|
156346
156480
|
terrainHeightOrigin: this.settings.terrainSettings.heightOrigin,
|
|
156347
156481
|
terrainHeightOriginMode: this.settings.terrainSettings.heightOriginMode,
|
|
156348
156482
|
terrainExaggeration: this.settings.terrainSettings.exaggeration,
|
|
@@ -156391,12 +156525,15 @@ class MapTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_7__.TileTr
|
|
|
156391
156525
|
return MapTileTreeScaleRangeVisibility.Unknown;
|
|
156392
156526
|
}
|
|
156393
156527
|
initializeLayers(context) {
|
|
156528
|
+
let hasLoadedTileTree = false;
|
|
156394
156529
|
const tree = this.treeOwner.load();
|
|
156395
|
-
if (undefined === tree)
|
|
156396
|
-
return
|
|
156530
|
+
if (undefined === tree) {
|
|
156531
|
+
return hasLoadedTileTree; // Not loaded yet.
|
|
156532
|
+
}
|
|
156397
156533
|
tree.layerImageryTrees.length = 0;
|
|
156398
|
-
if (0 === this._layerTrees.length)
|
|
156534
|
+
if (0 === this._layerTrees.length) {
|
|
156399
156535
|
return !this.isOverlay;
|
|
156536
|
+
}
|
|
156400
156537
|
let treeIndex = this._layerTrees.length - 1;
|
|
156401
156538
|
// Start displaying at the highest completely opaque layer...
|
|
156402
156539
|
for (; treeIndex >= 1; treeIndex--) {
|
|
@@ -156411,8 +156548,14 @@ class MapTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_7__.TileTr
|
|
|
156411
156548
|
if (layerTreeRef && _internal__WEBPACK_IMPORTED_MODULE_7__.TileTreeLoadStatus.NotFound !== layerTreeRef.treeOwner.loadStatus
|
|
156412
156549
|
&& !layerTreeRef.layerSettings.allSubLayersInvisible) {
|
|
156413
156550
|
const layerTree = layerTreeRef.treeOwner.load();
|
|
156414
|
-
if (
|
|
156415
|
-
|
|
156551
|
+
if (layerTree !== undefined) {
|
|
156552
|
+
hasLoadedTileTree = true;
|
|
156553
|
+
}
|
|
156554
|
+
else {
|
|
156555
|
+
// Let's continue, there might be loaded tile tree in the list
|
|
156556
|
+
continue;
|
|
156557
|
+
}
|
|
156558
|
+
// Add loaded TileTree
|
|
156416
156559
|
const baseImageryLayer = this._baseImageryLayerIncluded && (treeIndex === 0);
|
|
156417
156560
|
if (layerTree instanceof _internal__WEBPACK_IMPORTED_MODULE_7__.ImageryMapTileTree) {
|
|
156418
156561
|
tree.addImageryLayer(layerTree, layerTreeRef.layerSettings, treeIndex, baseImageryLayer);
|
|
@@ -156421,7 +156564,7 @@ class MapTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_7__.TileTr
|
|
|
156421
156564
|
tree.addModelLayer(layerTreeRef, context);
|
|
156422
156565
|
}
|
|
156423
156566
|
}
|
|
156424
|
-
return
|
|
156567
|
+
return hasLoadedTileTree;
|
|
156425
156568
|
}
|
|
156426
156569
|
/** Adds this reference's graphics to the scene. By default this invokes [[TileTree.drawScene]] on the referenced TileTree, if it is loaded. */
|
|
156427
156570
|
addToScene(context) {
|
|
@@ -156640,6 +156783,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
156640
156783
|
/* harmony export */ });
|
|
156641
156784
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
156642
156785
|
/* harmony import */ var _internal__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
156786
|
+
/* harmony import */ var _IModelApp__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../IModelApp */ "../../core/frontend/lib/esm/IModelApp.js");
|
|
156643
156787
|
/*---------------------------------------------------------------------------------------------
|
|
156644
156788
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
156645
156789
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -156649,6 +156793,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
156649
156793
|
*/
|
|
156650
156794
|
|
|
156651
156795
|
|
|
156796
|
+
|
|
156652
156797
|
/** @internal */
|
|
156653
156798
|
class MapTiledGraphicsProvider {
|
|
156654
156799
|
forEachTileTreeRef(viewport, func) {
|
|
@@ -156677,6 +156822,21 @@ class MapTiledGraphicsProvider {
|
|
|
156677
156822
|
this.backgroundDrapeMap.setLayerSettings(mapImagery.backgroundLayers);
|
|
156678
156823
|
this.overlayMap.setLayerSettings(imagery.overlayLayers);
|
|
156679
156824
|
}));
|
|
156825
|
+
// We need to clear imagery tiles assigned to map tiles every time a new ImageryTileTree is loaded,
|
|
156826
|
+
// otherwise the imagery tiles won't refresh correctly.
|
|
156827
|
+
const clearMapLayers = (loadedTileTree, mapTileTreeToClear) => {
|
|
156828
|
+
const trees = new _internal__WEBPACK_IMPORTED_MODULE_1__.DisclosedTileTreeSet();
|
|
156829
|
+
mapTileTreeToClear.discloseTileTrees(trees);
|
|
156830
|
+
if (trees.has(loadedTileTree)) {
|
|
156831
|
+
mapTileTreeToClear.clearLayers();
|
|
156832
|
+
}
|
|
156833
|
+
};
|
|
156834
|
+
removals.push(_IModelApp__WEBPACK_IMPORTED_MODULE_2__.IModelApp.tileAdmin.onTileTreeLoad.addListener((tileTree) => {
|
|
156835
|
+
if (tileTree.tileTree !== undefined) {
|
|
156836
|
+
clearMapLayers(tileTree.tileTree, this.backgroundMap);
|
|
156837
|
+
clearMapLayers(tileTree.tileTree, this.overlayMap);
|
|
156838
|
+
}
|
|
156839
|
+
}));
|
|
156680
156840
|
}
|
|
156681
156841
|
// This is used in inital view setup and when views are synchronized. If view is being synchronized
|
|
156682
156842
|
// we need to clear the layers which purges tile graphics if the settings or layers are changed.
|
|
@@ -185415,27 +185575,32 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
185415
185575
|
*/
|
|
185416
185576
|
class CoordinateXYZ extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.GeometryQuery {
|
|
185417
185577
|
/** Return a (REFERENCE TO) the coordinate data. */
|
|
185418
|
-
get point() {
|
|
185578
|
+
get point() {
|
|
185579
|
+
return this._xyz;
|
|
185580
|
+
}
|
|
185419
185581
|
/**
|
|
185582
|
+
* Constructor
|
|
185420
185583
|
* @param xyz point to be CAPTURED.
|
|
185421
185584
|
*/
|
|
185422
185585
|
constructor(xyz) {
|
|
185423
185586
|
super();
|
|
185424
|
-
/** String name for interface properties */
|
|
185587
|
+
/** String name for interface properties. */
|
|
185425
185588
|
this.geometryCategory = "point";
|
|
185426
185589
|
this._xyz = xyz;
|
|
185427
185590
|
}
|
|
185428
|
-
/** Create a new CoordinateXYZ containing a CLONE of point */
|
|
185591
|
+
/** Create a new CoordinateXYZ containing a CLONE of point. */
|
|
185429
185592
|
static create(point) {
|
|
185430
185593
|
return new CoordinateXYZ(point.clone());
|
|
185431
185594
|
}
|
|
185432
|
-
/** Create a new CoordinateXYZ */
|
|
185595
|
+
/** Create a new CoordinateXYZ. */
|
|
185433
185596
|
static createXYZ(x = 0, y = 0, z = 0) {
|
|
185434
185597
|
return new CoordinateXYZ(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(x, y, z));
|
|
185435
185598
|
}
|
|
185436
|
-
/** Return the range of the point */
|
|
185437
|
-
range() {
|
|
185438
|
-
|
|
185599
|
+
/** Return the range of the point. */
|
|
185600
|
+
range() {
|
|
185601
|
+
return _geometry3d_Range__WEBPACK_IMPORTED_MODULE_2__.Range3d.create(this._xyz);
|
|
185602
|
+
}
|
|
185603
|
+
/** Extend `rangeToExtend` to include this point (optionally transformed). */
|
|
185439
185604
|
extendRange(rangeToExtend, transform) {
|
|
185440
185605
|
if (transform)
|
|
185441
185606
|
rangeToExtend.extendTransformedXYZ(transform, this._xyz.x, this._xyz.y, this._xyz.z);
|
|
@@ -185447,27 +185612,23 @@ class CoordinateXYZ extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
185447
185612
|
transform.multiplyPoint3d(this._xyz, this._xyz);
|
|
185448
185613
|
return true;
|
|
185449
185614
|
}
|
|
185450
|
-
/** Return a transformed clone */
|
|
185615
|
+
/** Return a transformed clone. */
|
|
185451
185616
|
cloneTransformed(transform) {
|
|
185452
185617
|
const result = new CoordinateXYZ(this._xyz.clone());
|
|
185453
185618
|
result.tryTransformInPlace(transform);
|
|
185454
185619
|
return result;
|
|
185455
185620
|
}
|
|
185456
|
-
/** Return a clone */
|
|
185621
|
+
/** Return a clone. */
|
|
185457
185622
|
clone() {
|
|
185458
185623
|
return new CoordinateXYZ(this._xyz.clone());
|
|
185459
185624
|
}
|
|
185460
|
-
/**
|
|
185461
|
-
* Return GeometryQuery children for recursive queries.
|
|
185462
|
-
* * Leaf classes do not need to implement.
|
|
185463
|
-
*/
|
|
185464
185625
|
/** Test if (other instanceof Coordinate). */
|
|
185465
185626
|
isSameGeometryClass(other) {
|
|
185466
185627
|
return other instanceof CoordinateXYZ;
|
|
185467
185628
|
}
|
|
185468
185629
|
/**
|
|
185469
185630
|
* Test for exact structure and nearly identical geometry.
|
|
185470
|
-
* * Leaf classes must implement
|
|
185631
|
+
* * Leaf classes must implement.
|
|
185471
185632
|
* * Base class implementation recurses through children.
|
|
185472
185633
|
* * Base implementation is complete for classes with children and no properties.
|
|
185473
185634
|
* * Classes with both children and properties must implement for properties, call super for children.
|
|
@@ -185475,7 +185636,7 @@ class CoordinateXYZ extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
185475
185636
|
isAlmostEqual(other) {
|
|
185476
185637
|
return (other instanceof CoordinateXYZ) && this._xyz.isAlmostEqual(other._xyz);
|
|
185477
185638
|
}
|
|
185478
|
-
/** Second step of double dispatch:
|
|
185639
|
+
/** Second step of double dispatch: call `handler.handleCoordinateXYZ(this)` */
|
|
185479
185640
|
dispatchToGeometryHandler(handler) {
|
|
185480
185641
|
return handler.handleCoordinateXYZ(this);
|
|
185481
185642
|
}
|
|
@@ -189124,13 +189285,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
189124
189285
|
|
|
189125
189286
|
|
|
189126
189287
|
/**
|
|
189127
|
-
* Queries to be supported by Curve, Surface, and Solid objects
|
|
189288
|
+
* Queries to be supported by Curve, Surface, and Solid objects.
|
|
189128
189289
|
* * `GeometryQuery` is an abstract base class with (abstract) methods for querying curve, solid primitive, mesh,
|
|
189129
|
-
* and bspline surfaces
|
|
189290
|
+
* and bspline surfaces.
|
|
189130
189291
|
* @public
|
|
189131
189292
|
*/
|
|
189132
189293
|
class GeometryQuery {
|
|
189133
|
-
/** Return the range of the entire GeometryQuery tree */
|
|
189294
|
+
/** Return the range of the entire GeometryQuery tree. */
|
|
189134
189295
|
range(transform, result) {
|
|
189135
189296
|
if (result)
|
|
189136
189297
|
result.setNull();
|
|
@@ -189138,7 +189299,7 @@ class GeometryQuery {
|
|
|
189138
189299
|
this.extendRange(range, transform);
|
|
189139
189300
|
return range;
|
|
189140
189301
|
}
|
|
189141
|
-
/** Try to move the geometry by dx,dy,dz */
|
|
189302
|
+
/** Try to move the geometry by dx,dy,dz. */
|
|
189142
189303
|
tryTranslateInPlace(dx, dy = 0.0, dz = 0.0) {
|
|
189143
189304
|
return this.tryTransformInPlace(_geometry3d_Transform__WEBPACK_IMPORTED_MODULE_1__.Transform.createTranslationXYZ(dx, dy, dz));
|
|
189144
189305
|
}
|
|
@@ -189146,13 +189307,15 @@ class GeometryQuery {
|
|
|
189146
189307
|
* Return GeometryQuery children for recursive queries.
|
|
189147
189308
|
* * leaf classes do not need to implement.
|
|
189148
189309
|
*/
|
|
189149
|
-
get children() {
|
|
189310
|
+
get children() {
|
|
189311
|
+
return undefined;
|
|
189312
|
+
}
|
|
189150
189313
|
/**
|
|
189151
189314
|
* Test for exact structure and nearly identical geometry.
|
|
189152
|
-
* * Leaf classes must implement
|
|
189153
|
-
* *
|
|
189154
|
-
* *
|
|
189155
|
-
* *
|
|
189315
|
+
* * Leaf classes must implement.
|
|
189316
|
+
* * Base class implementation recurses through children.
|
|
189317
|
+
* * Base implementation is complete for classes with children and no properties.
|
|
189318
|
+
* * Classes with both children and properties must implement for properties, call super for children.
|
|
189156
189319
|
*/
|
|
189157
189320
|
isAlmostEqual(other) {
|
|
189158
189321
|
if (this.isSameGeometryClass(other)) {
|
|
@@ -189167,20 +189330,19 @@ class GeometryQuery {
|
|
|
189167
189330
|
}
|
|
189168
189331
|
return true;
|
|
189169
189332
|
}
|
|
189170
|
-
else if (childrenA || childrenB) { // CurveCollections start with empty arrays for children
|
|
189171
|
-
return false; // plainly different
|
|
189333
|
+
else if (childrenA || childrenB) { // CurveCollections start with empty arrays for children so these null pointer cases are never reached.
|
|
189334
|
+
return false; // plainly different
|
|
189172
189335
|
}
|
|
189173
189336
|
else {
|
|
189174
|
-
// both children null
|
|
189175
|
-
return true;
|
|
189337
|
+
return true; // both children null; call it equal
|
|
189176
189338
|
}
|
|
189177
189339
|
}
|
|
189178
189340
|
return false;
|
|
189179
189341
|
}
|
|
189180
189342
|
/**
|
|
189181
189343
|
* Apply instance method [[isAlmostEqual]] if both are defined.
|
|
189182
|
-
* *
|
|
189183
|
-
* *
|
|
189344
|
+
* * Both undefined returns true.
|
|
189345
|
+
* * Single defined returns false.
|
|
189184
189346
|
*/
|
|
189185
189347
|
static areAlmostEqual(a, b) {
|
|
189186
189348
|
if (a instanceof GeometryQuery && b instanceof GeometryQuery)
|
|
@@ -191814,9 +191976,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
191814
191976
|
*/
|
|
191815
191977
|
class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.GeometryQuery {
|
|
191816
191978
|
/** Test if `other` is a PointString3d */
|
|
191817
|
-
isSameGeometryClass(other) {
|
|
191818
|
-
|
|
191819
|
-
|
|
191979
|
+
isSameGeometryClass(other) {
|
|
191980
|
+
return other instanceof PointString3d;
|
|
191981
|
+
}
|
|
191982
|
+
/** Return a clone of the points array. */
|
|
191983
|
+
get points() {
|
|
191984
|
+
return this._points;
|
|
191985
|
+
}
|
|
191820
191986
|
constructor() {
|
|
191821
191987
|
super();
|
|
191822
191988
|
/** String name for schema properties */
|
|
@@ -191826,11 +191992,18 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191826
191992
|
/** Clone and apply a transform. */
|
|
191827
191993
|
cloneTransformed(transform) {
|
|
191828
191994
|
const c = this.clone();
|
|
191829
|
-
c.tryTransformInPlace(transform);
|
|
191995
|
+
c.tryTransformInPlace(transform); // we know tryTransformInPlace succeeds
|
|
191830
191996
|
return c;
|
|
191831
191997
|
}
|
|
191998
|
+
/**
|
|
191999
|
+
* Turn any array (possibly nested) into a "flat" array of objects that are not arrays. This allows processing
|
|
192000
|
+
* the objects without recursion into nested arrays.
|
|
192001
|
+
*/
|
|
191832
192002
|
static flattenArray(arr) {
|
|
191833
|
-
return arr.reduce(
|
|
192003
|
+
return arr.reduce(
|
|
192004
|
+
// a callback function to execute for each element in the array. Its return value becomes
|
|
192005
|
+
// the value of the "flat" parameter on the next invocation of the callback function.
|
|
192006
|
+
(flat, toFlatten) => {
|
|
191834
192007
|
return flat.concat(Array.isArray(toFlatten) ? PointString3d.flattenArray(toFlatten) : toFlatten);
|
|
191835
192008
|
}, []);
|
|
191836
192009
|
}
|
|
@@ -191840,7 +192013,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191840
192013
|
result.addPoints(points);
|
|
191841
192014
|
return result;
|
|
191842
192015
|
}
|
|
191843
|
-
/** Add multiple points to the PointString3d */
|
|
192016
|
+
/** Add multiple points to the PointString3d. */
|
|
191844
192017
|
addPoints(...points) {
|
|
191845
192018
|
const toAdd = PointString3d.flattenArray(points);
|
|
191846
192019
|
for (const p of toAdd) {
|
|
@@ -191848,25 +192021,25 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191848
192021
|
this._points.push(p);
|
|
191849
192022
|
}
|
|
191850
192023
|
}
|
|
191851
|
-
/** Add a single point to the PointString3d */
|
|
192024
|
+
/** Add a single point to the PointString3d. */
|
|
191852
192025
|
addPoint(point) {
|
|
191853
192026
|
this._points.push(point);
|
|
191854
192027
|
}
|
|
191855
|
-
/** Remove the last point added to the PointString3d */
|
|
192028
|
+
/** Remove the last point added to the PointString3d. */
|
|
191856
192029
|
popPoint() {
|
|
191857
192030
|
this._points.pop();
|
|
191858
192031
|
}
|
|
191859
|
-
/** Replace this PointString3d's point array by a clone of the array in `other
|
|
192032
|
+
/** Replace this PointString3d's point array by a clone of the array in `other`. */
|
|
191860
192033
|
setFrom(other) {
|
|
191861
192034
|
this._points = _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.clonePoint3dArray(other._points);
|
|
191862
192035
|
}
|
|
191863
|
-
/** Create from an array of Point3d */
|
|
192036
|
+
/** Create from an array of Point3d. */
|
|
191864
192037
|
static createPoints(points) {
|
|
191865
192038
|
const ps = new PointString3d();
|
|
191866
192039
|
ps._points = _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.clonePoint3dArray(points);
|
|
191867
192040
|
return ps;
|
|
191868
192041
|
}
|
|
191869
|
-
/** Create a PointString3d from xyz coordinates packed in a Float64Array */
|
|
192042
|
+
/** Create a PointString3d from xyz coordinates packed in a Float64Array. */
|
|
191870
192043
|
static createFloat64Array(xyzData) {
|
|
191871
192044
|
const ps = new PointString3d();
|
|
191872
192045
|
for (let i = 0; i + 3 <= xyzData.length; i += 3)
|
|
@@ -191879,7 +192052,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191879
192052
|
retVal.setFrom(this);
|
|
191880
192053
|
return retVal;
|
|
191881
192054
|
}
|
|
191882
|
-
/** Replace this instance's points by those from a json array, e.g. `[[1,2,3], [4,
|
|
192055
|
+
/** Replace this instance's points by those from a json array, e.g. `[[1,2,3], [4,5,6]]`. */
|
|
191883
192056
|
setFromJSON(json) {
|
|
191884
192057
|
this._points.length = 0;
|
|
191885
192058
|
if (Array.isArray(json)) {
|
|
@@ -191890,7 +192063,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191890
192063
|
}
|
|
191891
192064
|
/**
|
|
191892
192065
|
* Convert an PointString3d to a JSON object.
|
|
191893
|
-
* @return {*} [[
|
|
192066
|
+
* @return {*} e.g., `[[1,2,3], [4,5,6]]`.
|
|
191894
192067
|
*/
|
|
191895
192068
|
toJSON() {
|
|
191896
192069
|
const value = [];
|
|
@@ -191898,7 +192071,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191898
192071
|
value.push(p.toJSON());
|
|
191899
192072
|
return value;
|
|
191900
192073
|
}
|
|
191901
|
-
/** Create a PointString3d from a json array, e.g. `[[1,2,3], [4,
|
|
192074
|
+
/** Create a PointString3d from a json array, e.g. `[[1,2,3], [4,5,6]]`. */
|
|
191902
192075
|
static fromJSON(json) {
|
|
191903
192076
|
const ps = new PointString3d();
|
|
191904
192077
|
ps.setFromJSON(json);
|
|
@@ -191916,14 +192089,16 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191916
192089
|
return undefined;
|
|
191917
192090
|
}
|
|
191918
192091
|
/** Return the number of points. */
|
|
191919
|
-
numPoints() {
|
|
192092
|
+
numPoints() {
|
|
192093
|
+
return this._points.length;
|
|
192094
|
+
}
|
|
191920
192095
|
/** Reverse the point order */
|
|
191921
192096
|
reverseInPlace() {
|
|
191922
192097
|
if (this._points.length >= 2) {
|
|
191923
192098
|
let i0 = 0;
|
|
191924
192099
|
let i1 = this._points.length - 1;
|
|
191925
192100
|
while (i0 < i1) {
|
|
191926
|
-
const a = this._points[
|
|
192101
|
+
const a = this._points[i1];
|
|
191927
192102
|
this._points[i1] = this._points[i0];
|
|
191928
192103
|
this._points[i0] = a;
|
|
191929
192104
|
i0++;
|
|
@@ -191931,7 +192106,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191931
192106
|
}
|
|
191932
192107
|
}
|
|
191933
192108
|
}
|
|
191934
|
-
/**
|
|
192109
|
+
/** Apply transform on points in place. */
|
|
191935
192110
|
tryTransformInPlace(transform) {
|
|
191936
192111
|
transform.multiplyPoint3dArrayInPlace(this._points);
|
|
191937
192112
|
return true;
|
|
@@ -191950,7 +192125,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191950
192125
|
isInPlane(plane) {
|
|
191951
192126
|
return _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.isCloseToPlane(this._points, plane, _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.smallMetricDistance);
|
|
191952
192127
|
}
|
|
191953
|
-
/** Extend a range to include the points in this PointString3d. */
|
|
192128
|
+
/** Extend a range to include the points in this PointString3d (optionally transformed). */
|
|
191954
192129
|
extendRange(rangeToExtend, transform) {
|
|
191955
192130
|
rangeToExtend.extendArray(this._points, transform);
|
|
191956
192131
|
}
|
|
@@ -191961,8 +192136,10 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191961
192136
|
return _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.isAlmostEqual(this._points, other._points);
|
|
191962
192137
|
}
|
|
191963
192138
|
/** Reduce to empty set of points. */
|
|
191964
|
-
clear() {
|
|
191965
|
-
|
|
192139
|
+
clear() {
|
|
192140
|
+
this._points.length = 0;
|
|
192141
|
+
}
|
|
192142
|
+
/** Second step of double dispatch: call `handler.handlePointString(this)` */
|
|
191966
192143
|
dispatchToGeometryHandler(handler) {
|
|
191967
192144
|
return handler.handlePointString3d(this);
|
|
191968
192145
|
}
|
|
@@ -233818,6 +233995,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
233818
233995
|
* @public
|
|
233819
233996
|
*/
|
|
233820
233997
|
class Polyface extends _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.GeometryQuery {
|
|
233998
|
+
/** Constructor */
|
|
233821
233999
|
constructor(data) {
|
|
233822
234000
|
super();
|
|
233823
234001
|
/** String name for schema properties */
|
|
@@ -233825,69 +234003,102 @@ class Polyface extends _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometr
|
|
|
233825
234003
|
this.data = data;
|
|
233826
234004
|
}
|
|
233827
234005
|
/** Flag indicating if the mesh display must assume both sides are visible. */
|
|
233828
|
-
get twoSided() {
|
|
233829
|
-
|
|
233830
|
-
|
|
233831
|
-
|
|
233832
|
-
|
|
233833
|
-
|
|
233834
|
-
|
|
233835
|
-
|
|
233836
|
-
|
|
233837
|
-
|
|
233838
|
-
|
|
233839
|
-
|
|
233840
|
-
|
|
233841
|
-
|
|
233842
|
-
|
|
233843
|
-
|
|
234006
|
+
get twoSided() {
|
|
234007
|
+
return this.data.twoSided;
|
|
234008
|
+
}
|
|
234009
|
+
set twoSided(value) {
|
|
234010
|
+
this.data.twoSided = value;
|
|
234011
|
+
}
|
|
234012
|
+
/**
|
|
234013
|
+
* Flag indicating if the mesh closure is unknown (0), open sheet (1), closed solid (2).
|
|
234014
|
+
* * A boundary edge of a mesh is defined as an edge with only one connected facet.
|
|
234015
|
+
* * Closed solid is a mesh with no boundary edge. Open sheet is a mesh that has boundary edge(s).
|
|
234016
|
+
*/
|
|
234017
|
+
get expectedClosure() {
|
|
234018
|
+
return this.data.expectedClosure;
|
|
234019
|
+
}
|
|
234020
|
+
set expectedClosure(value) {
|
|
234021
|
+
this.data.expectedClosure = value;
|
|
234022
|
+
}
|
|
234023
|
+
/**
|
|
234024
|
+
* Check validity of indices into a data array.
|
|
234025
|
+
* * It is valid to have both indices and data undefined.
|
|
234026
|
+
* * It is NOT valid for just one to be defined.
|
|
234027
|
+
* * Index values at indices[indexPositionA <= i < indexPositionB] must be valid indices to the data array.
|
|
234028
|
+
* @param indices array of indices.
|
|
234029
|
+
* @param indexPositionA first index to test.
|
|
234030
|
+
* @param indexPositionB one past final index to test.
|
|
234031
|
+
* @param data data array.
|
|
234032
|
+
* @param dataLength length of data array.
|
|
234033
|
+
*/
|
|
233844
234034
|
static areIndicesValid(indices, indexPositionA, indexPositionB, data, dataLength) {
|
|
233845
234035
|
if (indices === undefined && data === undefined)
|
|
233846
234036
|
return true;
|
|
233847
|
-
if (
|
|
234037
|
+
if (indices === undefined || data === undefined)
|
|
233848
234038
|
return false;
|
|
233849
234039
|
if (indexPositionA < 0 || indexPositionA >= indices.length)
|
|
233850
234040
|
return false;
|
|
233851
|
-
if (indexPositionB
|
|
234041
|
+
if (indexPositionB <= indexPositionA || indexPositionB > indices.length)
|
|
233852
234042
|
return false;
|
|
233853
234043
|
for (let i = indexPositionA; i < indexPositionB; i++)
|
|
233854
234044
|
if (indices[i] < 0 || indices[i] >= dataLength)
|
|
233855
234045
|
return false;
|
|
233856
234046
|
return true;
|
|
233857
234047
|
}
|
|
233858
|
-
/**
|
|
233859
|
-
* Returns the number of facets of this polyface. Subclasses should override.
|
|
233860
|
-
*/
|
|
234048
|
+
/** Returns the number of facets of this polyface. Subclasses should override. */
|
|
233861
234049
|
get facetCount() {
|
|
233862
234050
|
return undefined;
|
|
233863
234051
|
}
|
|
233864
234052
|
}
|
|
233865
234053
|
/**
|
|
233866
|
-
* An `IndexedPolyface` is a set of facets which can have normal, param, and color arrays with independent point,
|
|
234054
|
+
* An `IndexedPolyface` is a set of facets which can have normal, param, and color arrays with independent point,
|
|
234055
|
+
* normal, param, and color indices.
|
|
233867
234056
|
* @public
|
|
233868
234057
|
*/
|
|
233869
234058
|
class IndexedPolyface extends Polyface {
|
|
234059
|
+
/**
|
|
234060
|
+
* Constructor for a new polyface.
|
|
234061
|
+
* @param data PolyfaceData arrays to capture.
|
|
234062
|
+
* @param facetStart optional array of facet start indices (e.g. known during clone)
|
|
234063
|
+
* @param facetToFacetData optional array of face identifiers (e.g. known during clone)
|
|
234064
|
+
*/
|
|
234065
|
+
constructor(data, facetStart, facetToFaceData) {
|
|
234066
|
+
super(data);
|
|
234067
|
+
if (facetStart)
|
|
234068
|
+
this._facetStart = facetStart.slice(); // deep copy
|
|
234069
|
+
else {
|
|
234070
|
+
this._facetStart = [];
|
|
234071
|
+
this._facetStart.push(0);
|
|
234072
|
+
}
|
|
234073
|
+
if (facetToFaceData)
|
|
234074
|
+
this._facetToFaceData = facetToFaceData.slice(); // deep copy
|
|
234075
|
+
else
|
|
234076
|
+
this._facetToFaceData = [];
|
|
234077
|
+
}
|
|
233870
234078
|
/** Test if other is an instance of `IndexedPolyface` */
|
|
233871
|
-
isSameGeometryClass(other) {
|
|
234079
|
+
isSameGeometryClass(other) {
|
|
234080
|
+
return other instanceof IndexedPolyface;
|
|
234081
|
+
}
|
|
233872
234082
|
/** Tests for equivalence between two IndexedPolyfaces. */
|
|
233873
234083
|
isAlmostEqual(other) {
|
|
233874
234084
|
if (other instanceof IndexedPolyface) {
|
|
233875
|
-
return this.data.isAlmostEqual(other.data) &&
|
|
234085
|
+
return this.data.isAlmostEqual(other.data) &&
|
|
234086
|
+
_geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_1__.NumberArray.isExactEqual(this._facetStart, other._facetStart) &&
|
|
233876
234087
|
_geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_1__.NumberArray.isExactEqual(this._facetToFaceData, other._facetToFaceData);
|
|
233877
234088
|
}
|
|
233878
234089
|
return false;
|
|
233879
234090
|
}
|
|
234091
|
+
/** Returns true if either the point array or the point index array is empty. */
|
|
234092
|
+
get isEmpty() {
|
|
234093
|
+
return this.data.pointCount === 0 || this.data.pointIndex.length === 0;
|
|
234094
|
+
}
|
|
233880
234095
|
/**
|
|
233881
|
-
*
|
|
233882
|
-
|
|
233883
|
-
|
|
233884
|
-
|
|
233885
|
-
* * apply the transform to points
|
|
233886
|
-
* * apply the (inverse transpose of) the matrix part to normals
|
|
233887
|
-
* * If determinant is negative, also
|
|
234096
|
+
* Transform the mesh.
|
|
234097
|
+
* * Apply the transform to points.
|
|
234098
|
+
* * Apply the (inverse transpose of the) matrix part to normals.
|
|
234099
|
+
* * If determinant of the transform matrix is negative, also
|
|
233888
234100
|
* * negate normals
|
|
233889
234101
|
* * reverse index order around each facet.
|
|
233890
|
-
* @param transform
|
|
233891
234102
|
*/
|
|
233892
234103
|
tryTransformInPlace(transform) {
|
|
233893
234104
|
if (!this.data.tryTransformInPlace(transform))
|
|
@@ -233908,52 +234119,47 @@ class IndexedPolyface extends Polyface {
|
|
|
233908
234119
|
const result = new IndexedPolyface(this.data.clone(), this._facetStart.slice(), this._facetToFaceData.slice());
|
|
233909
234120
|
return result;
|
|
233910
234121
|
}
|
|
233911
|
-
/**
|
|
234122
|
+
/**
|
|
234123
|
+
* Return a deep clone with transformed points and normals.
|
|
234124
|
+
* @see [[IndexedPolyface.tryTransformInPlace]] for details of how transform is done.
|
|
234125
|
+
*/
|
|
233912
234126
|
cloneTransformed(transform) {
|
|
233913
234127
|
const result = this.clone();
|
|
233914
234128
|
result.tryTransformInPlace(transform);
|
|
233915
234129
|
return result;
|
|
233916
234130
|
}
|
|
233917
234131
|
/** Reverse the order of indices around all facets. */
|
|
233918
|
-
reverseIndices() {
|
|
234132
|
+
reverseIndices() {
|
|
234133
|
+
this.data.reverseIndices(this._facetStart);
|
|
234134
|
+
}
|
|
233919
234135
|
/** Reverse the direction of all normal vectors. */
|
|
233920
|
-
reverseNormals() {
|
|
233921
|
-
|
|
234136
|
+
reverseNormals() {
|
|
234137
|
+
this.data.reverseNormals();
|
|
234138
|
+
}
|
|
234139
|
+
/**
|
|
234140
|
+
* Return face data using a facet index.
|
|
234141
|
+
* * Returns `undefined` if none found.
|
|
234142
|
+
* * This is the REFERENCE to the FacetFaceData not a copy.
|
|
234143
|
+
*/
|
|
233922
234144
|
tryGetFaceData(i) {
|
|
234145
|
+
if (i < 0 || i >= this._facetToFaceData.length)
|
|
234146
|
+
return undefined;
|
|
233923
234147
|
const faceIndex = this._facetToFaceData[i];
|
|
233924
|
-
if (faceIndex >= this.data.face.length)
|
|
234148
|
+
if (faceIndex < 0 || faceIndex >= this.data.face.length)
|
|
233925
234149
|
return undefined;
|
|
233926
234150
|
return this.data.face[faceIndex];
|
|
233927
234151
|
}
|
|
233928
234152
|
/**
|
|
233929
|
-
*
|
|
233930
|
-
*
|
|
233931
|
-
*
|
|
233932
|
-
*
|
|
233933
|
-
*/
|
|
233934
|
-
constructor(data, facetStart, facetToFaceData) {
|
|
233935
|
-
super(data);
|
|
233936
|
-
if (facetStart)
|
|
233937
|
-
this._facetStart = facetStart.slice();
|
|
233938
|
-
else {
|
|
233939
|
-
this._facetStart = [];
|
|
233940
|
-
this._facetStart.push(0);
|
|
233941
|
-
}
|
|
233942
|
-
if (facetToFaceData)
|
|
233943
|
-
this._facetToFaceData = facetToFaceData.slice();
|
|
233944
|
-
else
|
|
233945
|
-
this._facetToFaceData = [];
|
|
233946
|
-
}
|
|
233947
|
-
/**
|
|
233948
|
-
* * Add facets from source to this polyface.
|
|
233949
|
-
* * Optionally reverse facet indices as per PolyfaceData.reverseIndicesSingleFacet() with preserveStart = false, and invert source normals.
|
|
233950
|
-
* * Optionally apply a transform to points and normals.
|
|
234153
|
+
* Add facets from `source` to `this` polyface.
|
|
234154
|
+
* * Optionally reverse facet indices as per `PolyfaceData.reverseIndicesSingleFacet()` with `preserveStart = false` and
|
|
234155
|
+
* invert source normals.
|
|
234156
|
+
* * Optionally apply a `transform` to points and normals.
|
|
233951
234157
|
* * Will only copy param, normal, color, and face data if we are already tracking them AND/OR the source contains them.
|
|
233952
234158
|
*/
|
|
233953
234159
|
addIndexedPolyface(source, reversed, transform) {
|
|
233954
234160
|
const numSourceFacets = source.facetCount;
|
|
233955
|
-
//
|
|
233956
|
-
//
|
|
234161
|
+
// add point, point index, and edge visibility data
|
|
234162
|
+
// note that there is no need to build an intermediate index map since all points are added
|
|
233957
234163
|
const startOfNewPoints = this.data.point.length;
|
|
233958
234164
|
const xyz = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create();
|
|
233959
234165
|
for (let i = 0; i < source.data.point.length; i++) {
|
|
@@ -233980,11 +234186,11 @@ class IndexedPolyface extends Polyface {
|
|
|
233980
234186
|
}
|
|
233981
234187
|
this.terminateFacet(false);
|
|
233982
234188
|
}
|
|
233983
|
-
//
|
|
234189
|
+
// add param and param index data
|
|
233984
234190
|
if (undefined !== this.data.param && undefined !== source.data.param && undefined !== source.data.paramIndex) {
|
|
233985
234191
|
const startOfNewParams = this.data.param.length;
|
|
233986
234192
|
this.data.param.pushFromGrowableXYArray(source.data.param);
|
|
233987
|
-
for (let i = 0; i < numSourceFacets; i++) { //
|
|
234193
|
+
for (let i = 0; i < numSourceFacets; i++) { // expect facet start and ends for points to match normals
|
|
233988
234194
|
const i0 = source._facetStart[i];
|
|
233989
234195
|
const i1 = source._facetStart[i + 1];
|
|
233990
234196
|
if (reversed) {
|
|
@@ -233997,7 +234203,7 @@ class IndexedPolyface extends Polyface {
|
|
|
233997
234203
|
}
|
|
233998
234204
|
}
|
|
233999
234205
|
}
|
|
234000
|
-
//
|
|
234206
|
+
// add normal and normal index data
|
|
234001
234207
|
if (undefined !== this.data.normal && undefined !== source.data.normal && undefined !== source.data.normalIndex) {
|
|
234002
234208
|
const startOfNewNormals = this.data.normal.length;
|
|
234003
234209
|
for (let i = 0; i < source.data.normal.length; i++) {
|
|
@@ -234008,7 +234214,7 @@ class IndexedPolyface extends Polyface {
|
|
|
234008
234214
|
sourceNormal.scaleInPlace(-1.0);
|
|
234009
234215
|
this.addNormal(sourceNormal);
|
|
234010
234216
|
}
|
|
234011
|
-
for (let i = 0; i < numSourceFacets; i++) { //
|
|
234217
|
+
for (let i = 0; i < numSourceFacets; i++) { // expect facet start and ends for points to match normals
|
|
234012
234218
|
const i0 = source._facetStart[i];
|
|
234013
234219
|
const i1 = source._facetStart[i + 1];
|
|
234014
234220
|
if (reversed) {
|
|
@@ -234021,12 +234227,12 @@ class IndexedPolyface extends Polyface {
|
|
|
234021
234227
|
}
|
|
234022
234228
|
}
|
|
234023
234229
|
}
|
|
234024
|
-
//
|
|
234230
|
+
// add color and color index data
|
|
234025
234231
|
if (undefined !== this.data.color && undefined !== source.data.color && undefined !== source.data.colorIndex) {
|
|
234026
234232
|
const startOfNewColors = this.data.color.length;
|
|
234027
234233
|
for (const sourceColor of source.data.color)
|
|
234028
234234
|
this.addColor(sourceColor);
|
|
234029
|
-
for (let i = 0; i < numSourceFacets; i++) { //
|
|
234235
|
+
for (let i = 0; i < numSourceFacets; i++) { // expect facet start and ends for points to match colors
|
|
234030
234236
|
const i0 = source._facetStart[i];
|
|
234031
234237
|
const i1 = source._facetStart[i + 1];
|
|
234032
234238
|
if (reversed) {
|
|
@@ -234039,7 +234245,7 @@ class IndexedPolyface extends Polyface {
|
|
|
234039
234245
|
}
|
|
234040
234246
|
}
|
|
234041
234247
|
}
|
|
234042
|
-
//
|
|
234248
|
+
// add face and facetToFace index data
|
|
234043
234249
|
if (source.data.face.length !== 0) {
|
|
234044
234250
|
const startOfNewFaceData = this.data.face.length;
|
|
234045
234251
|
for (const face of source.data.face) {
|
|
@@ -234051,25 +234257,31 @@ class IndexedPolyface extends Polyface {
|
|
|
234051
234257
|
}
|
|
234052
234258
|
}
|
|
234053
234259
|
}
|
|
234054
|
-
/**
|
|
234055
|
-
*
|
|
234260
|
+
/**
|
|
234261
|
+
* Return the total number of indices in zero-terminated style, which includes
|
|
234262
|
+
* * all the indices in the packed zero-based table.
|
|
234056
234263
|
* * one additional index for the zero-terminator of each facet.
|
|
234057
|
-
* @note Note that all index arrays (
|
|
234264
|
+
* @note Note that all index arrays (pointIndex, normalIndex, paramIndex, colorIndex) have the same counts, so there
|
|
234058
234265
|
* is not a separate query for each of them.
|
|
234059
234266
|
*/
|
|
234060
|
-
get zeroTerminatedIndexCount() {
|
|
234061
|
-
|
|
234062
|
-
|
|
234063
|
-
|
|
234064
|
-
*
|
|
234267
|
+
get zeroTerminatedIndexCount() {
|
|
234268
|
+
return this.data.pointIndex.length + this._facetStart.length - 1;
|
|
234269
|
+
}
|
|
234270
|
+
/**
|
|
234271
|
+
* Create an empty facet set with coordinate and index data to be supplied later.
|
|
234272
|
+
* @param needNormals true if normals will be constructed.
|
|
234273
|
+
* @param needParams true if uv parameters will be constructed.
|
|
234274
|
+
* @param needColors true if colors will be constructed.
|
|
234275
|
+
* @param twoSided true if the facets are to be considered viewable from the back.
|
|
234065
234276
|
*/
|
|
234066
234277
|
static create(needNormals = false, needParams = false, needColors = false, twoSided = false) {
|
|
234067
234278
|
return new IndexedPolyface(new _PolyfaceData__WEBPACK_IMPORTED_MODULE_3__.PolyfaceData(needNormals, needParams, needColors, twoSided));
|
|
234068
234279
|
}
|
|
234069
|
-
/**
|
|
234070
|
-
*
|
|
234071
|
-
* @param
|
|
234072
|
-
* @
|
|
234280
|
+
/**
|
|
234281
|
+
* Add (a clone of) a point to point array.
|
|
234282
|
+
* @param point the point.
|
|
234283
|
+
* @param priorIndex (optional) index of prior point to check for possible duplicate value.
|
|
234284
|
+
* @returns the zero-based index of the added or duplicate point.
|
|
234073
234285
|
*/
|
|
234074
234286
|
addPoint(point, priorIndex) {
|
|
234075
234287
|
if (priorIndex !== undefined) {
|
|
@@ -234080,12 +234292,21 @@ class IndexedPolyface extends Polyface {
|
|
|
234080
234292
|
this.data.point.pushXYZ(point.x, point.y, point.z);
|
|
234081
234293
|
return this.data.point.length - 1;
|
|
234082
234294
|
}
|
|
234083
|
-
/**
|
|
234084
|
-
*
|
|
234295
|
+
/**
|
|
234296
|
+
* Add a point to point array.
|
|
234297
|
+
* @param x the x coordinate of point.
|
|
234298
|
+
* @param y the y coordinate of point.
|
|
234299
|
+
* @param z the z coordinate of point.
|
|
234300
|
+
* @returns the zero-based index of the added point.
|
|
234085
234301
|
*/
|
|
234086
|
-
addPointXYZ(x, y, z) {
|
|
234087
|
-
|
|
234088
|
-
|
|
234302
|
+
addPointXYZ(x, y, z) {
|
|
234303
|
+
this.data.point.pushXYZ(x, y, z);
|
|
234304
|
+
return this.data.point.length - 1;
|
|
234305
|
+
}
|
|
234306
|
+
/**
|
|
234307
|
+
* Add (a clone of) a uv parameter to the parameter array.
|
|
234308
|
+
* @param param the parameter.
|
|
234309
|
+
* @returns zero-based index of the added param.
|
|
234089
234310
|
*/
|
|
234090
234311
|
addParam(param) {
|
|
234091
234312
|
if (!this.data.param)
|
|
@@ -234093,10 +234314,13 @@ class IndexedPolyface extends Polyface {
|
|
|
234093
234314
|
this.data.param.push(param);
|
|
234094
234315
|
return this.data.param.length - 1;
|
|
234095
234316
|
}
|
|
234096
|
-
/**
|
|
234317
|
+
/**
|
|
234318
|
+
* Add a uv parameter to the parameter array.
|
|
234319
|
+
* @param u the u part of parameter.
|
|
234320
|
+
* @param v the v part of parameter.
|
|
234097
234321
|
* @param priorIndexA first index to check for possible duplicate value.
|
|
234098
234322
|
* @param priorIndexB second index to check for possible duplicate value.
|
|
234099
|
-
* @returns
|
|
234323
|
+
* @returns zero-based index of the added or duplicate parameter.
|
|
234100
234324
|
*/
|
|
234101
234325
|
addParamUV(u, v, priorIndexA, priorIndexB) {
|
|
234102
234326
|
if (!this.data.param)
|
|
@@ -234108,37 +234332,39 @@ class IndexedPolyface extends Polyface {
|
|
|
234108
234332
|
this.data.param.pushXY(u, v);
|
|
234109
234333
|
return this.data.param.length - 1;
|
|
234110
234334
|
}
|
|
234111
|
-
/**
|
|
234335
|
+
/**
|
|
234336
|
+
* Add (a clone of) a normal vector to the normal array.
|
|
234337
|
+
* @param normal the normal vector.
|
|
234112
234338
|
* @param priorIndexA first index to check for possible duplicate value.
|
|
234113
234339
|
* @param priorIndexB second index to check for possible duplicate value.
|
|
234114
|
-
* @returns
|
|
234340
|
+
* @returns zero-based index of the added or duplicate normal.
|
|
234115
234341
|
*/
|
|
234116
234342
|
addNormal(normal, priorIndexA, priorIndexB) {
|
|
234343
|
+
// check if `normal` is duplicate of `dataNormal` at index `i`
|
|
234344
|
+
const normalIsDuplicate = (dataNormal, i) => {
|
|
234345
|
+
const distance = dataNormal.distanceIndexToPoint(i, normal);
|
|
234346
|
+
return distance !== undefined && _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.isSmallMetricDistance(distance);
|
|
234347
|
+
};
|
|
234117
234348
|
if (this.data.normal !== undefined) {
|
|
234118
|
-
|
|
234119
|
-
|
|
234120
|
-
|
|
234121
|
-
|
|
234122
|
-
|
|
234123
|
-
}
|
|
234124
|
-
if (priorIndexB !== undefined) {
|
|
234125
|
-
distance = this.data.normal.distanceIndexToPoint(priorIndexB, normal);
|
|
234126
|
-
if (distance !== undefined && _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.isSmallMetricDistance(distance))
|
|
234127
|
-
return priorIndexB;
|
|
234128
|
-
}
|
|
234129
|
-
// Note: Do NOT attempt to chain to tail if no prior indices given.
|
|
234130
|
-
// But if they are, look also to the tail.
|
|
234349
|
+
if (priorIndexA !== undefined && normalIsDuplicate(this.data.normal, priorIndexA))
|
|
234350
|
+
return priorIndexA;
|
|
234351
|
+
if (priorIndexB !== undefined && normalIsDuplicate(this.data.normal, priorIndexB))
|
|
234352
|
+
return priorIndexB;
|
|
234353
|
+
// check the tail index for possible duplicate
|
|
234131
234354
|
if (priorIndexA !== undefined || priorIndexB !== undefined) {
|
|
234132
234355
|
const tailIndex = this.data.normal.length - 1;
|
|
234133
|
-
|
|
234134
|
-
if (distance !== undefined && _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.isSmallMetricDistance(distance))
|
|
234356
|
+
if (normalIsDuplicate(this.data.normal, tailIndex))
|
|
234135
234357
|
return tailIndex;
|
|
234136
234358
|
}
|
|
234137
234359
|
}
|
|
234138
234360
|
return this.addNormalXYZ(normal.x, normal.y, normal.z);
|
|
234139
234361
|
}
|
|
234140
|
-
/**
|
|
234141
|
-
*
|
|
234362
|
+
/**
|
|
234363
|
+
* Add a normal vector to the normal array.
|
|
234364
|
+
* @param x the x coordinate of normal.
|
|
234365
|
+
* @param y the y coordinate of normal.
|
|
234366
|
+
* @param z the z coordinate of normal.
|
|
234367
|
+
* @returns zero-based index of the added normal vector.
|
|
234142
234368
|
*/
|
|
234143
234369
|
addNormalXYZ(x, y, z) {
|
|
234144
234370
|
if (!this.data.normal)
|
|
@@ -234146,8 +234372,10 @@ class IndexedPolyface extends Polyface {
|
|
|
234146
234372
|
this.data.normal.pushXYZ(x, y, z);
|
|
234147
234373
|
return this.data.normal.length - 1;
|
|
234148
234374
|
}
|
|
234149
|
-
/**
|
|
234150
|
-
*
|
|
234375
|
+
/**
|
|
234376
|
+
* Add a color to the color array
|
|
234377
|
+
* @param color the color.
|
|
234378
|
+
* @returns zero-based index of the added color.
|
|
234151
234379
|
*/
|
|
234152
234380
|
addColor(color) {
|
|
234153
234381
|
if (!this.data.color)
|
|
@@ -234156,46 +234384,54 @@ class IndexedPolyface extends Polyface {
|
|
|
234156
234384
|
return this.data.color.length - 1;
|
|
234157
234385
|
}
|
|
234158
234386
|
/** Add a point index with edge visibility flag. */
|
|
234159
|
-
addPointIndex(index, visible = true) {
|
|
234160
|
-
|
|
234387
|
+
addPointIndex(index, visible = true) {
|
|
234388
|
+
this.data.pointIndex.push(index);
|
|
234389
|
+
this.data.edgeVisible.push(visible);
|
|
234390
|
+
}
|
|
234391
|
+
/** Add a normal index. */
|
|
234161
234392
|
addNormalIndex(index) {
|
|
234162
234393
|
if (!this.data.normalIndex)
|
|
234163
234394
|
this.data.normalIndex = [];
|
|
234164
234395
|
this.data.normalIndex.push(index);
|
|
234165
234396
|
}
|
|
234166
|
-
/** Add a param index */
|
|
234397
|
+
/** Add a param index. */
|
|
234167
234398
|
addParamIndex(index) {
|
|
234168
234399
|
if (!this.data.paramIndex)
|
|
234169
234400
|
this.data.paramIndex = [];
|
|
234170
234401
|
this.data.paramIndex.push(index);
|
|
234171
234402
|
}
|
|
234172
|
-
/** Add a color index */
|
|
234403
|
+
/** Add a color index. */
|
|
234173
234404
|
addColorIndex(index) {
|
|
234174
234405
|
if (!this.data.colorIndex)
|
|
234175
234406
|
this.data.colorIndex = [];
|
|
234176
234407
|
this.data.colorIndex.push(index);
|
|
234177
234408
|
}
|
|
234178
|
-
/**
|
|
234409
|
+
/**
|
|
234410
|
+
* Clean up the open facet.
|
|
234411
|
+
* @deprecated in 4.x to remove nebulous "open facet" concept from the API. Call [[PolyfaceData.trimAllIndexArrays]]
|
|
234412
|
+
* instead.
|
|
234413
|
+
*/
|
|
234179
234414
|
cleanupOpenFacet() {
|
|
234180
234415
|
this.data.trimAllIndexArrays(this.data.pointIndex.length);
|
|
234181
234416
|
}
|
|
234182
|
-
/**
|
|
234183
|
-
*
|
|
234184
|
-
* *
|
|
234185
|
-
*
|
|
234186
|
-
*
|
|
234187
|
-
*
|
|
234188
|
-
* *
|
|
234189
|
-
* * "undefined" return is normal. Any other return is a description of an error.
|
|
234417
|
+
/**
|
|
234418
|
+
* Announce the end of construction of a facet.
|
|
234419
|
+
* * Optionally check for:
|
|
234420
|
+
* * Same number of indices among all active index arrays -- point, normal, param, color
|
|
234421
|
+
* * All indices are within bounds of the respective data arrays.
|
|
234422
|
+
* * In error cases, all index arrays are trimmed back to the size when previous facet was terminated.
|
|
234423
|
+
* * A return value of `undefined` is normal. Otherwise, a string array of error messages is returned.
|
|
234190
234424
|
*/
|
|
234191
234425
|
terminateFacet(validateAllIndices = true) {
|
|
234192
234426
|
const numFacets = this._facetStart.length - 1;
|
|
234193
|
-
|
|
234194
|
-
const
|
|
234427
|
+
// number of indices in accepted facets
|
|
234428
|
+
const lengthA = this._facetStart[numFacets];
|
|
234429
|
+
// number of indices in all facets (accepted facet plus the last facet to be accepted)
|
|
234430
|
+
const lengthB = this.data.pointIndex.length;
|
|
234195
234431
|
if (validateAllIndices) {
|
|
234196
234432
|
const messages = [];
|
|
234197
234433
|
if (lengthB < lengthA + 2)
|
|
234198
|
-
messages.push("Less than 3 indices in
|
|
234434
|
+
messages.push("Less than 3 indices in the last facet");
|
|
234199
234435
|
if (this.data.normalIndex && this.data.normalIndex.length !== lengthB)
|
|
234200
234436
|
messages.push("normalIndex count must match pointIndex count");
|
|
234201
234437
|
if (this.data.paramIndex && this.data.paramIndex.length !== lengthB)
|
|
@@ -234205,70 +234441,93 @@ class IndexedPolyface extends Polyface {
|
|
|
234205
234441
|
if (this.data.edgeVisible.length !== lengthB)
|
|
234206
234442
|
messages.push("visibleIndex count must equal pointIndex count");
|
|
234207
234443
|
if (!Polyface.areIndicesValid(this.data.normalIndex, lengthA, lengthB, this.data.normal, this.data.normal ? this.data.normal.length : 0))
|
|
234208
|
-
messages.push("invalid normal indices in
|
|
234444
|
+
messages.push("invalid normal indices in the last facet");
|
|
234209
234445
|
if (messages.length > 0) {
|
|
234210
|
-
this.
|
|
234446
|
+
this.data.trimAllIndexArrays(lengthB);
|
|
234211
234447
|
return messages;
|
|
234212
234448
|
}
|
|
234213
234449
|
}
|
|
234214
|
-
//
|
|
234215
|
-
this._facetStart.push(lengthB);
|
|
234450
|
+
this._facetStart.push(lengthB); // append start index of the future facet
|
|
234216
234451
|
return undefined;
|
|
234217
234452
|
}
|
|
234218
|
-
/**
|
|
234219
|
-
|
|
234220
|
-
|
|
234221
|
-
|
|
234222
|
-
/** (read-only property)
|
|
234223
|
-
get
|
|
234224
|
-
|
|
234225
|
-
|
|
234226
|
-
/** (read-only property)
|
|
234227
|
-
get pointCount() {
|
|
234228
|
-
|
|
234229
|
-
|
|
234230
|
-
/** (read-only property)
|
|
234231
|
-
get
|
|
234232
|
-
|
|
234233
|
-
|
|
234453
|
+
/** Number of facets (read-only property). */
|
|
234454
|
+
get facetCount() {
|
|
234455
|
+
return this._facetStart.length - 1;
|
|
234456
|
+
}
|
|
234457
|
+
/** Number of faces (read-only property). */
|
|
234458
|
+
get faceCount() {
|
|
234459
|
+
return this.data.faceCount;
|
|
234460
|
+
}
|
|
234461
|
+
/** Number of points (read-only property). */
|
|
234462
|
+
get pointCount() {
|
|
234463
|
+
return this.data.pointCount;
|
|
234464
|
+
}
|
|
234465
|
+
/** Number of colors (read-only property). */
|
|
234466
|
+
get colorCount() {
|
|
234467
|
+
return this.data.colorCount;
|
|
234468
|
+
}
|
|
234469
|
+
/** Number of parameters (read-only property). */
|
|
234470
|
+
get paramCount() {
|
|
234471
|
+
return this.data.paramCount;
|
|
234472
|
+
}
|
|
234473
|
+
/** Number of normals (read-only property). */
|
|
234474
|
+
get normalCount() {
|
|
234475
|
+
return this.data.normalCount;
|
|
234476
|
+
}
|
|
234477
|
+
/** Test if `index` is a valid facet index. */
|
|
234478
|
+
isValidFacetIndex(index) {
|
|
234479
|
+
return index >= 0 && index < this.facetCount;
|
|
234480
|
+
}
|
|
234234
234481
|
/** Return the number of edges in a particular facet. */
|
|
234235
234482
|
numEdgeInFacet(facetIndex) {
|
|
234236
234483
|
if (this.isValidFacetIndex(facetIndex))
|
|
234237
234484
|
return this._facetStart[facetIndex + 1] - this._facetStart[facetIndex];
|
|
234238
234485
|
return 0;
|
|
234239
234486
|
}
|
|
234240
|
-
/**
|
|
234241
|
-
|
|
234242
|
-
|
|
234243
|
-
|
|
234244
|
-
/** ASSUME valid facet index
|
|
234245
|
-
facetIndex1(index) {
|
|
234246
|
-
|
|
234247
|
-
|
|
234487
|
+
/** ASSUME valid facet index. Return start index of facet in pointIndex arrays. */
|
|
234488
|
+
facetIndex0(index) {
|
|
234489
|
+
return this._facetStart[index];
|
|
234490
|
+
}
|
|
234491
|
+
/** ASSUME valid facet index. Return one past end index of facet in pointIndex arrays. */
|
|
234492
|
+
facetIndex1(index) {
|
|
234493
|
+
return this._facetStart[index + 1];
|
|
234494
|
+
}
|
|
234495
|
+
/** Create a visitor for this polyface */
|
|
234496
|
+
createVisitor(numWrap = 0) {
|
|
234497
|
+
return _IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_7__.IndexedPolyfaceVisitor.create(this, numWrap);
|
|
234498
|
+
}
|
|
234248
234499
|
/** Return the range of (optionally transformed) points in this mesh. */
|
|
234249
|
-
range(transform, result) {
|
|
234250
|
-
|
|
234251
|
-
|
|
234252
|
-
/**
|
|
234500
|
+
range(transform, result) {
|
|
234501
|
+
return this.data.range(result, transform);
|
|
234502
|
+
}
|
|
234503
|
+
/** Extend `range` with coordinates from this mesh. */
|
|
234504
|
+
extendRange(range, transform) {
|
|
234505
|
+
this.data.range(range, transform);
|
|
234506
|
+
}
|
|
234507
|
+
/**
|
|
234508
|
+
* Given the index of a facet, return the data pertaining to the face it is a part of.
|
|
234509
|
+
* @deprecated in 4.x. Use [[IndexedPolyface.tryGetFaceData]], which verifies the index is in range.
|
|
234510
|
+
*/
|
|
234253
234511
|
getFaceDataByFacetIndex(facetIndex) {
|
|
234254
234512
|
return this.data.face[this._facetToFaceData[facetIndex]];
|
|
234255
234513
|
}
|
|
234256
234514
|
/**
|
|
234257
|
-
*
|
|
234258
|
-
*
|
|
234515
|
+
* Set new FacetFaceData.
|
|
234516
|
+
* * All terminated facets since the last face declaration will be mapped to a single new FacetFaceData object using
|
|
234517
|
+
* facetToFaceData[]. FacetFaceData holds the 2D range of the face. Returns `true` if successful, `false` otherwise.
|
|
234259
234518
|
*/
|
|
234260
234519
|
setNewFaceData(endFacetIndex = 0) {
|
|
234261
234520
|
const facetStart = this._facetToFaceData.length;
|
|
234262
234521
|
if (facetStart >= this._facetStart.length)
|
|
234263
234522
|
return false;
|
|
234264
|
-
if (0 === endFacetIndex) //
|
|
234265
|
-
endFacetIndex = this._facetStart.length; //
|
|
234523
|
+
if (0 === endFacetIndex) // the default for endFacetIndex is really the last facet
|
|
234524
|
+
endFacetIndex = this._facetStart.length; // last facet index corresponds to the future facet
|
|
234266
234525
|
const faceData = _FacetFaceData__WEBPACK_IMPORTED_MODULE_8__.FacetFaceData.createNull();
|
|
234267
234526
|
const visitor = _IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_7__.IndexedPolyfaceVisitor.create(this, 0);
|
|
234268
|
-
if (!visitor.moveToReadIndex(facetStart)) { //
|
|
234527
|
+
if (!visitor.moveToReadIndex(facetStart)) { // move visitor to first facet of new face
|
|
234269
234528
|
return false;
|
|
234270
234529
|
}
|
|
234271
|
-
//
|
|
234530
|
+
// if parameter range is provided (by the polyface planeSet clipper) then use it
|
|
234272
234531
|
const paramDefined = this.data.param !== undefined;
|
|
234273
234532
|
const setParamRange = faceData.paramRange.isNull && paramDefined;
|
|
234274
234533
|
do {
|
|
@@ -234283,7 +234542,7 @@ class IndexedPolyface extends Polyface {
|
|
|
234283
234542
|
this._facetToFaceData.push(0 === this._facetStart[i] ? 0 : faceDataIndex);
|
|
234284
234543
|
return true;
|
|
234285
234544
|
}
|
|
234286
|
-
/** Second step of double dispatch:
|
|
234545
|
+
/** Second step of double dispatch: call `handler.handleIndexedPolyface(this)`. */
|
|
234287
234546
|
dispatchToGeometryHandler(handler) {
|
|
234288
234547
|
return handler.handleIndexedPolyface(this);
|
|
234289
234548
|
}
|
|
@@ -236962,14 +237221,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
236962
237221
|
* @public
|
|
236963
237222
|
*/
|
|
236964
237223
|
class PolyfaceData {
|
|
236965
|
-
/** boolean tag indicating if the facets are viewable from the back */
|
|
237224
|
+
/** boolean tag indicating if the facets are to be considered viewable from the back */
|
|
236966
237225
|
get twoSided() { return this._twoSided; }
|
|
236967
237226
|
set twoSided(value) { this._twoSided = value; }
|
|
236968
237227
|
/** set the `taggedNumericData` member */
|
|
236969
237228
|
setTaggedNumericData(data) {
|
|
236970
237229
|
this.taggedNumericData = data;
|
|
236971
237230
|
}
|
|
236972
|
-
/**
|
|
237231
|
+
/**
|
|
237232
|
+
* Flag indicating if the mesh closure is unknown (0), open sheet (1), closed solid (2).
|
|
237233
|
+
* * A boundary edge of a mesh is defined as an edge with only one connected facet.
|
|
237234
|
+
* * Closed solid is a mesh with no boundary edge. Open sheet is a mesh that has boundary edge(s).
|
|
237235
|
+
*/
|
|
236973
237236
|
get expectedClosure() { return this._expectedClosure; }
|
|
236974
237237
|
set expectedClosure(value) { this._expectedClosure = value; }
|
|
236975
237238
|
/** Constructor for facets.
|
|
@@ -237181,10 +237444,13 @@ class PolyfaceData {
|
|
|
237181
237444
|
this.auxData.indices[numEdge + i] = this.auxData.indices[i];
|
|
237182
237445
|
}
|
|
237183
237446
|
}
|
|
237184
|
-
static trimArray(data, length) {
|
|
237185
|
-
data
|
|
237186
|
-
|
|
237187
|
-
|
|
237447
|
+
static trimArray(data, length) {
|
|
237448
|
+
if (data && length < data.length)
|
|
237449
|
+
data.length = length;
|
|
237450
|
+
}
|
|
237451
|
+
/**
|
|
237452
|
+
* Trim all index arrays to the stated length.
|
|
237453
|
+
* This is called by PolyfaceBuilder to clean up after an aborted construction sequence.
|
|
237188
237454
|
*/
|
|
237189
237455
|
trimAllIndexArrays(length) {
|
|
237190
237456
|
PolyfaceData.trimArray(this.pointIndex, length);
|
|
@@ -283247,10 +283513,10 @@ class Settings {
|
|
|
283247
283513
|
});
|
|
283248
283514
|
}
|
|
283249
283515
|
toString() {
|
|
283250
|
-
return `Configurations:
|
|
283251
|
-
oidc client id: ${this.oidcClientId},
|
|
283252
|
-
oidc scopes: ${this.oidcScopes},
|
|
283253
|
-
applicationId: ${this.gprid},
|
|
283516
|
+
return `Configurations:
|
|
283517
|
+
oidc client id: ${this.oidcClientId},
|
|
283518
|
+
oidc scopes: ${this.oidcScopes},
|
|
283519
|
+
applicationId: ${this.gprid},
|
|
283254
283520
|
log level: ${this.logLevel}`;
|
|
283255
283521
|
}
|
|
283256
283522
|
}
|
|
@@ -292633,7 +292899,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
292633
292899
|
/***/ ((module) => {
|
|
292634
292900
|
|
|
292635
292901
|
"use strict";
|
|
292636
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.5.0-dev.
|
|
292902
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.5.0-dev.20","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 && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers","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","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/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 -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -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 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.5.0-dev.20","@itwin/core-bentley":"workspace:^4.5.0-dev.20","@itwin/core-common":"workspace:^4.5.0-dev.20","@itwin/core-geometry":"workspace:^4.5.0-dev.20","@itwin/core-orbitgt":"workspace:^4.5.0-dev.20","@itwin/core-quantity":"workspace:^4.5.0-dev.20"},"//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":"4.0.0-dev.44","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/mocha":"^10.0.6","@types/sinon":"^17.0.2","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.3.10","chai-as-promised":"^7.1.1","cpx2":"^3.0.0","eslint":"^8.44.0","glob":"^7.1.2","mocha":"^10.2.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^17.0.1","source-map-loader":"^4.0.0","typescript":"~5.0.2","typemoq":"^2.1.0","webpack":"^5.76.0"},"//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/cloud-agnostic-core":"^2.1.0","@itwin/object-storage-core":"^2.2.2","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"}}');
|
|
292637
292903
|
|
|
292638
292904
|
/***/ })
|
|
292639
292905
|
|