@itwin/ecschema-rpcinterface-tests 4.5.0-dev.4 → 4.5.0-dev.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/_bea9.bundled-tests.js.map +1 -1
- package/lib/dist/bundled-tests.js +871 -666
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_1_6_node_modules_loaders_gl_draco_di-0642a6.bundled-tests.js.map +1 -1
- package/package.json +16 -16
|
@@ -25632,15 +25632,12 @@ class Logger {
|
|
|
25632
25632
|
const stack = Logger.logExceptionCallstacks ? `\n${_BentleyError__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorStack(err)}` : "";
|
|
25633
25633
|
return _BentleyError__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorMessage(err) + stack;
|
|
25634
25634
|
}
|
|
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.
|
|
25635
|
+
/** Log the specified exception. The special "ExceptionType" property will be added as metadata.
|
|
25638
25636
|
* @param category The category of the message.
|
|
25639
25637
|
* @param err The exception object.
|
|
25640
25638
|
* @param log The logger output function to use - defaults to Logger.logError
|
|
25641
|
-
* @param metaData Optional data for the message
|
|
25642
25639
|
*/
|
|
25643
|
-
static logException(category, err, log = (_category, message) => Logger.logError(_category, message)) {
|
|
25640
|
+
static logException(category, err, log = (_category, message, metaData) => Logger.logError(_category, message, metaData)) {
|
|
25644
25641
|
log(category, Logger.getExceptionMessage(err), () => {
|
|
25645
25642
|
return { ..._BentleyError__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorMetadata(err), exceptionType: err.constructor.name };
|
|
25646
25643
|
});
|
|
@@ -35670,6 +35667,60 @@ class Frustum {
|
|
|
35670
35667
|
}
|
|
35671
35668
|
|
|
35672
35669
|
|
|
35670
|
+
/***/ }),
|
|
35671
|
+
|
|
35672
|
+
/***/ "../../core/common/lib/esm/GenericInstanceFilter.js":
|
|
35673
|
+
/*!**********************************************************!*\
|
|
35674
|
+
!*** ../../core/common/lib/esm/GenericInstanceFilter.js ***!
|
|
35675
|
+
\**********************************************************/
|
|
35676
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
35677
|
+
|
|
35678
|
+
"use strict";
|
|
35679
|
+
__webpack_require__.r(__webpack_exports__);
|
|
35680
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
35681
|
+
/* harmony export */ "GenericInstanceFilter": () => (/* binding */ GenericInstanceFilter),
|
|
35682
|
+
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* binding */ GenericInstanceFilterRuleValue)
|
|
35683
|
+
/* harmony export */ });
|
|
35684
|
+
/*---------------------------------------------------------------------------------------------
|
|
35685
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
35686
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
35687
|
+
*--------------------------------------------------------------------------------------------*/
|
|
35688
|
+
/** @packageDocumentation
|
|
35689
|
+
* @module Utils
|
|
35690
|
+
*/
|
|
35691
|
+
/** @beta */
|
|
35692
|
+
var GenericInstanceFilterRuleValue;
|
|
35693
|
+
(function (GenericInstanceFilterRuleValue) {
|
|
35694
|
+
/** Checks if supplied value is [[GenericInstanceFilterRuleValue.Point2d]] like. Returns `true` for `Point2d` and [[GenericInstanceFilterRuleValue.Point3d]]. */
|
|
35695
|
+
function isPoint2d(value) {
|
|
35696
|
+
return value.x !== undefined && value.y !== undefined;
|
|
35697
|
+
}
|
|
35698
|
+
GenericInstanceFilterRuleValue.isPoint2d = isPoint2d;
|
|
35699
|
+
/** Checks if supplied value is [[GenericInstanceFilterRuleValue.Point3d]] like. */
|
|
35700
|
+
function isPoint3d(value) {
|
|
35701
|
+
return isPoint2d(value) && value.z !== undefined;
|
|
35702
|
+
}
|
|
35703
|
+
GenericInstanceFilterRuleValue.isPoint3d = isPoint3d;
|
|
35704
|
+
/** Checks if supplied value is [[GenericInstanceFilterRuleValue.InstanceKey]] like. */
|
|
35705
|
+
function isInstanceKey(value) {
|
|
35706
|
+
return value !== undefined && value.className !== undefined;
|
|
35707
|
+
}
|
|
35708
|
+
GenericInstanceFilterRuleValue.isInstanceKey = isInstanceKey;
|
|
35709
|
+
})(GenericInstanceFilterRuleValue || (GenericInstanceFilterRuleValue = {}));
|
|
35710
|
+
/** @beta */
|
|
35711
|
+
var GenericInstanceFilter;
|
|
35712
|
+
(function (GenericInstanceFilter) {
|
|
35713
|
+
/**
|
|
35714
|
+
* Function that checks if supplied object is [[GenericInstanceFilterRuleGroup]].
|
|
35715
|
+
* @beta
|
|
35716
|
+
*/
|
|
35717
|
+
function isFilterRuleGroup(obj) {
|
|
35718
|
+
return obj.rules !== undefined;
|
|
35719
|
+
}
|
|
35720
|
+
GenericInstanceFilter.isFilterRuleGroup = isFilterRuleGroup;
|
|
35721
|
+
})(GenericInstanceFilter || (GenericInstanceFilter = {}));
|
|
35722
|
+
|
|
35723
|
+
|
|
35673
35724
|
/***/ }),
|
|
35674
35725
|
|
|
35675
35726
|
/***/ "../../core/common/lib/esm/GeoCoordinateServices.js":
|
|
@@ -43277,6 +43328,7 @@ SubCategoryOverride.defaults = new SubCategoryOverride({});
|
|
|
43277
43328
|
"use strict";
|
|
43278
43329
|
__webpack_require__.r(__webpack_exports__);
|
|
43279
43330
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
43331
|
+
/* harmony export */ "CesiumTerrainAssetId": () => (/* binding */ CesiumTerrainAssetId),
|
|
43280
43332
|
/* harmony export */ "TerrainHeightOriginMode": () => (/* binding */ TerrainHeightOriginMode),
|
|
43281
43333
|
/* harmony export */ "TerrainSettings": () => (/* binding */ TerrainSettings)
|
|
43282
43334
|
/* harmony export */ });
|
|
@@ -43287,6 +43339,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
43287
43339
|
/** @packageDocumentation
|
|
43288
43340
|
* @module DisplayStyles
|
|
43289
43341
|
*/
|
|
43342
|
+
/** Ids of [Cesium ION assets](https://cesium.com/platform/cesium-ion/content/) providing global terrain data.
|
|
43343
|
+
* These values are appropriate to use with [[TerrainSettings.dataSource]] when [[TerrainSettings.providerName]] is set to "CesiumWorldTerrain".
|
|
43344
|
+
* You may alternatively use the Id of any ION asset to which you have access.
|
|
43345
|
+
* @see [[TerrainSettings.fromCesiumIonAsset]] to create TerrainSettings that obtain terrain from a specified ION asset.
|
|
43346
|
+
* @public
|
|
43347
|
+
*/
|
|
43348
|
+
var CesiumTerrainAssetId;
|
|
43349
|
+
(function (CesiumTerrainAssetId) {
|
|
43350
|
+
/** Default [global 3d terrain](https://cesium.com/platform/cesium-ion/content/cesium-world-terrain/). */
|
|
43351
|
+
CesiumTerrainAssetId["Default"] = "1";
|
|
43352
|
+
/** Global 3d terrain that includes [bathymetry](https://cesium.com/platform/cesium-ion/content/cesium-world-bathymetry/) (seafloor) terrain. */
|
|
43353
|
+
CesiumTerrainAssetId["Bathymetry"] = "2426648";
|
|
43354
|
+
})(CesiumTerrainAssetId || (CesiumTerrainAssetId = {}));
|
|
43290
43355
|
/** Correction modes for terrain height
|
|
43291
43356
|
* @see [[TerrainProps]]
|
|
43292
43357
|
* @public
|
|
@@ -43312,11 +43377,24 @@ class TerrainSettings {
|
|
|
43312
43377
|
get nonLocatable() {
|
|
43313
43378
|
return this._nonLocatable;
|
|
43314
43379
|
}
|
|
43315
|
-
|
|
43316
|
-
|
|
43317
|
-
|
|
43318
|
-
|
|
43319
|
-
|
|
43380
|
+
/** @internal */
|
|
43381
|
+
constructor(providerNameOrProps, exaggeration, applyLighting, heightOrigin, heightOriginMode) {
|
|
43382
|
+
let providerName;
|
|
43383
|
+
let dataSource;
|
|
43384
|
+
let nonLocatable;
|
|
43385
|
+
if (typeof providerNameOrProps === "string") {
|
|
43386
|
+
providerName = providerNameOrProps;
|
|
43387
|
+
}
|
|
43388
|
+
else if (providerNameOrProps) {
|
|
43389
|
+
({ providerName, dataSource, exaggeration, applyLighting, heightOrigin, heightOriginMode, nonLocatable } = providerNameOrProps);
|
|
43390
|
+
}
|
|
43391
|
+
this.providerName = providerName ?? "CesiumWorldTerrain";
|
|
43392
|
+
this.dataSource = dataSource ?? "";
|
|
43393
|
+
this.exaggeration = Math.min(100, Math.max(0.1, exaggeration ?? 1.0));
|
|
43394
|
+
this.applyLighting = applyLighting ?? false;
|
|
43395
|
+
this.heightOrigin = heightOrigin ?? 0.0;
|
|
43396
|
+
if (true === nonLocatable)
|
|
43397
|
+
this._nonLocatable = true;
|
|
43320
43398
|
switch (heightOriginMode) {
|
|
43321
43399
|
case TerrainHeightOriginMode.Ground:
|
|
43322
43400
|
case TerrainHeightOriginMode.Geoid:
|
|
@@ -43328,18 +43406,24 @@ class TerrainSettings {
|
|
|
43328
43406
|
}
|
|
43329
43407
|
}
|
|
43330
43408
|
static fromJSON(json) {
|
|
43331
|
-
|
|
43332
|
-
|
|
43333
|
-
|
|
43334
|
-
|
|
43335
|
-
|
|
43336
|
-
|
|
43337
|
-
|
|
43409
|
+
return new TerrainSettings(json);
|
|
43410
|
+
}
|
|
43411
|
+
/** Create settings that obtain terrain from a [Cesium ION asset](https://cesium.com/platform/cesium-ion/content/) such as
|
|
43412
|
+
* one of those defined by [[CesiumTerrainAssetId]].
|
|
43413
|
+
* @note You must ensure your Cesium ION account has access to the specified asset.
|
|
43414
|
+
*/
|
|
43415
|
+
static fromCesiumIonAsset(assetId = CesiumTerrainAssetId.Default, options) {
|
|
43416
|
+
return TerrainSettings.fromJSON({
|
|
43417
|
+
...options,
|
|
43418
|
+
dataSource: assetId,
|
|
43419
|
+
});
|
|
43338
43420
|
}
|
|
43339
43421
|
toJSON() {
|
|
43340
43422
|
const props = { heightOriginMode: this.heightOriginMode };
|
|
43341
43423
|
if ("CesiumWorldTerrain" !== this.providerName)
|
|
43342
43424
|
props.providerName = this.providerName;
|
|
43425
|
+
if (this.dataSource)
|
|
43426
|
+
props.dataSource = this.dataSource;
|
|
43343
43427
|
if (1 !== this.exaggeration)
|
|
43344
43428
|
props.exaggeration = this.exaggeration;
|
|
43345
43429
|
if (this.nonLocatable)
|
|
@@ -43351,7 +43435,7 @@ class TerrainSettings {
|
|
|
43351
43435
|
return props;
|
|
43352
43436
|
}
|
|
43353
43437
|
equals(other) {
|
|
43354
|
-
return this.providerName === other.providerName && this.exaggeration === other.exaggeration && this.applyLighting === other.applyLighting
|
|
43438
|
+
return this.providerName === other.providerName && this.dataSource === other.dataSource && this.exaggeration === other.exaggeration && this.applyLighting === other.applyLighting
|
|
43355
43439
|
&& this.heightOrigin === other.heightOrigin && this.heightOriginMode === other.heightOriginMode && this.nonLocatable === other.nonLocatable;
|
|
43356
43440
|
}
|
|
43357
43441
|
/** Returns true if these settings are equivalent to the supplied JSON settings. */
|
|
@@ -43367,6 +43451,7 @@ class TerrainSettings {
|
|
|
43367
43451
|
return this;
|
|
43368
43452
|
const props = {
|
|
43369
43453
|
providerName: changedProps.providerName ?? this.providerName,
|
|
43454
|
+
dataSource: changedProps.dataSource ?? this.dataSource,
|
|
43370
43455
|
exaggeration: changedProps.exaggeration ?? this.exaggeration,
|
|
43371
43456
|
nonLocatable: changedProps.nonLocatable ?? this.nonLocatable,
|
|
43372
43457
|
applyLighting: changedProps.applyLighting ?? this.applyLighting,
|
|
@@ -45352,48 +45437,49 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
45352
45437
|
"use strict";
|
|
45353
45438
|
__webpack_require__.r(__webpack_exports__);
|
|
45354
45439
|
/* 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 */
|
|
45440
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_36__.AdditionalTransform),
|
|
45441
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__.AffineTransform),
|
|
45442
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.AmbientLight),
|
|
45358
45443
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
45359
45444
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
45360
45445
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
45361
45446
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
45362
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
45447
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_37__.AreaPattern),
|
|
45363
45448
|
/* 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 */
|
|
45449
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_143__.B3dmHeader),
|
|
45450
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.BRepEntity),
|
|
45451
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__.BRepGeometryOperation),
|
|
45452
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BackendError),
|
|
45453
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.BackgroundFill),
|
|
45369
45454
|
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapProvider),
|
|
45370
45455
|
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_5__.BackgroundMapSettings),
|
|
45371
45456
|
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapType),
|
|
45372
45457
|
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_6__.Base64EncodedString),
|
|
45373
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
45374
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
45458
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_73__.BaseLayerSettings),
|
|
45459
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.BaseMapLayerSettings),
|
|
45375
45460
|
/* 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 */
|
|
45461
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_136__.BentleyCloudRpcConfiguration),
|
|
45462
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_136__.BentleyCloudRpcManager),
|
|
45463
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcProtocol),
|
|
45464
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BentleyError),
|
|
45465
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BentleyStatus),
|
|
45381
45466
|
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_13__.BisCodeSpec),
|
|
45382
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
45383
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
45467
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.BlobOptionsBuilder),
|
|
45468
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_38__.BoundingSphere),
|
|
45384
45469
|
/* 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 */
|
|
45470
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BriefcaseStatus),
|
|
45471
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.CURRENT_INVOCATION),
|
|
45472
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.CURRENT_REQUEST),
|
|
45388
45473
|
/* 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 */
|
|
45474
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__.Carto2DDegrees),
|
|
45475
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_39__.Cartographic),
|
|
45476
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_39__.CartographicRange),
|
|
45477
|
+
/* harmony export */ "CesiumTerrainAssetId": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__.CesiumTerrainAssetId),
|
|
45392
45478
|
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ChangeOpCode),
|
|
45393
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
45479
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ChangeSetStatus),
|
|
45394
45480
|
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ChangedValueState),
|
|
45395
45481
|
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_11__.ChangesetType),
|
|
45396
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
45482
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ChannelConstraintError),
|
|
45397
45483
|
/* harmony export */ "ClipIntersectionStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_12__.ClipIntersectionStyle),
|
|
45398
45484
|
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_12__.ClipStyle),
|
|
45399
45485
|
/* harmony export */ "Code": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_13__.Code),
|
|
@@ -45403,38 +45489,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45403
45489
|
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_15__.ColorDef),
|
|
45404
45490
|
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.ColorIndex),
|
|
45405
45491
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_16__.CommonLoggerCategory),
|
|
45406
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
45492
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_144__.CompositeTileHeader),
|
|
45407
45493
|
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_27__.ConcreteEntityTypes),
|
|
45408
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
45409
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
45494
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.ContentFlags),
|
|
45495
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.ContentIdProvider),
|
|
45410
45496
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.ContextRealityModel),
|
|
45411
45497
|
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.ContextRealityModelProps),
|
|
45412
45498
|
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.ContextRealityModels),
|
|
45413
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
45499
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.CurrentImdlVersion),
|
|
45414
45500
|
/* 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 */
|
|
45501
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbQueryError),
|
|
45502
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbRequestKind),
|
|
45503
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbResponseKind),
|
|
45504
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbResponseStatus),
|
|
45505
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.DbResult),
|
|
45506
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbValueFormat),
|
|
45507
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_88__.DefaultSupportedTypes),
|
|
45508
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_129__.DevToolsRpcInterface),
|
|
45509
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_129__.DevToolsStatsOptions),
|
|
45424
45510
|
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_18__.DisplayStyle3dSettings),
|
|
45425
45511
|
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_18__.DisplayStyleSettings),
|
|
45426
45512
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.DomainOptions),
|
|
45427
45513
|
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ECJsNames),
|
|
45428
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
45514
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_82__.ECSqlReader),
|
|
45429
45515
|
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ECSqlSystemProperty),
|
|
45430
45516
|
/* 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 */
|
|
45517
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Easing),
|
|
45518
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_62__.EcefLocation),
|
|
45519
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.EdgeArgs),
|
|
45520
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__.ElementGeometry),
|
|
45521
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_84__.ElementGeometryChange),
|
|
45522
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__.ElementGeometryOpcode),
|
|
45523
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_72__.EmptyLocalization),
|
|
45438
45524
|
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.EntityMetaData),
|
|
45439
45525
|
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_27__.EntityReferenceSet),
|
|
45440
45526
|
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_28__.Environment),
|
|
@@ -45447,282 +45533,284 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45447
45533
|
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_25__.FeatureOverrideType),
|
|
45448
45534
|
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_30__.FeatureOverrides),
|
|
45449
45535
|
/* 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 */
|
|
45536
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.FeatureTableHeader),
|
|
45537
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.FillDisplay),
|
|
45538
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_55__.FillFlags),
|
|
45453
45539
|
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_32__.FontMap),
|
|
45454
45540
|
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_32__.FontType),
|
|
45455
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
45541
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.FresnelSettings),
|
|
45456
45542
|
/* 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 */ "
|
|
45543
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_42__.FrustumPlanes),
|
|
45544
|
+
/* harmony export */ "GenericInstanceFilter": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_34__.GenericInstanceFilter),
|
|
45545
|
+
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_34__.GenericInstanceFilterRuleValue),
|
|
45546
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_35__.GeoCoordStatus),
|
|
45547
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeocentricTransform),
|
|
45548
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeodeticDatum),
|
|
45549
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_44__.GeodeticEllipsoid),
|
|
45550
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeodeticTransform),
|
|
45551
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeodeticTransformPath),
|
|
45552
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.GeographicCRS),
|
|
45553
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.GeometryClass),
|
|
45554
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.GeometryParams),
|
|
45555
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.GeometryStreamBuilder),
|
|
45556
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.GeometryStreamFlags),
|
|
45557
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.GeometryStreamIterator),
|
|
45558
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_53__.GeometrySummaryVerbosity),
|
|
45559
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__.GlbHeader),
|
|
45472
45560
|
/* 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 */
|
|
45561
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__.GltfV2ChunkTypes),
|
|
45562
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__.GltfVersions),
|
|
45563
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_54__.Gradient),
|
|
45564
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_55__.GraphicParams),
|
|
45565
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GridFileDefinition),
|
|
45566
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GridFileTransform),
|
|
45567
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_112__.GridOrientationType),
|
|
45568
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_56__.GroundPlane),
|
|
45569
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_59__.HSLColor),
|
|
45570
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_60__.HSVColor),
|
|
45571
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_60__.HSVConstants),
|
|
45572
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_36__.Helmert2DWithZOffset),
|
|
45573
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.HemisphereLights),
|
|
45574
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_57__.HiddenLine),
|
|
45575
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_58__.Hilite),
|
|
45576
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.HorizontalCRS),
|
|
45577
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.HorizontalCRSExtent),
|
|
45578
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_147__.I3dmHeader),
|
|
45579
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_62__.IModel),
|
|
45580
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.IModelError),
|
|
45581
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_130__.IModelNotFoundResponse),
|
|
45582
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_130__.IModelReadRpcInterface),
|
|
45583
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.IModelStatus),
|
|
45584
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_131__.IModelTileRpcInterface),
|
|
45585
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_64__.IModelVersion),
|
|
45586
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.INSTANCE),
|
|
45587
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageBuffer),
|
|
45588
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageBufferFormat),
|
|
45589
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_46__.ImageGraphic),
|
|
45590
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_46__.ImageGraphicCorners),
|
|
45591
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.ImageMapLayerSettings),
|
|
45592
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageSource),
|
|
45593
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageSourceFormat),
|
|
45594
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.ImdlFlags),
|
|
45595
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.ImdlHeader),
|
|
45596
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__.InternetConnectivityStatus),
|
|
45597
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Interpolation),
|
|
45598
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_68__.IpcSession),
|
|
45599
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocket),
|
|
45600
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketBackend),
|
|
45601
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketFrontend),
|
|
45602
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketMessage),
|
|
45603
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketMessageType),
|
|
45604
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketTransport),
|
|
45605
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.LightSettings),
|
|
45606
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_71__.LinePixels),
|
|
45607
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_47__.LineStyle),
|
|
45608
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_73__.MapImagerySettings),
|
|
45609
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.MapLayerSettings),
|
|
45610
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.MapSubLayerSettings),
|
|
45611
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__.MarshalingBinaryMarker),
|
|
45612
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_75__.MassPropertiesOperation),
|
|
45613
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshEdge),
|
|
45614
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshEdges),
|
|
45615
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshPolyline),
|
|
45616
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshPolylineList),
|
|
45617
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_77__.ModelClipGroup),
|
|
45618
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_77__.ModelClipGroups),
|
|
45531
45619
|
/* harmony export */ "ModelFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.ModelFeature),
|
|
45532
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
45533
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
45620
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_84__.ModelGeometryChanges),
|
|
45621
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.ModelMapLayerSettings),
|
|
45534
45622
|
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_18__.MonochromeMode),
|
|
45535
45623
|
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.MultiModelPackedFeatureTable),
|
|
45536
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
45624
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.NoContentError),
|
|
45537
45625
|
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.NonUniformColor),
|
|
45538
|
-
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */
|
|
45626
|
+
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_76__.NormalMapFlags),
|
|
45539
45627
|
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.Npc),
|
|
45540
45628
|
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.NpcCenter),
|
|
45541
45629
|
/* 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 */
|
|
45630
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.OPERATION),
|
|
45631
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_80__.OctEncodedNormal),
|
|
45632
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_80__.OctEncodedNormalPair),
|
|
45633
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__.OverriddenBy),
|
|
45634
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.POLICY),
|
|
45547
45635
|
/* harmony export */ "PackedFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeature),
|
|
45548
45636
|
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeatureModelTable),
|
|
45549
45637
|
/* 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 */
|
|
45638
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_48__.Placement2d),
|
|
45639
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_48__.Placement3d),
|
|
45640
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_85__.PlanProjectionSettings),
|
|
45641
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__.PlanarClipMaskMode),
|
|
45642
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__.PlanarClipMaskPriority),
|
|
45643
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__.PlanarClipMaskSettings),
|
|
45644
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_149__.PntsHeader),
|
|
45645
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_89__.PointCloudDisplaySettings),
|
|
45646
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.PolylineEdgeArgs),
|
|
45647
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.PolylineTypeFlags),
|
|
45648
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.PositionalVectorTransform),
|
|
45561
45649
|
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PrimitiveTypeCode),
|
|
45562
45650
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.ProfileOptions),
|
|
45563
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
45651
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__.Projection),
|
|
45564
45652
|
/* 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 */
|
|
45653
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_82__.PropertyMetaDataMap),
|
|
45654
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QParams2d),
|
|
45655
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QParams3d),
|
|
45656
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2d),
|
|
45657
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2dBuffer),
|
|
45658
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2dBufferBuilder),
|
|
45659
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2dList),
|
|
45660
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3d),
|
|
45661
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3dBuffer),
|
|
45662
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3dBufferBuilder),
|
|
45663
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3dList),
|
|
45664
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.Quantization),
|
|
45665
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryBinder),
|
|
45666
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryOptionsBuilder),
|
|
45667
|
+
/* harmony export */ "QueryParamType": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryParamType),
|
|
45668
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryRowFormat),
|
|
45669
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.REGISTRY),
|
|
45582
45670
|
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.Rank),
|
|
45583
45671
|
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.RealityDataFormat),
|
|
45584
45672
|
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.RealityDataProvider),
|
|
45585
45673
|
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.RealityDataSourceKey),
|
|
45586
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
45674
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_89__.RealityModelDisplaySettings),
|
|
45587
45675
|
/* 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 */
|
|
45676
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_91__.RenderMaterial),
|
|
45677
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_113__.RenderMode),
|
|
45678
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_92__.RenderSchedule),
|
|
45679
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_93__.RenderTexture),
|
|
45680
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.ResponseLike),
|
|
45681
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_94__.RgbColor),
|
|
45682
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcConfiguration),
|
|
45683
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcContentType),
|
|
45684
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcControlChannel),
|
|
45685
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcControlResponse),
|
|
45686
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcDefaultConfiguration),
|
|
45687
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcDirectProtocol),
|
|
45688
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcDirectRequest),
|
|
45689
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcEndpoint),
|
|
45690
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_135__.RpcInterface),
|
|
45691
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_117__.RpcInvocation),
|
|
45692
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_95__.RpcManager),
|
|
45693
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__.RpcMarshaling),
|
|
45694
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_139__.RpcMultipart),
|
|
45695
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcNotFoundResponse),
|
|
45696
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_138__.RpcOpenAPIDescription),
|
|
45697
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_120__.RpcOperation),
|
|
45698
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_120__.RpcOperationPolicy),
|
|
45699
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_121__.RpcPendingQueue),
|
|
45700
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcPendingResponse),
|
|
45701
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__.RpcProtocol),
|
|
45702
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcProtocolEvent),
|
|
45703
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__.RpcProtocolVersion),
|
|
45704
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushChannel),
|
|
45705
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushConnection),
|
|
45706
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushService),
|
|
45707
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushSubscription),
|
|
45708
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushTransport),
|
|
45709
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.RpcRegistry),
|
|
45710
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.RpcRequest),
|
|
45711
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcRequestEvent),
|
|
45712
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__.RpcRequestFulfillment),
|
|
45713
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcRequestStatus),
|
|
45714
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcResponseCacheControl),
|
|
45715
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcRoutingMap),
|
|
45716
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_126__.RpcRoutingToken),
|
|
45717
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__.RpcSerializedValue),
|
|
45718
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_118__.RpcSessionInvocation),
|
|
45631
45719
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.SchemaState),
|
|
45632
45720
|
/* 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 */
|
|
45721
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ServerError),
|
|
45722
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ServerTimeoutError),
|
|
45723
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.SilhouetteEdgeArgs),
|
|
45724
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyBox),
|
|
45725
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyBoxImageType),
|
|
45726
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyCube),
|
|
45727
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyGradient),
|
|
45728
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkySphere),
|
|
45729
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_132__.SnapshotIModelRpcInterface),
|
|
45730
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.SolarLight),
|
|
45731
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_100__.SolarShadowSettings),
|
|
45732
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifier),
|
|
45733
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifierFlags),
|
|
45734
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifierInsideDisplay),
|
|
45735
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifierOutsideDisplay),
|
|
45736
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifiers),
|
|
45737
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_102__.SubCategoryAppearance),
|
|
45738
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_103__.SubCategoryOverride),
|
|
45651
45739
|
/* 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 */
|
|
45740
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__.TerrainHeightOriginMode),
|
|
45741
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__.TerrainSettings),
|
|
45742
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_133__.TestRpcManager),
|
|
45743
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_50__.TextString),
|
|
45744
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_76__.TextureMapUnits),
|
|
45745
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_105__.TextureMapping),
|
|
45746
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_106__.TextureTransparency),
|
|
45747
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplay),
|
|
45748
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplayMode),
|
|
45749
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplaySensor),
|
|
45750
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplaySensorSettings),
|
|
45751
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientColorScheme),
|
|
45752
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientMode),
|
|
45753
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientSettings),
|
|
45754
|
+
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientTransparencyMode),
|
|
45755
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_109__.TileContentSource),
|
|
45756
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileFormat),
|
|
45757
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileHeader),
|
|
45758
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.TileMetadataReader),
|
|
45759
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.TileOptions),
|
|
45760
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileReadError),
|
|
45761
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileReadStatus),
|
|
45762
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.TreeFlags),
|
|
45763
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Tween),
|
|
45764
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Tweens),
|
|
45765
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_111__.TxnAction),
|
|
45678
45766
|
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.TypeDefinition),
|
|
45679
45767
|
/* 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 */
|
|
45768
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.VerticalCRS),
|
|
45769
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_112__.ViewDetails),
|
|
45770
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_112__.ViewDetails3d),
|
|
45771
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_113__.ViewFlags),
|
|
45772
|
+
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_114__.ViewStoreRpc),
|
|
45773
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.WEB_RPC_CONSTANTS),
|
|
45774
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_142__.WebAppRpcLogging),
|
|
45775
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_140__.WebAppRpcProtocol),
|
|
45776
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_141__.WebAppRpcRequest),
|
|
45777
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__.WhiteOnWhiteReversalSettings),
|
|
45778
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_134__.WipRpcInterface),
|
|
45779
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.XyzRotation),
|
|
45780
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.aggregateLoad),
|
|
45781
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.bisectTileRange2d),
|
|
45782
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.bisectTileRange3d),
|
|
45783
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSolarAngles),
|
|
45784
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSolarDirection),
|
|
45785
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSolarDirectionFromAngles),
|
|
45786
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSunriseOrSunset),
|
|
45787
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.compareIModelTileTreeIds),
|
|
45788
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.computeChildTileProps),
|
|
45789
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.computeChildTileRanges),
|
|
45790
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.computeTileChordTolerance),
|
|
45791
|
+
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.decodeTileContentDescription),
|
|
45792
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.defaultTileOptions),
|
|
45793
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.getMaximumMajorTileFormatVersion),
|
|
45794
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_69__.getPullChangesIpcChannel),
|
|
45795
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_109__.getTileObjectReference),
|
|
45796
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.iModelTileTreeIdToString),
|
|
45797
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_65__.iTwinChannel),
|
|
45798
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.initializeRpcRequest),
|
|
45799
|
+
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_69__.ipcAppChannels),
|
|
45800
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.isKnownTileFormat),
|
|
45713
45801
|
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.isPlacement2dProps),
|
|
45714
45802
|
/* 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 */
|
|
45803
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.isPowerOfTwo),
|
|
45804
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.isValidImageSourceFormat),
|
|
45805
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_35__.mapToGeoServiceStatus),
|
|
45806
|
+
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__.nativeAppIpcStrings),
|
|
45807
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.nextHighestPowerOfTwo),
|
|
45808
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.nextPoint3d64FromByteStream),
|
|
45809
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.parseTileTreeIdAndContentId),
|
|
45722
45810
|
/* 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 */
|
|
45811
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.readTileContentDescription),
|
|
45812
|
+
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_68__.rpcOverIpcStrings),
|
|
45813
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.tileFormatFromNumber)
|
|
45726
45814
|
/* harmony export */ });
|
|
45727
45815
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
45728
45816
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -45758,125 +45846,126 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
45758
45846
|
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
45759
45847
|
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
45760
45848
|
/* 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
|
|
45849
|
+
/* harmony import */ var _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./GenericInstanceFilter */ "../../core/common/lib/esm/GenericInstanceFilter.js");
|
|
45850
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
45851
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
45852
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
45853
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
45854
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
45855
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
45856
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
45857
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
45858
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
45859
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
45860
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
45861
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
45862
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
45863
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
45864
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
45865
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
45866
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
45867
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
45868
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
45869
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
45870
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
45871
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
45872
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
45873
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
45874
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
45875
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
45876
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
45877
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
45878
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
45879
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
45880
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
45881
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
45882
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
45883
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
45884
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
45885
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
45886
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
45887
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
45888
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
45889
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
45890
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
45891
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
45892
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
45893
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
45894
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
45895
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
45896
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
45897
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
45898
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
45899
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
45900
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
45901
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
45902
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
45903
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
45904
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
45905
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
45906
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
45907
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
45908
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
45909
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
45910
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
45911
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
45912
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
45913
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
45914
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
45915
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
45916
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
45917
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
45918
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
45919
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
45920
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
45921
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
45922
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
45923
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
45924
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
45925
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
45926
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
45927
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
45928
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
45929
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
45930
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
45931
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
45932
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
45933
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
45934
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
45935
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
45936
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
45937
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
45938
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
45939
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
45940
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
45941
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
45942
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
45943
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
45944
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
45945
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
45946
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
45947
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
45948
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
45949
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
45950
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
45951
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
45952
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
45953
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
45954
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
45955
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
45956
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
45957
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
45958
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
45959
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
45960
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
45961
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
45962
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
45963
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
45964
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
45965
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
45966
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
45967
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
45968
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
45880
45969
|
/*---------------------------------------------------------------------------------------------
|
|
45881
45970
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
45882
45971
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -46032,6 +46121,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
46032
46121
|
|
|
46033
46122
|
|
|
46034
46123
|
|
|
46124
|
+
|
|
46035
46125
|
|
|
46036
46126
|
|
|
46037
46127
|
/** @docs-package-description
|
|
@@ -55818,7 +55908,7 @@ var RpcResponseCacheControl;
|
|
|
55818
55908
|
})(RpcResponseCacheControl || (RpcResponseCacheControl = {}));
|
|
55819
55909
|
/** RPC protocol event types.
|
|
55820
55910
|
* @public
|
|
55821
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55911
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55822
55912
|
*/
|
|
55823
55913
|
var RpcProtocolEvent;
|
|
55824
55914
|
(function (RpcProtocolEvent) {
|
|
@@ -55838,7 +55928,7 @@ var RpcProtocolEvent;
|
|
|
55838
55928
|
})(RpcProtocolEvent || (RpcProtocolEvent = {}));
|
|
55839
55929
|
/** The status of an RPC operation request.
|
|
55840
55930
|
* @public
|
|
55841
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55931
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55842
55932
|
*/
|
|
55843
55933
|
var RpcRequestStatus;
|
|
55844
55934
|
(function (RpcRequestStatus) {
|
|
@@ -55858,7 +55948,7 @@ var RpcRequestStatus;
|
|
|
55858
55948
|
RpcRequestStatus[RpcRequestStatus["RequestTimeout"] = 13] = "RequestTimeout";
|
|
55859
55949
|
RpcRequestStatus[RpcRequestStatus["TooManyRequests"] = 14] = "TooManyRequests";
|
|
55860
55950
|
})(RpcRequestStatus || (RpcRequestStatus = {}));
|
|
55861
|
-
/** @public @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55951
|
+
/** @public @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future. */
|
|
55862
55952
|
(function (RpcRequestStatus) {
|
|
55863
55953
|
function isTransientError(status) {
|
|
55864
55954
|
return status === RpcRequestStatus.BadGateway || status === RpcRequestStatus.ServiceUnavailable || status === RpcRequestStatus.GatewayTimeout
|
|
@@ -55868,7 +55958,7 @@ var RpcRequestStatus;
|
|
|
55868
55958
|
})(RpcRequestStatus || (RpcRequestStatus = {}));
|
|
55869
55959
|
/** RPC request event types.
|
|
55870
55960
|
* @public
|
|
55871
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55961
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55872
55962
|
*/
|
|
55873
55963
|
var RpcRequestEvent;
|
|
55874
55964
|
(function (RpcRequestEvent) {
|
|
@@ -55878,7 +55968,7 @@ var RpcRequestEvent;
|
|
|
55878
55968
|
})(RpcRequestEvent || (RpcRequestEvent = {}));
|
|
55879
55969
|
/** RPC content types.
|
|
55880
55970
|
* @public
|
|
55881
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55971
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55882
55972
|
*/
|
|
55883
55973
|
var RpcContentType;
|
|
55884
55974
|
(function (RpcContentType) {
|
|
@@ -55890,7 +55980,7 @@ var RpcContentType;
|
|
|
55890
55980
|
})(RpcContentType || (RpcContentType = {}));
|
|
55891
55981
|
/** Endpoints for RPC protocols.
|
|
55892
55982
|
* @public
|
|
55893
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
55983
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
55894
55984
|
*/
|
|
55895
55985
|
var RpcEndpoint;
|
|
55896
55986
|
(function (RpcEndpoint) {
|
|
@@ -85708,7 +85798,7 @@ class RealityDataSourceCesiumIonAssetImpl {
|
|
|
85708
85798
|
// The following is only if the reality data is not stored on PW Context Share.
|
|
85709
85799
|
const cesiumAsset = _tile_internal__WEBPACK_IMPORTED_MODULE_3__.CesiumIonAssetProvider.parseCesiumUrl(url);
|
|
85710
85800
|
if (cesiumAsset) {
|
|
85711
|
-
const tokenAndUrl = await (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessTokenAndEndpointUrl)(cesiumAsset.id
|
|
85801
|
+
const tokenAndUrl = await (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessTokenAndEndpointUrl)(`${cesiumAsset.id}`, cesiumAsset.key);
|
|
85712
85802
|
if (tokenAndUrl.url && tokenAndUrl.token) {
|
|
85713
85803
|
url = tokenAndUrl.url;
|
|
85714
85804
|
this._requestAuthorization = `Bearer ${tokenAndUrl.token}`;
|
|
@@ -150684,7 +150774,7 @@ function getCesiumOSMBuildingsUrl() {
|
|
|
150684
150774
|
return getCesiumAssetUrl(osmBuildingAssetId, key);
|
|
150685
150775
|
}
|
|
150686
150776
|
/** @internal */
|
|
150687
|
-
async function getCesiumAccessTokenAndEndpointUrl(assetId
|
|
150777
|
+
async function getCesiumAccessTokenAndEndpointUrl(assetId, requestKey) {
|
|
150688
150778
|
if (undefined === requestKey) {
|
|
150689
150779
|
requestKey = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tileAdmin.cesiumIonKey;
|
|
150690
150780
|
if (undefined === requestKey)
|
|
@@ -150715,7 +150805,7 @@ function notifyTerrainError(detailedDescription) {
|
|
|
150715
150805
|
}
|
|
150716
150806
|
/** @internal */
|
|
150717
150807
|
async function getCesiumTerrainProvider(opts) {
|
|
150718
|
-
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl();
|
|
150808
|
+
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl(opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default);
|
|
150719
150809
|
if (!accessTokenAndEndpointUrl.token || !accessTokenAndEndpointUrl.url) {
|
|
150720
150810
|
notifyTerrainError(_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString(`iModelJs:BackgroundMap.MissingCesiumToken`));
|
|
150721
150811
|
return undefined;
|
|
@@ -150801,13 +150891,17 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
150801
150891
|
this._tilingScheme = tilingScheme;
|
|
150802
150892
|
this._tileAvailability = tileAvailability;
|
|
150803
150893
|
this._metaDataAvailableLevel = metaDataAvailableLevel;
|
|
150894
|
+
this._assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
|
|
150804
150895
|
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(CesiumTerrainProvider._tokenTimeoutInterval);
|
|
150805
150896
|
}
|
|
150806
150897
|
addLogoCards(cards) {
|
|
150807
150898
|
if (cards.dataset.cesiumIonLogoCard)
|
|
150808
150899
|
return;
|
|
150809
150900
|
cards.dataset.cesiumIonLogoCard = "true";
|
|
150810
|
-
|
|
150901
|
+
let notice = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString("iModelJs:BackgroundMap.CesiumWorldTerrainAttribution");
|
|
150902
|
+
if (this._assetId === _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Bathymetry)
|
|
150903
|
+
notice = `${notice}\n${_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString("iModelJs:BackgroundMap.CesiumBathymetryAttribution")}`;
|
|
150904
|
+
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 });
|
|
150811
150905
|
cards.appendChild(card);
|
|
150812
150906
|
}
|
|
150813
150907
|
get maxDepth() { return this._maxDepth; }
|
|
@@ -150839,7 +150933,7 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
150839
150933
|
// ###TODO why does he update the access token when reading the mesh instead of when requesting it?
|
|
150840
150934
|
// This function only returns undefined if it fails to acquire token - but it doesn't need the token...
|
|
150841
150935
|
if (_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().milliseconds > this._tokenTimeOut.milliseconds) {
|
|
150842
|
-
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl();
|
|
150936
|
+
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl(this._assetId);
|
|
150843
150937
|
if (!accessTokenAndEndpointUrl.token || args.isCanceled())
|
|
150844
150938
|
return undefined;
|
|
150845
150939
|
this._accessToken = accessTokenAndEndpointUrl.token;
|
|
@@ -156147,13 +156241,16 @@ class MapTreeSupplier {
|
|
|
156147
156241
|
// Terrain-only settings.
|
|
156148
156242
|
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareStrings)(lhs.terrainProviderName, rhs.terrainProviderName);
|
|
156149
156243
|
if (0 === cmp) {
|
|
156150
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.
|
|
156244
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareStringsOrUndefined)(lhs.terrainDataSource, rhs.terrainDataSource);
|
|
156151
156245
|
if (0 === cmp) {
|
|
156152
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.
|
|
156246
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.terrainHeightOrigin, rhs.terrainHeightOrigin);
|
|
156153
156247
|
if (0 === cmp) {
|
|
156154
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.
|
|
156155
|
-
if (0 === cmp)
|
|
156156
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.
|
|
156248
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.terrainHeightOriginMode, rhs.terrainHeightOriginMode);
|
|
156249
|
+
if (0 === cmp) {
|
|
156250
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.terrainExaggeration, rhs.terrainExaggeration);
|
|
156251
|
+
if (0 === cmp)
|
|
156252
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareBooleansOrUndefined)(lhs.produceGeometry, rhs.produceGeometry);
|
|
156253
|
+
}
|
|
156157
156254
|
}
|
|
156158
156255
|
}
|
|
156159
156256
|
}
|
|
@@ -156196,6 +156293,7 @@ class MapTreeSupplier {
|
|
|
156196
156293
|
wantSkirts: id.wantSkirts,
|
|
156197
156294
|
exaggeration: id.terrainExaggeration,
|
|
156198
156295
|
wantNormals: id.wantNormals,
|
|
156296
|
+
dataSource: id.terrainDataSource,
|
|
156199
156297
|
};
|
|
156200
156298
|
if (id.applyTerrain) {
|
|
156201
156299
|
await _ApproximateTerrainHeights__WEBPACK_IMPORTED_MODULE_3__.ApproximateTerrainHeights.instance.initialize();
|
|
@@ -156354,6 +156452,7 @@ class MapTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_7__.TileTr
|
|
|
156354
156452
|
tileUserId: this._tileUserId,
|
|
156355
156453
|
applyTerrain: this.settings.applyTerrain && !this._isDrape,
|
|
156356
156454
|
terrainProviderName: this.settings.terrainSettings.providerName,
|
|
156455
|
+
terrainDataSource: this.settings.terrainSettings.dataSource,
|
|
156357
156456
|
terrainHeightOrigin: this.settings.terrainSettings.heightOrigin,
|
|
156358
156457
|
terrainHeightOriginMode: this.settings.terrainSettings.heightOriginMode,
|
|
156359
156458
|
terrainExaggeration: this.settings.terrainSettings.exaggeration,
|
|
@@ -185426,27 +185525,32 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
185426
185525
|
*/
|
|
185427
185526
|
class CoordinateXYZ extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.GeometryQuery {
|
|
185428
185527
|
/** Return a (REFERENCE TO) the coordinate data. */
|
|
185429
|
-
get point() {
|
|
185528
|
+
get point() {
|
|
185529
|
+
return this._xyz;
|
|
185530
|
+
}
|
|
185430
185531
|
/**
|
|
185532
|
+
* Constructor
|
|
185431
185533
|
* @param xyz point to be CAPTURED.
|
|
185432
185534
|
*/
|
|
185433
185535
|
constructor(xyz) {
|
|
185434
185536
|
super();
|
|
185435
|
-
/** String name for interface properties */
|
|
185537
|
+
/** String name for interface properties. */
|
|
185436
185538
|
this.geometryCategory = "point";
|
|
185437
185539
|
this._xyz = xyz;
|
|
185438
185540
|
}
|
|
185439
|
-
/** Create a new CoordinateXYZ containing a CLONE of point */
|
|
185541
|
+
/** Create a new CoordinateXYZ containing a CLONE of point. */
|
|
185440
185542
|
static create(point) {
|
|
185441
185543
|
return new CoordinateXYZ(point.clone());
|
|
185442
185544
|
}
|
|
185443
|
-
/** Create a new CoordinateXYZ */
|
|
185545
|
+
/** Create a new CoordinateXYZ. */
|
|
185444
185546
|
static createXYZ(x = 0, y = 0, z = 0) {
|
|
185445
185547
|
return new CoordinateXYZ(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(x, y, z));
|
|
185446
185548
|
}
|
|
185447
|
-
/** Return the range of the point */
|
|
185448
|
-
range() {
|
|
185449
|
-
|
|
185549
|
+
/** Return the range of the point. */
|
|
185550
|
+
range() {
|
|
185551
|
+
return _geometry3d_Range__WEBPACK_IMPORTED_MODULE_2__.Range3d.create(this._xyz);
|
|
185552
|
+
}
|
|
185553
|
+
/** Extend `rangeToExtend` to include this point (optionally transformed). */
|
|
185450
185554
|
extendRange(rangeToExtend, transform) {
|
|
185451
185555
|
if (transform)
|
|
185452
185556
|
rangeToExtend.extendTransformedXYZ(transform, this._xyz.x, this._xyz.y, this._xyz.z);
|
|
@@ -185458,27 +185562,23 @@ class CoordinateXYZ extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
185458
185562
|
transform.multiplyPoint3d(this._xyz, this._xyz);
|
|
185459
185563
|
return true;
|
|
185460
185564
|
}
|
|
185461
|
-
/** Return a transformed clone */
|
|
185565
|
+
/** Return a transformed clone. */
|
|
185462
185566
|
cloneTransformed(transform) {
|
|
185463
185567
|
const result = new CoordinateXYZ(this._xyz.clone());
|
|
185464
185568
|
result.tryTransformInPlace(transform);
|
|
185465
185569
|
return result;
|
|
185466
185570
|
}
|
|
185467
|
-
/** Return a clone */
|
|
185571
|
+
/** Return a clone. */
|
|
185468
185572
|
clone() {
|
|
185469
185573
|
return new CoordinateXYZ(this._xyz.clone());
|
|
185470
185574
|
}
|
|
185471
|
-
/**
|
|
185472
|
-
* Return GeometryQuery children for recursive queries.
|
|
185473
|
-
* * Leaf classes do not need to implement.
|
|
185474
|
-
*/
|
|
185475
185575
|
/** Test if (other instanceof Coordinate). */
|
|
185476
185576
|
isSameGeometryClass(other) {
|
|
185477
185577
|
return other instanceof CoordinateXYZ;
|
|
185478
185578
|
}
|
|
185479
185579
|
/**
|
|
185480
185580
|
* Test for exact structure and nearly identical geometry.
|
|
185481
|
-
* * Leaf classes must implement
|
|
185581
|
+
* * Leaf classes must implement.
|
|
185482
185582
|
* * Base class implementation recurses through children.
|
|
185483
185583
|
* * Base implementation is complete for classes with children and no properties.
|
|
185484
185584
|
* * Classes with both children and properties must implement for properties, call super for children.
|
|
@@ -185486,7 +185586,7 @@ class CoordinateXYZ extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
185486
185586
|
isAlmostEqual(other) {
|
|
185487
185587
|
return (other instanceof CoordinateXYZ) && this._xyz.isAlmostEqual(other._xyz);
|
|
185488
185588
|
}
|
|
185489
|
-
/** Second step of double dispatch:
|
|
185589
|
+
/** Second step of double dispatch: call `handler.handleCoordinateXYZ(this)` */
|
|
185490
185590
|
dispatchToGeometryHandler(handler) {
|
|
185491
185591
|
return handler.handleCoordinateXYZ(this);
|
|
185492
185592
|
}
|
|
@@ -189135,13 +189235,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
189135
189235
|
|
|
189136
189236
|
|
|
189137
189237
|
/**
|
|
189138
|
-
* Queries to be supported by Curve, Surface, and Solid objects
|
|
189238
|
+
* Queries to be supported by Curve, Surface, and Solid objects.
|
|
189139
189239
|
* * `GeometryQuery` is an abstract base class with (abstract) methods for querying curve, solid primitive, mesh,
|
|
189140
|
-
* and bspline surfaces
|
|
189240
|
+
* and bspline surfaces.
|
|
189141
189241
|
* @public
|
|
189142
189242
|
*/
|
|
189143
189243
|
class GeometryQuery {
|
|
189144
|
-
/** Return the range of the entire GeometryQuery tree */
|
|
189244
|
+
/** Return the range of the entire GeometryQuery tree. */
|
|
189145
189245
|
range(transform, result) {
|
|
189146
189246
|
if (result)
|
|
189147
189247
|
result.setNull();
|
|
@@ -189149,7 +189249,7 @@ class GeometryQuery {
|
|
|
189149
189249
|
this.extendRange(range, transform);
|
|
189150
189250
|
return range;
|
|
189151
189251
|
}
|
|
189152
|
-
/** Try to move the geometry by dx,dy,dz */
|
|
189252
|
+
/** Try to move the geometry by dx,dy,dz. */
|
|
189153
189253
|
tryTranslateInPlace(dx, dy = 0.0, dz = 0.0) {
|
|
189154
189254
|
return this.tryTransformInPlace(_geometry3d_Transform__WEBPACK_IMPORTED_MODULE_1__.Transform.createTranslationXYZ(dx, dy, dz));
|
|
189155
189255
|
}
|
|
@@ -189157,13 +189257,15 @@ class GeometryQuery {
|
|
|
189157
189257
|
* Return GeometryQuery children for recursive queries.
|
|
189158
189258
|
* * leaf classes do not need to implement.
|
|
189159
189259
|
*/
|
|
189160
|
-
get children() {
|
|
189260
|
+
get children() {
|
|
189261
|
+
return undefined;
|
|
189262
|
+
}
|
|
189161
189263
|
/**
|
|
189162
189264
|
* Test for exact structure and nearly identical geometry.
|
|
189163
|
-
* * Leaf classes must implement
|
|
189164
|
-
* *
|
|
189165
|
-
* *
|
|
189166
|
-
* *
|
|
189265
|
+
* * Leaf classes must implement.
|
|
189266
|
+
* * Base class implementation recurses through children.
|
|
189267
|
+
* * Base implementation is complete for classes with children and no properties.
|
|
189268
|
+
* * Classes with both children and properties must implement for properties, call super for children.
|
|
189167
189269
|
*/
|
|
189168
189270
|
isAlmostEqual(other) {
|
|
189169
189271
|
if (this.isSameGeometryClass(other)) {
|
|
@@ -189178,20 +189280,19 @@ class GeometryQuery {
|
|
|
189178
189280
|
}
|
|
189179
189281
|
return true;
|
|
189180
189282
|
}
|
|
189181
|
-
else if (childrenA || childrenB) { // CurveCollections start with empty arrays for children
|
|
189182
|
-
return false; // plainly different
|
|
189283
|
+
else if (childrenA || childrenB) { // CurveCollections start with empty arrays for children so these null pointer cases are never reached.
|
|
189284
|
+
return false; // plainly different
|
|
189183
189285
|
}
|
|
189184
189286
|
else {
|
|
189185
|
-
// both children null
|
|
189186
|
-
return true;
|
|
189287
|
+
return true; // both children null; call it equal
|
|
189187
189288
|
}
|
|
189188
189289
|
}
|
|
189189
189290
|
return false;
|
|
189190
189291
|
}
|
|
189191
189292
|
/**
|
|
189192
189293
|
* Apply instance method [[isAlmostEqual]] if both are defined.
|
|
189193
|
-
* *
|
|
189194
|
-
* *
|
|
189294
|
+
* * Both undefined returns true.
|
|
189295
|
+
* * Single defined returns false.
|
|
189195
189296
|
*/
|
|
189196
189297
|
static areAlmostEqual(a, b) {
|
|
189197
189298
|
if (a instanceof GeometryQuery && b instanceof GeometryQuery)
|
|
@@ -191825,9 +191926,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
191825
191926
|
*/
|
|
191826
191927
|
class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.GeometryQuery {
|
|
191827
191928
|
/** Test if `other` is a PointString3d */
|
|
191828
|
-
isSameGeometryClass(other) {
|
|
191829
|
-
|
|
191830
|
-
|
|
191929
|
+
isSameGeometryClass(other) {
|
|
191930
|
+
return other instanceof PointString3d;
|
|
191931
|
+
}
|
|
191932
|
+
/** Return a clone of the points array. */
|
|
191933
|
+
get points() {
|
|
191934
|
+
return this._points;
|
|
191935
|
+
}
|
|
191831
191936
|
constructor() {
|
|
191832
191937
|
super();
|
|
191833
191938
|
/** String name for schema properties */
|
|
@@ -191837,11 +191942,18 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191837
191942
|
/** Clone and apply a transform. */
|
|
191838
191943
|
cloneTransformed(transform) {
|
|
191839
191944
|
const c = this.clone();
|
|
191840
|
-
c.tryTransformInPlace(transform);
|
|
191945
|
+
c.tryTransformInPlace(transform); // we know tryTransformInPlace succeeds
|
|
191841
191946
|
return c;
|
|
191842
191947
|
}
|
|
191948
|
+
/**
|
|
191949
|
+
* Turn any array (possibly nested) into a "flat" array of objects that are not arrays. This allows processing
|
|
191950
|
+
* the objects without recursion into nested arrays.
|
|
191951
|
+
*/
|
|
191843
191952
|
static flattenArray(arr) {
|
|
191844
|
-
return arr.reduce(
|
|
191953
|
+
return arr.reduce(
|
|
191954
|
+
// a callback function to execute for each element in the array. Its return value becomes
|
|
191955
|
+
// the value of the "flat" parameter on the next invocation of the callback function.
|
|
191956
|
+
(flat, toFlatten) => {
|
|
191845
191957
|
return flat.concat(Array.isArray(toFlatten) ? PointString3d.flattenArray(toFlatten) : toFlatten);
|
|
191846
191958
|
}, []);
|
|
191847
191959
|
}
|
|
@@ -191851,7 +191963,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191851
191963
|
result.addPoints(points);
|
|
191852
191964
|
return result;
|
|
191853
191965
|
}
|
|
191854
|
-
/** Add multiple points to the PointString3d */
|
|
191966
|
+
/** Add multiple points to the PointString3d. */
|
|
191855
191967
|
addPoints(...points) {
|
|
191856
191968
|
const toAdd = PointString3d.flattenArray(points);
|
|
191857
191969
|
for (const p of toAdd) {
|
|
@@ -191859,25 +191971,25 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191859
191971
|
this._points.push(p);
|
|
191860
191972
|
}
|
|
191861
191973
|
}
|
|
191862
|
-
/** Add a single point to the PointString3d */
|
|
191974
|
+
/** Add a single point to the PointString3d. */
|
|
191863
191975
|
addPoint(point) {
|
|
191864
191976
|
this._points.push(point);
|
|
191865
191977
|
}
|
|
191866
|
-
/** Remove the last point added to the PointString3d */
|
|
191978
|
+
/** Remove the last point added to the PointString3d. */
|
|
191867
191979
|
popPoint() {
|
|
191868
191980
|
this._points.pop();
|
|
191869
191981
|
}
|
|
191870
|
-
/** Replace this PointString3d's point array by a clone of the array in `other
|
|
191982
|
+
/** Replace this PointString3d's point array by a clone of the array in `other`. */
|
|
191871
191983
|
setFrom(other) {
|
|
191872
191984
|
this._points = _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.clonePoint3dArray(other._points);
|
|
191873
191985
|
}
|
|
191874
|
-
/** Create from an array of Point3d */
|
|
191986
|
+
/** Create from an array of Point3d. */
|
|
191875
191987
|
static createPoints(points) {
|
|
191876
191988
|
const ps = new PointString3d();
|
|
191877
191989
|
ps._points = _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.clonePoint3dArray(points);
|
|
191878
191990
|
return ps;
|
|
191879
191991
|
}
|
|
191880
|
-
/** Create a PointString3d from xyz coordinates packed in a Float64Array */
|
|
191992
|
+
/** Create a PointString3d from xyz coordinates packed in a Float64Array. */
|
|
191881
191993
|
static createFloat64Array(xyzData) {
|
|
191882
191994
|
const ps = new PointString3d();
|
|
191883
191995
|
for (let i = 0; i + 3 <= xyzData.length; i += 3)
|
|
@@ -191890,7 +192002,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191890
192002
|
retVal.setFrom(this);
|
|
191891
192003
|
return retVal;
|
|
191892
192004
|
}
|
|
191893
|
-
/** Replace this instance's points by those from a json array, e.g. `[[1,2,3], [4,
|
|
192005
|
+
/** Replace this instance's points by those from a json array, e.g. `[[1,2,3], [4,5,6]]`. */
|
|
191894
192006
|
setFromJSON(json) {
|
|
191895
192007
|
this._points.length = 0;
|
|
191896
192008
|
if (Array.isArray(json)) {
|
|
@@ -191901,7 +192013,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191901
192013
|
}
|
|
191902
192014
|
/**
|
|
191903
192015
|
* Convert an PointString3d to a JSON object.
|
|
191904
|
-
* @return {*} [[
|
|
192016
|
+
* @return {*} e.g., `[[1,2,3], [4,5,6]]`.
|
|
191905
192017
|
*/
|
|
191906
192018
|
toJSON() {
|
|
191907
192019
|
const value = [];
|
|
@@ -191909,7 +192021,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191909
192021
|
value.push(p.toJSON());
|
|
191910
192022
|
return value;
|
|
191911
192023
|
}
|
|
191912
|
-
/** Create a PointString3d from a json array, e.g. `[[1,2,3], [4,
|
|
192024
|
+
/** Create a PointString3d from a json array, e.g. `[[1,2,3], [4,5,6]]`. */
|
|
191913
192025
|
static fromJSON(json) {
|
|
191914
192026
|
const ps = new PointString3d();
|
|
191915
192027
|
ps.setFromJSON(json);
|
|
@@ -191927,14 +192039,16 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191927
192039
|
return undefined;
|
|
191928
192040
|
}
|
|
191929
192041
|
/** Return the number of points. */
|
|
191930
|
-
numPoints() {
|
|
192042
|
+
numPoints() {
|
|
192043
|
+
return this._points.length;
|
|
192044
|
+
}
|
|
191931
192045
|
/** Reverse the point order */
|
|
191932
192046
|
reverseInPlace() {
|
|
191933
192047
|
if (this._points.length >= 2) {
|
|
191934
192048
|
let i0 = 0;
|
|
191935
192049
|
let i1 = this._points.length - 1;
|
|
191936
192050
|
while (i0 < i1) {
|
|
191937
|
-
const a = this._points[
|
|
192051
|
+
const a = this._points[i1];
|
|
191938
192052
|
this._points[i1] = this._points[i0];
|
|
191939
192053
|
this._points[i0] = a;
|
|
191940
192054
|
i0++;
|
|
@@ -191942,7 +192056,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191942
192056
|
}
|
|
191943
192057
|
}
|
|
191944
192058
|
}
|
|
191945
|
-
/**
|
|
192059
|
+
/** Apply transform on points in place. */
|
|
191946
192060
|
tryTransformInPlace(transform) {
|
|
191947
192061
|
transform.multiplyPoint3dArrayInPlace(this._points);
|
|
191948
192062
|
return true;
|
|
@@ -191961,7 +192075,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191961
192075
|
isInPlane(plane) {
|
|
191962
192076
|
return _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.isCloseToPlane(this._points, plane, _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.smallMetricDistance);
|
|
191963
192077
|
}
|
|
191964
|
-
/** Extend a range to include the points in this PointString3d. */
|
|
192078
|
+
/** Extend a range to include the points in this PointString3d (optionally transformed). */
|
|
191965
192079
|
extendRange(rangeToExtend, transform) {
|
|
191966
192080
|
rangeToExtend.extendArray(this._points, transform);
|
|
191967
192081
|
}
|
|
@@ -191972,8 +192086,10 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
191972
192086
|
return _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.isAlmostEqual(this._points, other._points);
|
|
191973
192087
|
}
|
|
191974
192088
|
/** Reduce to empty set of points. */
|
|
191975
|
-
clear() {
|
|
191976
|
-
|
|
192089
|
+
clear() {
|
|
192090
|
+
this._points.length = 0;
|
|
192091
|
+
}
|
|
192092
|
+
/** Second step of double dispatch: call `handler.handlePointString(this)` */
|
|
191977
192093
|
dispatchToGeometryHandler(handler) {
|
|
191978
192094
|
return handler.handlePointString3d(this);
|
|
191979
192095
|
}
|
|
@@ -233829,6 +233945,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
233829
233945
|
* @public
|
|
233830
233946
|
*/
|
|
233831
233947
|
class Polyface extends _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.GeometryQuery {
|
|
233948
|
+
/** Constructor */
|
|
233832
233949
|
constructor(data) {
|
|
233833
233950
|
super();
|
|
233834
233951
|
/** String name for schema properties */
|
|
@@ -233836,69 +233953,102 @@ class Polyface extends _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometr
|
|
|
233836
233953
|
this.data = data;
|
|
233837
233954
|
}
|
|
233838
233955
|
/** Flag indicating if the mesh display must assume both sides are visible. */
|
|
233839
|
-
get twoSided() {
|
|
233840
|
-
|
|
233841
|
-
|
|
233842
|
-
|
|
233843
|
-
|
|
233844
|
-
|
|
233845
|
-
|
|
233846
|
-
|
|
233847
|
-
|
|
233848
|
-
|
|
233849
|
-
|
|
233850
|
-
|
|
233851
|
-
|
|
233852
|
-
|
|
233853
|
-
|
|
233854
|
-
|
|
233956
|
+
get twoSided() {
|
|
233957
|
+
return this.data.twoSided;
|
|
233958
|
+
}
|
|
233959
|
+
set twoSided(value) {
|
|
233960
|
+
this.data.twoSided = value;
|
|
233961
|
+
}
|
|
233962
|
+
/**
|
|
233963
|
+
* Flag indicating if the mesh closure is unknown (0), open sheet (1), closed solid (2).
|
|
233964
|
+
* * A boundary edge of a mesh is defined as an edge with only one connected facet.
|
|
233965
|
+
* * Closed solid is a mesh with no boundary edge. Open sheet is a mesh that has boundary edge(s).
|
|
233966
|
+
*/
|
|
233967
|
+
get expectedClosure() {
|
|
233968
|
+
return this.data.expectedClosure;
|
|
233969
|
+
}
|
|
233970
|
+
set expectedClosure(value) {
|
|
233971
|
+
this.data.expectedClosure = value;
|
|
233972
|
+
}
|
|
233973
|
+
/**
|
|
233974
|
+
* Check validity of indices into a data array.
|
|
233975
|
+
* * It is valid to have both indices and data undefined.
|
|
233976
|
+
* * It is NOT valid for just one to be defined.
|
|
233977
|
+
* * Index values at indices[indexPositionA <= i < indexPositionB] must be valid indices to the data array.
|
|
233978
|
+
* @param indices array of indices.
|
|
233979
|
+
* @param indexPositionA first index to test.
|
|
233980
|
+
* @param indexPositionB one past final index to test.
|
|
233981
|
+
* @param data data array.
|
|
233982
|
+
* @param dataLength length of data array.
|
|
233983
|
+
*/
|
|
233855
233984
|
static areIndicesValid(indices, indexPositionA, indexPositionB, data, dataLength) {
|
|
233856
233985
|
if (indices === undefined && data === undefined)
|
|
233857
233986
|
return true;
|
|
233858
|
-
if (
|
|
233987
|
+
if (indices === undefined || data === undefined)
|
|
233859
233988
|
return false;
|
|
233860
233989
|
if (indexPositionA < 0 || indexPositionA >= indices.length)
|
|
233861
233990
|
return false;
|
|
233862
|
-
if (indexPositionB
|
|
233991
|
+
if (indexPositionB <= indexPositionA || indexPositionB > indices.length)
|
|
233863
233992
|
return false;
|
|
233864
233993
|
for (let i = indexPositionA; i < indexPositionB; i++)
|
|
233865
233994
|
if (indices[i] < 0 || indices[i] >= dataLength)
|
|
233866
233995
|
return false;
|
|
233867
233996
|
return true;
|
|
233868
233997
|
}
|
|
233869
|
-
/**
|
|
233870
|
-
* Returns the number of facets of this polyface. Subclasses should override.
|
|
233871
|
-
*/
|
|
233998
|
+
/** Returns the number of facets of this polyface. Subclasses should override. */
|
|
233872
233999
|
get facetCount() {
|
|
233873
234000
|
return undefined;
|
|
233874
234001
|
}
|
|
233875
234002
|
}
|
|
233876
234003
|
/**
|
|
233877
|
-
* An `IndexedPolyface` is a set of facets which can have normal, param, and color arrays with independent point,
|
|
234004
|
+
* An `IndexedPolyface` is a set of facets which can have normal, param, and color arrays with independent point,
|
|
234005
|
+
* normal, param, and color indices.
|
|
233878
234006
|
* @public
|
|
233879
234007
|
*/
|
|
233880
234008
|
class IndexedPolyface extends Polyface {
|
|
234009
|
+
/**
|
|
234010
|
+
* Constructor for a new polyface.
|
|
234011
|
+
* @param data PolyfaceData arrays to capture.
|
|
234012
|
+
* @param facetStart optional array of facet start indices (e.g. known during clone)
|
|
234013
|
+
* @param facetToFacetData optional array of face identifiers (e.g. known during clone)
|
|
234014
|
+
*/
|
|
234015
|
+
constructor(data, facetStart, facetToFaceData) {
|
|
234016
|
+
super(data);
|
|
234017
|
+
if (facetStart)
|
|
234018
|
+
this._facetStart = facetStart.slice(); // deep copy
|
|
234019
|
+
else {
|
|
234020
|
+
this._facetStart = [];
|
|
234021
|
+
this._facetStart.push(0);
|
|
234022
|
+
}
|
|
234023
|
+
if (facetToFaceData)
|
|
234024
|
+
this._facetToFaceData = facetToFaceData.slice(); // deep copy
|
|
234025
|
+
else
|
|
234026
|
+
this._facetToFaceData = [];
|
|
234027
|
+
}
|
|
233881
234028
|
/** Test if other is an instance of `IndexedPolyface` */
|
|
233882
|
-
isSameGeometryClass(other) {
|
|
234029
|
+
isSameGeometryClass(other) {
|
|
234030
|
+
return other instanceof IndexedPolyface;
|
|
234031
|
+
}
|
|
233883
234032
|
/** Tests for equivalence between two IndexedPolyfaces. */
|
|
233884
234033
|
isAlmostEqual(other) {
|
|
233885
234034
|
if (other instanceof IndexedPolyface) {
|
|
233886
|
-
return this.data.isAlmostEqual(other.data) &&
|
|
234035
|
+
return this.data.isAlmostEqual(other.data) &&
|
|
234036
|
+
_geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_1__.NumberArray.isExactEqual(this._facetStart, other._facetStart) &&
|
|
233887
234037
|
_geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_1__.NumberArray.isExactEqual(this._facetToFaceData, other._facetToFaceData);
|
|
233888
234038
|
}
|
|
233889
234039
|
return false;
|
|
233890
234040
|
}
|
|
234041
|
+
/** Returns true if either the point array or the point index array is empty. */
|
|
234042
|
+
get isEmpty() {
|
|
234043
|
+
return this.data.pointCount === 0 || this.data.pointIndex.length === 0;
|
|
234044
|
+
}
|
|
233891
234045
|
/**
|
|
233892
|
-
*
|
|
233893
|
-
|
|
233894
|
-
|
|
233895
|
-
|
|
233896
|
-
* * apply the transform to points
|
|
233897
|
-
* * apply the (inverse transpose of) the matrix part to normals
|
|
233898
|
-
* * If determinant is negative, also
|
|
234046
|
+
* Transform the mesh.
|
|
234047
|
+
* * Apply the transform to points.
|
|
234048
|
+
* * Apply the (inverse transpose of the) matrix part to normals.
|
|
234049
|
+
* * If determinant of the transform matrix is negative, also
|
|
233899
234050
|
* * negate normals
|
|
233900
234051
|
* * reverse index order around each facet.
|
|
233901
|
-
* @param transform
|
|
233902
234052
|
*/
|
|
233903
234053
|
tryTransformInPlace(transform) {
|
|
233904
234054
|
if (!this.data.tryTransformInPlace(transform))
|
|
@@ -233919,52 +234069,47 @@ class IndexedPolyface extends Polyface {
|
|
|
233919
234069
|
const result = new IndexedPolyface(this.data.clone(), this._facetStart.slice(), this._facetToFaceData.slice());
|
|
233920
234070
|
return result;
|
|
233921
234071
|
}
|
|
233922
|
-
/**
|
|
234072
|
+
/**
|
|
234073
|
+
* Return a deep clone with transformed points and normals.
|
|
234074
|
+
* @see [[IndexedPolyface.tryTransformInPlace]] for details of how transform is done.
|
|
234075
|
+
*/
|
|
233923
234076
|
cloneTransformed(transform) {
|
|
233924
234077
|
const result = this.clone();
|
|
233925
234078
|
result.tryTransformInPlace(transform);
|
|
233926
234079
|
return result;
|
|
233927
234080
|
}
|
|
233928
234081
|
/** Reverse the order of indices around all facets. */
|
|
233929
|
-
reverseIndices() {
|
|
234082
|
+
reverseIndices() {
|
|
234083
|
+
this.data.reverseIndices(this._facetStart);
|
|
234084
|
+
}
|
|
233930
234085
|
/** Reverse the direction of all normal vectors. */
|
|
233931
|
-
reverseNormals() {
|
|
233932
|
-
|
|
234086
|
+
reverseNormals() {
|
|
234087
|
+
this.data.reverseNormals();
|
|
234088
|
+
}
|
|
234089
|
+
/**
|
|
234090
|
+
* Return face data using a facet index.
|
|
234091
|
+
* * Returns `undefined` if none found.
|
|
234092
|
+
* * This is the REFERENCE to the FacetFaceData not a copy.
|
|
234093
|
+
*/
|
|
233933
234094
|
tryGetFaceData(i) {
|
|
234095
|
+
if (i < 0 || i >= this._facetToFaceData.length)
|
|
234096
|
+
return undefined;
|
|
233934
234097
|
const faceIndex = this._facetToFaceData[i];
|
|
233935
|
-
if (faceIndex >= this.data.face.length)
|
|
234098
|
+
if (faceIndex < 0 || faceIndex >= this.data.face.length)
|
|
233936
234099
|
return undefined;
|
|
233937
234100
|
return this.data.face[faceIndex];
|
|
233938
234101
|
}
|
|
233939
234102
|
/**
|
|
233940
|
-
*
|
|
233941
|
-
*
|
|
233942
|
-
*
|
|
233943
|
-
*
|
|
233944
|
-
*/
|
|
233945
|
-
constructor(data, facetStart, facetToFaceData) {
|
|
233946
|
-
super(data);
|
|
233947
|
-
if (facetStart)
|
|
233948
|
-
this._facetStart = facetStart.slice();
|
|
233949
|
-
else {
|
|
233950
|
-
this._facetStart = [];
|
|
233951
|
-
this._facetStart.push(0);
|
|
233952
|
-
}
|
|
233953
|
-
if (facetToFaceData)
|
|
233954
|
-
this._facetToFaceData = facetToFaceData.slice();
|
|
233955
|
-
else
|
|
233956
|
-
this._facetToFaceData = [];
|
|
233957
|
-
}
|
|
233958
|
-
/**
|
|
233959
|
-
* * Add facets from source to this polyface.
|
|
233960
|
-
* * Optionally reverse facet indices as per PolyfaceData.reverseIndicesSingleFacet() with preserveStart = false, and invert source normals.
|
|
233961
|
-
* * Optionally apply a transform to points and normals.
|
|
234103
|
+
* Add facets from `source` to `this` polyface.
|
|
234104
|
+
* * Optionally reverse facet indices as per `PolyfaceData.reverseIndicesSingleFacet()` with `preserveStart = false` and
|
|
234105
|
+
* invert source normals.
|
|
234106
|
+
* * Optionally apply a `transform` to points and normals.
|
|
233962
234107
|
* * Will only copy param, normal, color, and face data if we are already tracking them AND/OR the source contains them.
|
|
233963
234108
|
*/
|
|
233964
234109
|
addIndexedPolyface(source, reversed, transform) {
|
|
233965
234110
|
const numSourceFacets = source.facetCount;
|
|
233966
|
-
//
|
|
233967
|
-
//
|
|
234111
|
+
// add point, point index, and edge visibility data
|
|
234112
|
+
// note that there is no need to build an intermediate index map since all points are added
|
|
233968
234113
|
const startOfNewPoints = this.data.point.length;
|
|
233969
234114
|
const xyz = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create();
|
|
233970
234115
|
for (let i = 0; i < source.data.point.length; i++) {
|
|
@@ -233991,11 +234136,11 @@ class IndexedPolyface extends Polyface {
|
|
|
233991
234136
|
}
|
|
233992
234137
|
this.terminateFacet(false);
|
|
233993
234138
|
}
|
|
233994
|
-
//
|
|
234139
|
+
// add param and param index data
|
|
233995
234140
|
if (undefined !== this.data.param && undefined !== source.data.param && undefined !== source.data.paramIndex) {
|
|
233996
234141
|
const startOfNewParams = this.data.param.length;
|
|
233997
234142
|
this.data.param.pushFromGrowableXYArray(source.data.param);
|
|
233998
|
-
for (let i = 0; i < numSourceFacets; i++) { //
|
|
234143
|
+
for (let i = 0; i < numSourceFacets; i++) { // expect facet start and ends for points to match normals
|
|
233999
234144
|
const i0 = source._facetStart[i];
|
|
234000
234145
|
const i1 = source._facetStart[i + 1];
|
|
234001
234146
|
if (reversed) {
|
|
@@ -234008,7 +234153,7 @@ class IndexedPolyface extends Polyface {
|
|
|
234008
234153
|
}
|
|
234009
234154
|
}
|
|
234010
234155
|
}
|
|
234011
|
-
//
|
|
234156
|
+
// add normal and normal index data
|
|
234012
234157
|
if (undefined !== this.data.normal && undefined !== source.data.normal && undefined !== source.data.normalIndex) {
|
|
234013
234158
|
const startOfNewNormals = this.data.normal.length;
|
|
234014
234159
|
for (let i = 0; i < source.data.normal.length; i++) {
|
|
@@ -234019,7 +234164,7 @@ class IndexedPolyface extends Polyface {
|
|
|
234019
234164
|
sourceNormal.scaleInPlace(-1.0);
|
|
234020
234165
|
this.addNormal(sourceNormal);
|
|
234021
234166
|
}
|
|
234022
|
-
for (let i = 0; i < numSourceFacets; i++) { //
|
|
234167
|
+
for (let i = 0; i < numSourceFacets; i++) { // expect facet start and ends for points to match normals
|
|
234023
234168
|
const i0 = source._facetStart[i];
|
|
234024
234169
|
const i1 = source._facetStart[i + 1];
|
|
234025
234170
|
if (reversed) {
|
|
@@ -234032,12 +234177,12 @@ class IndexedPolyface extends Polyface {
|
|
|
234032
234177
|
}
|
|
234033
234178
|
}
|
|
234034
234179
|
}
|
|
234035
|
-
//
|
|
234180
|
+
// add color and color index data
|
|
234036
234181
|
if (undefined !== this.data.color && undefined !== source.data.color && undefined !== source.data.colorIndex) {
|
|
234037
234182
|
const startOfNewColors = this.data.color.length;
|
|
234038
234183
|
for (const sourceColor of source.data.color)
|
|
234039
234184
|
this.addColor(sourceColor);
|
|
234040
|
-
for (let i = 0; i < numSourceFacets; i++) { //
|
|
234185
|
+
for (let i = 0; i < numSourceFacets; i++) { // expect facet start and ends for points to match colors
|
|
234041
234186
|
const i0 = source._facetStart[i];
|
|
234042
234187
|
const i1 = source._facetStart[i + 1];
|
|
234043
234188
|
if (reversed) {
|
|
@@ -234050,7 +234195,7 @@ class IndexedPolyface extends Polyface {
|
|
|
234050
234195
|
}
|
|
234051
234196
|
}
|
|
234052
234197
|
}
|
|
234053
|
-
//
|
|
234198
|
+
// add face and facetToFace index data
|
|
234054
234199
|
if (source.data.face.length !== 0) {
|
|
234055
234200
|
const startOfNewFaceData = this.data.face.length;
|
|
234056
234201
|
for (const face of source.data.face) {
|
|
@@ -234062,25 +234207,31 @@ class IndexedPolyface extends Polyface {
|
|
|
234062
234207
|
}
|
|
234063
234208
|
}
|
|
234064
234209
|
}
|
|
234065
|
-
/**
|
|
234066
|
-
*
|
|
234210
|
+
/**
|
|
234211
|
+
* Return the total number of indices in zero-terminated style, which includes
|
|
234212
|
+
* * all the indices in the packed zero-based table.
|
|
234067
234213
|
* * one additional index for the zero-terminator of each facet.
|
|
234068
|
-
* @note Note that all index arrays (
|
|
234214
|
+
* @note Note that all index arrays (pointIndex, normalIndex, paramIndex, colorIndex) have the same counts, so there
|
|
234069
234215
|
* is not a separate query for each of them.
|
|
234070
234216
|
*/
|
|
234071
|
-
get zeroTerminatedIndexCount() {
|
|
234072
|
-
|
|
234073
|
-
|
|
234074
|
-
|
|
234075
|
-
*
|
|
234217
|
+
get zeroTerminatedIndexCount() {
|
|
234218
|
+
return this.data.pointIndex.length + this._facetStart.length - 1;
|
|
234219
|
+
}
|
|
234220
|
+
/**
|
|
234221
|
+
* Create an empty facet set with coordinate and index data to be supplied later.
|
|
234222
|
+
* @param needNormals true if normals will be constructed.
|
|
234223
|
+
* @param needParams true if uv parameters will be constructed.
|
|
234224
|
+
* @param needColors true if colors will be constructed.
|
|
234225
|
+
* @param twoSided true if the facets are to be considered viewable from the back.
|
|
234076
234226
|
*/
|
|
234077
234227
|
static create(needNormals = false, needParams = false, needColors = false, twoSided = false) {
|
|
234078
234228
|
return new IndexedPolyface(new _PolyfaceData__WEBPACK_IMPORTED_MODULE_3__.PolyfaceData(needNormals, needParams, needColors, twoSided));
|
|
234079
234229
|
}
|
|
234080
|
-
/**
|
|
234081
|
-
*
|
|
234082
|
-
* @param
|
|
234083
|
-
* @
|
|
234230
|
+
/**
|
|
234231
|
+
* Add (a clone of) a point to point array.
|
|
234232
|
+
* @param point the point.
|
|
234233
|
+
* @param priorIndex (optional) index of prior point to check for possible duplicate value.
|
|
234234
|
+
* @returns the zero-based index of the added or duplicate point.
|
|
234084
234235
|
*/
|
|
234085
234236
|
addPoint(point, priorIndex) {
|
|
234086
234237
|
if (priorIndex !== undefined) {
|
|
@@ -234091,12 +234242,21 @@ class IndexedPolyface extends Polyface {
|
|
|
234091
234242
|
this.data.point.pushXYZ(point.x, point.y, point.z);
|
|
234092
234243
|
return this.data.point.length - 1;
|
|
234093
234244
|
}
|
|
234094
|
-
/**
|
|
234095
|
-
*
|
|
234245
|
+
/**
|
|
234246
|
+
* Add a point to point array.
|
|
234247
|
+
* @param x the x coordinate of point.
|
|
234248
|
+
* @param y the y coordinate of point.
|
|
234249
|
+
* @param z the z coordinate of point.
|
|
234250
|
+
* @returns the zero-based index of the added point.
|
|
234096
234251
|
*/
|
|
234097
|
-
addPointXYZ(x, y, z) {
|
|
234098
|
-
|
|
234099
|
-
|
|
234252
|
+
addPointXYZ(x, y, z) {
|
|
234253
|
+
this.data.point.pushXYZ(x, y, z);
|
|
234254
|
+
return this.data.point.length - 1;
|
|
234255
|
+
}
|
|
234256
|
+
/**
|
|
234257
|
+
* Add (a clone of) a uv parameter to the parameter array.
|
|
234258
|
+
* @param param the parameter.
|
|
234259
|
+
* @returns zero-based index of the added param.
|
|
234100
234260
|
*/
|
|
234101
234261
|
addParam(param) {
|
|
234102
234262
|
if (!this.data.param)
|
|
@@ -234104,10 +234264,13 @@ class IndexedPolyface extends Polyface {
|
|
|
234104
234264
|
this.data.param.push(param);
|
|
234105
234265
|
return this.data.param.length - 1;
|
|
234106
234266
|
}
|
|
234107
|
-
/**
|
|
234267
|
+
/**
|
|
234268
|
+
* Add a uv parameter to the parameter array.
|
|
234269
|
+
* @param u the u part of parameter.
|
|
234270
|
+
* @param v the v part of parameter.
|
|
234108
234271
|
* @param priorIndexA first index to check for possible duplicate value.
|
|
234109
234272
|
* @param priorIndexB second index to check for possible duplicate value.
|
|
234110
|
-
* @returns
|
|
234273
|
+
* @returns zero-based index of the added or duplicate parameter.
|
|
234111
234274
|
*/
|
|
234112
234275
|
addParamUV(u, v, priorIndexA, priorIndexB) {
|
|
234113
234276
|
if (!this.data.param)
|
|
@@ -234119,37 +234282,39 @@ class IndexedPolyface extends Polyface {
|
|
|
234119
234282
|
this.data.param.pushXY(u, v);
|
|
234120
234283
|
return this.data.param.length - 1;
|
|
234121
234284
|
}
|
|
234122
|
-
/**
|
|
234285
|
+
/**
|
|
234286
|
+
* Add (a clone of) a normal vector to the normal array.
|
|
234287
|
+
* @param normal the normal vector.
|
|
234123
234288
|
* @param priorIndexA first index to check for possible duplicate value.
|
|
234124
234289
|
* @param priorIndexB second index to check for possible duplicate value.
|
|
234125
|
-
* @returns
|
|
234290
|
+
* @returns zero-based index of the added or duplicate normal.
|
|
234126
234291
|
*/
|
|
234127
234292
|
addNormal(normal, priorIndexA, priorIndexB) {
|
|
234293
|
+
// check if `normal` is duplicate of `dataNormal` at index `i`
|
|
234294
|
+
const normalIsDuplicate = (dataNormal, i) => {
|
|
234295
|
+
const distance = dataNormal.distanceIndexToPoint(i, normal);
|
|
234296
|
+
return distance !== undefined && _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.isSmallMetricDistance(distance);
|
|
234297
|
+
};
|
|
234128
234298
|
if (this.data.normal !== undefined) {
|
|
234129
|
-
|
|
234130
|
-
|
|
234131
|
-
|
|
234132
|
-
|
|
234133
|
-
|
|
234134
|
-
}
|
|
234135
|
-
if (priorIndexB !== undefined) {
|
|
234136
|
-
distance = this.data.normal.distanceIndexToPoint(priorIndexB, normal);
|
|
234137
|
-
if (distance !== undefined && _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.isSmallMetricDistance(distance))
|
|
234138
|
-
return priorIndexB;
|
|
234139
|
-
}
|
|
234140
|
-
// Note: Do NOT attempt to chain to tail if no prior indices given.
|
|
234141
|
-
// But if they are, look also to the tail.
|
|
234299
|
+
if (priorIndexA !== undefined && normalIsDuplicate(this.data.normal, priorIndexA))
|
|
234300
|
+
return priorIndexA;
|
|
234301
|
+
if (priorIndexB !== undefined && normalIsDuplicate(this.data.normal, priorIndexB))
|
|
234302
|
+
return priorIndexB;
|
|
234303
|
+
// check the tail index for possible duplicate
|
|
234142
234304
|
if (priorIndexA !== undefined || priorIndexB !== undefined) {
|
|
234143
234305
|
const tailIndex = this.data.normal.length - 1;
|
|
234144
|
-
|
|
234145
|
-
if (distance !== undefined && _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.isSmallMetricDistance(distance))
|
|
234306
|
+
if (normalIsDuplicate(this.data.normal, tailIndex))
|
|
234146
234307
|
return tailIndex;
|
|
234147
234308
|
}
|
|
234148
234309
|
}
|
|
234149
234310
|
return this.addNormalXYZ(normal.x, normal.y, normal.z);
|
|
234150
234311
|
}
|
|
234151
|
-
/**
|
|
234152
|
-
*
|
|
234312
|
+
/**
|
|
234313
|
+
* Add a normal vector to the normal array.
|
|
234314
|
+
* @param x the x coordinate of normal.
|
|
234315
|
+
* @param y the y coordinate of normal.
|
|
234316
|
+
* @param z the z coordinate of normal.
|
|
234317
|
+
* @returns zero-based index of the added normal vector.
|
|
234153
234318
|
*/
|
|
234154
234319
|
addNormalXYZ(x, y, z) {
|
|
234155
234320
|
if (!this.data.normal)
|
|
@@ -234157,8 +234322,10 @@ class IndexedPolyface extends Polyface {
|
|
|
234157
234322
|
this.data.normal.pushXYZ(x, y, z);
|
|
234158
234323
|
return this.data.normal.length - 1;
|
|
234159
234324
|
}
|
|
234160
|
-
/**
|
|
234161
|
-
*
|
|
234325
|
+
/**
|
|
234326
|
+
* Add a color to the color array
|
|
234327
|
+
* @param color the color.
|
|
234328
|
+
* @returns zero-based index of the added color.
|
|
234162
234329
|
*/
|
|
234163
234330
|
addColor(color) {
|
|
234164
234331
|
if (!this.data.color)
|
|
@@ -234167,46 +234334,54 @@ class IndexedPolyface extends Polyface {
|
|
|
234167
234334
|
return this.data.color.length - 1;
|
|
234168
234335
|
}
|
|
234169
234336
|
/** Add a point index with edge visibility flag. */
|
|
234170
|
-
addPointIndex(index, visible = true) {
|
|
234171
|
-
|
|
234337
|
+
addPointIndex(index, visible = true) {
|
|
234338
|
+
this.data.pointIndex.push(index);
|
|
234339
|
+
this.data.edgeVisible.push(visible);
|
|
234340
|
+
}
|
|
234341
|
+
/** Add a normal index. */
|
|
234172
234342
|
addNormalIndex(index) {
|
|
234173
234343
|
if (!this.data.normalIndex)
|
|
234174
234344
|
this.data.normalIndex = [];
|
|
234175
234345
|
this.data.normalIndex.push(index);
|
|
234176
234346
|
}
|
|
234177
|
-
/** Add a param index */
|
|
234347
|
+
/** Add a param index. */
|
|
234178
234348
|
addParamIndex(index) {
|
|
234179
234349
|
if (!this.data.paramIndex)
|
|
234180
234350
|
this.data.paramIndex = [];
|
|
234181
234351
|
this.data.paramIndex.push(index);
|
|
234182
234352
|
}
|
|
234183
|
-
/** Add a color index */
|
|
234353
|
+
/** Add a color index. */
|
|
234184
234354
|
addColorIndex(index) {
|
|
234185
234355
|
if (!this.data.colorIndex)
|
|
234186
234356
|
this.data.colorIndex = [];
|
|
234187
234357
|
this.data.colorIndex.push(index);
|
|
234188
234358
|
}
|
|
234189
|
-
/**
|
|
234359
|
+
/**
|
|
234360
|
+
* Clean up the open facet.
|
|
234361
|
+
* @deprecated in 4.x to remove nebulous "open facet" concept from the API. Call [[PolyfaceData.trimAllIndexArrays]]
|
|
234362
|
+
* instead.
|
|
234363
|
+
*/
|
|
234190
234364
|
cleanupOpenFacet() {
|
|
234191
234365
|
this.data.trimAllIndexArrays(this.data.pointIndex.length);
|
|
234192
234366
|
}
|
|
234193
|
-
/**
|
|
234194
|
-
*
|
|
234195
|
-
* *
|
|
234196
|
-
*
|
|
234197
|
-
*
|
|
234198
|
-
*
|
|
234199
|
-
* *
|
|
234200
|
-
* * "undefined" return is normal. Any other return is a description of an error.
|
|
234367
|
+
/**
|
|
234368
|
+
* Announce the end of construction of a facet.
|
|
234369
|
+
* * Optionally check for:
|
|
234370
|
+
* * Same number of indices among all active index arrays -- point, normal, param, color
|
|
234371
|
+
* * All indices are within bounds of the respective data arrays.
|
|
234372
|
+
* * In error cases, all index arrays are trimmed back to the size when previous facet was terminated.
|
|
234373
|
+
* * A return value of `undefined` is normal. Otherwise, a string array of error messages is returned.
|
|
234201
234374
|
*/
|
|
234202
234375
|
terminateFacet(validateAllIndices = true) {
|
|
234203
234376
|
const numFacets = this._facetStart.length - 1;
|
|
234204
|
-
|
|
234205
|
-
const
|
|
234377
|
+
// number of indices in accepted facets
|
|
234378
|
+
const lengthA = this._facetStart[numFacets];
|
|
234379
|
+
// number of indices in all facets (accepted facet plus the last facet to be accepted)
|
|
234380
|
+
const lengthB = this.data.pointIndex.length;
|
|
234206
234381
|
if (validateAllIndices) {
|
|
234207
234382
|
const messages = [];
|
|
234208
234383
|
if (lengthB < lengthA + 2)
|
|
234209
|
-
messages.push("Less than 3 indices in
|
|
234384
|
+
messages.push("Less than 3 indices in the last facet");
|
|
234210
234385
|
if (this.data.normalIndex && this.data.normalIndex.length !== lengthB)
|
|
234211
234386
|
messages.push("normalIndex count must match pointIndex count");
|
|
234212
234387
|
if (this.data.paramIndex && this.data.paramIndex.length !== lengthB)
|
|
@@ -234216,70 +234391,93 @@ class IndexedPolyface extends Polyface {
|
|
|
234216
234391
|
if (this.data.edgeVisible.length !== lengthB)
|
|
234217
234392
|
messages.push("visibleIndex count must equal pointIndex count");
|
|
234218
234393
|
if (!Polyface.areIndicesValid(this.data.normalIndex, lengthA, lengthB, this.data.normal, this.data.normal ? this.data.normal.length : 0))
|
|
234219
|
-
messages.push("invalid normal indices in
|
|
234394
|
+
messages.push("invalid normal indices in the last facet");
|
|
234220
234395
|
if (messages.length > 0) {
|
|
234221
|
-
this.
|
|
234396
|
+
this.data.trimAllIndexArrays(lengthB);
|
|
234222
234397
|
return messages;
|
|
234223
234398
|
}
|
|
234224
234399
|
}
|
|
234225
|
-
//
|
|
234226
|
-
this._facetStart.push(lengthB);
|
|
234400
|
+
this._facetStart.push(lengthB); // append start index of the future facet
|
|
234227
234401
|
return undefined;
|
|
234228
234402
|
}
|
|
234229
|
-
/**
|
|
234230
|
-
|
|
234231
|
-
|
|
234232
|
-
|
|
234233
|
-
/** (read-only property)
|
|
234234
|
-
get
|
|
234235
|
-
|
|
234236
|
-
|
|
234237
|
-
/** (read-only property)
|
|
234238
|
-
get pointCount() {
|
|
234239
|
-
|
|
234240
|
-
|
|
234241
|
-
/** (read-only property)
|
|
234242
|
-
get
|
|
234243
|
-
|
|
234244
|
-
|
|
234403
|
+
/** Number of facets (read-only property). */
|
|
234404
|
+
get facetCount() {
|
|
234405
|
+
return this._facetStart.length - 1;
|
|
234406
|
+
}
|
|
234407
|
+
/** Number of faces (read-only property). */
|
|
234408
|
+
get faceCount() {
|
|
234409
|
+
return this.data.faceCount;
|
|
234410
|
+
}
|
|
234411
|
+
/** Number of points (read-only property). */
|
|
234412
|
+
get pointCount() {
|
|
234413
|
+
return this.data.pointCount;
|
|
234414
|
+
}
|
|
234415
|
+
/** Number of colors (read-only property). */
|
|
234416
|
+
get colorCount() {
|
|
234417
|
+
return this.data.colorCount;
|
|
234418
|
+
}
|
|
234419
|
+
/** Number of parameters (read-only property). */
|
|
234420
|
+
get paramCount() {
|
|
234421
|
+
return this.data.paramCount;
|
|
234422
|
+
}
|
|
234423
|
+
/** Number of normals (read-only property). */
|
|
234424
|
+
get normalCount() {
|
|
234425
|
+
return this.data.normalCount;
|
|
234426
|
+
}
|
|
234427
|
+
/** Test if `index` is a valid facet index. */
|
|
234428
|
+
isValidFacetIndex(index) {
|
|
234429
|
+
return index >= 0 && index < this.facetCount;
|
|
234430
|
+
}
|
|
234245
234431
|
/** Return the number of edges in a particular facet. */
|
|
234246
234432
|
numEdgeInFacet(facetIndex) {
|
|
234247
234433
|
if (this.isValidFacetIndex(facetIndex))
|
|
234248
234434
|
return this._facetStart[facetIndex + 1] - this._facetStart[facetIndex];
|
|
234249
234435
|
return 0;
|
|
234250
234436
|
}
|
|
234251
|
-
/**
|
|
234252
|
-
|
|
234253
|
-
|
|
234254
|
-
|
|
234255
|
-
/** ASSUME valid facet index
|
|
234256
|
-
facetIndex1(index) {
|
|
234257
|
-
|
|
234258
|
-
|
|
234437
|
+
/** ASSUME valid facet index. Return start index of facet in pointIndex arrays. */
|
|
234438
|
+
facetIndex0(index) {
|
|
234439
|
+
return this._facetStart[index];
|
|
234440
|
+
}
|
|
234441
|
+
/** ASSUME valid facet index. Return one past end index of facet in pointIndex arrays. */
|
|
234442
|
+
facetIndex1(index) {
|
|
234443
|
+
return this._facetStart[index + 1];
|
|
234444
|
+
}
|
|
234445
|
+
/** Create a visitor for this polyface */
|
|
234446
|
+
createVisitor(numWrap = 0) {
|
|
234447
|
+
return _IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_7__.IndexedPolyfaceVisitor.create(this, numWrap);
|
|
234448
|
+
}
|
|
234259
234449
|
/** Return the range of (optionally transformed) points in this mesh. */
|
|
234260
|
-
range(transform, result) {
|
|
234261
|
-
|
|
234262
|
-
|
|
234263
|
-
/**
|
|
234450
|
+
range(transform, result) {
|
|
234451
|
+
return this.data.range(result, transform);
|
|
234452
|
+
}
|
|
234453
|
+
/** Extend `range` with coordinates from this mesh. */
|
|
234454
|
+
extendRange(range, transform) {
|
|
234455
|
+
this.data.range(range, transform);
|
|
234456
|
+
}
|
|
234457
|
+
/**
|
|
234458
|
+
* Given the index of a facet, return the data pertaining to the face it is a part of.
|
|
234459
|
+
* @deprecated in 4.x. Use [[IndexedPolyface.tryGetFaceData]], which verifies the index is in range.
|
|
234460
|
+
*/
|
|
234264
234461
|
getFaceDataByFacetIndex(facetIndex) {
|
|
234265
234462
|
return this.data.face[this._facetToFaceData[facetIndex]];
|
|
234266
234463
|
}
|
|
234267
234464
|
/**
|
|
234268
|
-
*
|
|
234269
|
-
*
|
|
234465
|
+
* Set new FacetFaceData.
|
|
234466
|
+
* * All terminated facets since the last face declaration will be mapped to a single new FacetFaceData object using
|
|
234467
|
+
* facetToFaceData[]. FacetFaceData holds the 2D range of the face. Returns `true` if successful, `false` otherwise.
|
|
234270
234468
|
*/
|
|
234271
234469
|
setNewFaceData(endFacetIndex = 0) {
|
|
234272
234470
|
const facetStart = this._facetToFaceData.length;
|
|
234273
234471
|
if (facetStart >= this._facetStart.length)
|
|
234274
234472
|
return false;
|
|
234275
|
-
if (0 === endFacetIndex) //
|
|
234276
|
-
endFacetIndex = this._facetStart.length; //
|
|
234473
|
+
if (0 === endFacetIndex) // the default for endFacetIndex is really the last facet
|
|
234474
|
+
endFacetIndex = this._facetStart.length; // last facet index corresponds to the future facet
|
|
234277
234475
|
const faceData = _FacetFaceData__WEBPACK_IMPORTED_MODULE_8__.FacetFaceData.createNull();
|
|
234278
234476
|
const visitor = _IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_7__.IndexedPolyfaceVisitor.create(this, 0);
|
|
234279
|
-
if (!visitor.moveToReadIndex(facetStart)) { //
|
|
234477
|
+
if (!visitor.moveToReadIndex(facetStart)) { // move visitor to first facet of new face
|
|
234280
234478
|
return false;
|
|
234281
234479
|
}
|
|
234282
|
-
//
|
|
234480
|
+
// if parameter range is provided (by the polyface planeSet clipper) then use it
|
|
234283
234481
|
const paramDefined = this.data.param !== undefined;
|
|
234284
234482
|
const setParamRange = faceData.paramRange.isNull && paramDefined;
|
|
234285
234483
|
do {
|
|
@@ -234294,7 +234492,7 @@ class IndexedPolyface extends Polyface {
|
|
|
234294
234492
|
this._facetToFaceData.push(0 === this._facetStart[i] ? 0 : faceDataIndex);
|
|
234295
234493
|
return true;
|
|
234296
234494
|
}
|
|
234297
|
-
/** Second step of double dispatch:
|
|
234495
|
+
/** Second step of double dispatch: call `handler.handleIndexedPolyface(this)`. */
|
|
234298
234496
|
dispatchToGeometryHandler(handler) {
|
|
234299
234497
|
return handler.handleIndexedPolyface(this);
|
|
234300
234498
|
}
|
|
@@ -236973,14 +237171,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
236973
237171
|
* @public
|
|
236974
237172
|
*/
|
|
236975
237173
|
class PolyfaceData {
|
|
236976
|
-
/** boolean tag indicating if the facets are viewable from the back */
|
|
237174
|
+
/** boolean tag indicating if the facets are to be considered viewable from the back */
|
|
236977
237175
|
get twoSided() { return this._twoSided; }
|
|
236978
237176
|
set twoSided(value) { this._twoSided = value; }
|
|
236979
237177
|
/** set the `taggedNumericData` member */
|
|
236980
237178
|
setTaggedNumericData(data) {
|
|
236981
237179
|
this.taggedNumericData = data;
|
|
236982
237180
|
}
|
|
236983
|
-
/**
|
|
237181
|
+
/**
|
|
237182
|
+
* Flag indicating if the mesh closure is unknown (0), open sheet (1), closed solid (2).
|
|
237183
|
+
* * A boundary edge of a mesh is defined as an edge with only one connected facet.
|
|
237184
|
+
* * Closed solid is a mesh with no boundary edge. Open sheet is a mesh that has boundary edge(s).
|
|
237185
|
+
*/
|
|
236984
237186
|
get expectedClosure() { return this._expectedClosure; }
|
|
236985
237187
|
set expectedClosure(value) { this._expectedClosure = value; }
|
|
236986
237188
|
/** Constructor for facets.
|
|
@@ -237192,10 +237394,13 @@ class PolyfaceData {
|
|
|
237192
237394
|
this.auxData.indices[numEdge + i] = this.auxData.indices[i];
|
|
237193
237395
|
}
|
|
237194
237396
|
}
|
|
237195
|
-
static trimArray(data, length) {
|
|
237196
|
-
data
|
|
237197
|
-
|
|
237198
|
-
|
|
237397
|
+
static trimArray(data, length) {
|
|
237398
|
+
if (data && length < data.length)
|
|
237399
|
+
data.length = length;
|
|
237400
|
+
}
|
|
237401
|
+
/**
|
|
237402
|
+
* Trim all index arrays to the stated length.
|
|
237403
|
+
* This is called by PolyfaceBuilder to clean up after an aborted construction sequence.
|
|
237199
237404
|
*/
|
|
237200
237405
|
trimAllIndexArrays(length) {
|
|
237201
237406
|
PolyfaceData.trimArray(this.pointIndex, length);
|
|
@@ -292644,7 +292849,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
292644
292849
|
/***/ ((module) => {
|
|
292645
292850
|
|
|
292646
292851
|
"use strict";
|
|
292647
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.5.0-dev.
|
|
292852
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.5.0-dev.7","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.7","@itwin/core-bentley":"workspace:^4.5.0-dev.7","@itwin/core-common":"workspace:^4.5.0-dev.7","@itwin/core-geometry":"workspace:^4.5.0-dev.7","@itwin/core-orbitgt":"workspace:^4.5.0-dev.7","@itwin/core-quantity":"workspace:^4.5.0-dev.7"},"//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"}}');
|
|
292648
292853
|
|
|
292649
292854
|
/***/ })
|
|
292650
292855
|
|