@itwin/rpcinterface-full-stack-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 +872 -667
- 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 +13 -13
|
@@ -30890,15 +30890,12 @@ class Logger {
|
|
|
30890
30890
|
const stack = Logger.logExceptionCallstacks ? `\n${_BentleyError__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorStack(err)}` : "";
|
|
30891
30891
|
return _BentleyError__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorMessage(err) + stack;
|
|
30892
30892
|
}
|
|
30893
|
-
/** Log the specified exception. The special "ExceptionType" property will be added as metadata
|
|
30894
|
-
* in addition to any other metadata that may be supplied by the caller, unless the
|
|
30895
|
-
* metadata supplied by the caller already includes this property.
|
|
30893
|
+
/** Log the specified exception. The special "ExceptionType" property will be added as metadata.
|
|
30896
30894
|
* @param category The category of the message.
|
|
30897
30895
|
* @param err The exception object.
|
|
30898
30896
|
* @param log The logger output function to use - defaults to Logger.logError
|
|
30899
|
-
* @param metaData Optional data for the message
|
|
30900
30897
|
*/
|
|
30901
|
-
static logException(category, err, log = (_category, message) => Logger.logError(_category, message)) {
|
|
30898
|
+
static logException(category, err, log = (_category, message, metaData) => Logger.logError(_category, message, metaData)) {
|
|
30902
30899
|
log(category, Logger.getExceptionMessage(err), () => {
|
|
30903
30900
|
return { ..._BentleyError__WEBPACK_IMPORTED_MODULE_0__.BentleyError.getErrorMetadata(err), exceptionType: err.constructor.name };
|
|
30904
30901
|
});
|
|
@@ -40928,6 +40925,60 @@ class Frustum {
|
|
|
40928
40925
|
}
|
|
40929
40926
|
|
|
40930
40927
|
|
|
40928
|
+
/***/ }),
|
|
40929
|
+
|
|
40930
|
+
/***/ "../../core/common/lib/esm/GenericInstanceFilter.js":
|
|
40931
|
+
/*!**********************************************************!*\
|
|
40932
|
+
!*** ../../core/common/lib/esm/GenericInstanceFilter.js ***!
|
|
40933
|
+
\**********************************************************/
|
|
40934
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
40935
|
+
|
|
40936
|
+
"use strict";
|
|
40937
|
+
__webpack_require__.r(__webpack_exports__);
|
|
40938
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
40939
|
+
/* harmony export */ "GenericInstanceFilter": () => (/* binding */ GenericInstanceFilter),
|
|
40940
|
+
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* binding */ GenericInstanceFilterRuleValue)
|
|
40941
|
+
/* harmony export */ });
|
|
40942
|
+
/*---------------------------------------------------------------------------------------------
|
|
40943
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
40944
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
40945
|
+
*--------------------------------------------------------------------------------------------*/
|
|
40946
|
+
/** @packageDocumentation
|
|
40947
|
+
* @module Utils
|
|
40948
|
+
*/
|
|
40949
|
+
/** @beta */
|
|
40950
|
+
var GenericInstanceFilterRuleValue;
|
|
40951
|
+
(function (GenericInstanceFilterRuleValue) {
|
|
40952
|
+
/** Checks if supplied value is [[GenericInstanceFilterRuleValue.Point2d]] like. Returns `true` for `Point2d` and [[GenericInstanceFilterRuleValue.Point3d]]. */
|
|
40953
|
+
function isPoint2d(value) {
|
|
40954
|
+
return value.x !== undefined && value.y !== undefined;
|
|
40955
|
+
}
|
|
40956
|
+
GenericInstanceFilterRuleValue.isPoint2d = isPoint2d;
|
|
40957
|
+
/** Checks if supplied value is [[GenericInstanceFilterRuleValue.Point3d]] like. */
|
|
40958
|
+
function isPoint3d(value) {
|
|
40959
|
+
return isPoint2d(value) && value.z !== undefined;
|
|
40960
|
+
}
|
|
40961
|
+
GenericInstanceFilterRuleValue.isPoint3d = isPoint3d;
|
|
40962
|
+
/** Checks if supplied value is [[GenericInstanceFilterRuleValue.InstanceKey]] like. */
|
|
40963
|
+
function isInstanceKey(value) {
|
|
40964
|
+
return value !== undefined && value.className !== undefined;
|
|
40965
|
+
}
|
|
40966
|
+
GenericInstanceFilterRuleValue.isInstanceKey = isInstanceKey;
|
|
40967
|
+
})(GenericInstanceFilterRuleValue || (GenericInstanceFilterRuleValue = {}));
|
|
40968
|
+
/** @beta */
|
|
40969
|
+
var GenericInstanceFilter;
|
|
40970
|
+
(function (GenericInstanceFilter) {
|
|
40971
|
+
/**
|
|
40972
|
+
* Function that checks if supplied object is [[GenericInstanceFilterRuleGroup]].
|
|
40973
|
+
* @beta
|
|
40974
|
+
*/
|
|
40975
|
+
function isFilterRuleGroup(obj) {
|
|
40976
|
+
return obj.rules !== undefined;
|
|
40977
|
+
}
|
|
40978
|
+
GenericInstanceFilter.isFilterRuleGroup = isFilterRuleGroup;
|
|
40979
|
+
})(GenericInstanceFilter || (GenericInstanceFilter = {}));
|
|
40980
|
+
|
|
40981
|
+
|
|
40931
40982
|
/***/ }),
|
|
40932
40983
|
|
|
40933
40984
|
/***/ "../../core/common/lib/esm/GeoCoordinateServices.js":
|
|
@@ -48535,6 +48586,7 @@ SubCategoryOverride.defaults = new SubCategoryOverride({});
|
|
|
48535
48586
|
"use strict";
|
|
48536
48587
|
__webpack_require__.r(__webpack_exports__);
|
|
48537
48588
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
48589
|
+
/* harmony export */ "CesiumTerrainAssetId": () => (/* binding */ CesiumTerrainAssetId),
|
|
48538
48590
|
/* harmony export */ "TerrainHeightOriginMode": () => (/* binding */ TerrainHeightOriginMode),
|
|
48539
48591
|
/* harmony export */ "TerrainSettings": () => (/* binding */ TerrainSettings)
|
|
48540
48592
|
/* harmony export */ });
|
|
@@ -48545,6 +48597,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
48545
48597
|
/** @packageDocumentation
|
|
48546
48598
|
* @module DisplayStyles
|
|
48547
48599
|
*/
|
|
48600
|
+
/** Ids of [Cesium ION assets](https://cesium.com/platform/cesium-ion/content/) providing global terrain data.
|
|
48601
|
+
* These values are appropriate to use with [[TerrainSettings.dataSource]] when [[TerrainSettings.providerName]] is set to "CesiumWorldTerrain".
|
|
48602
|
+
* You may alternatively use the Id of any ION asset to which you have access.
|
|
48603
|
+
* @see [[TerrainSettings.fromCesiumIonAsset]] to create TerrainSettings that obtain terrain from a specified ION asset.
|
|
48604
|
+
* @public
|
|
48605
|
+
*/
|
|
48606
|
+
var CesiumTerrainAssetId;
|
|
48607
|
+
(function (CesiumTerrainAssetId) {
|
|
48608
|
+
/** Default [global 3d terrain](https://cesium.com/platform/cesium-ion/content/cesium-world-terrain/). */
|
|
48609
|
+
CesiumTerrainAssetId["Default"] = "1";
|
|
48610
|
+
/** Global 3d terrain that includes [bathymetry](https://cesium.com/platform/cesium-ion/content/cesium-world-bathymetry/) (seafloor) terrain. */
|
|
48611
|
+
CesiumTerrainAssetId["Bathymetry"] = "2426648";
|
|
48612
|
+
})(CesiumTerrainAssetId || (CesiumTerrainAssetId = {}));
|
|
48548
48613
|
/** Correction modes for terrain height
|
|
48549
48614
|
* @see [[TerrainProps]]
|
|
48550
48615
|
* @public
|
|
@@ -48570,11 +48635,24 @@ class TerrainSettings {
|
|
|
48570
48635
|
get nonLocatable() {
|
|
48571
48636
|
return this._nonLocatable;
|
|
48572
48637
|
}
|
|
48573
|
-
|
|
48574
|
-
|
|
48575
|
-
|
|
48576
|
-
|
|
48577
|
-
|
|
48638
|
+
/** @internal */
|
|
48639
|
+
constructor(providerNameOrProps, exaggeration, applyLighting, heightOrigin, heightOriginMode) {
|
|
48640
|
+
let providerName;
|
|
48641
|
+
let dataSource;
|
|
48642
|
+
let nonLocatable;
|
|
48643
|
+
if (typeof providerNameOrProps === "string") {
|
|
48644
|
+
providerName = providerNameOrProps;
|
|
48645
|
+
}
|
|
48646
|
+
else if (providerNameOrProps) {
|
|
48647
|
+
({ providerName, dataSource, exaggeration, applyLighting, heightOrigin, heightOriginMode, nonLocatable } = providerNameOrProps);
|
|
48648
|
+
}
|
|
48649
|
+
this.providerName = providerName ?? "CesiumWorldTerrain";
|
|
48650
|
+
this.dataSource = dataSource ?? "";
|
|
48651
|
+
this.exaggeration = Math.min(100, Math.max(0.1, exaggeration ?? 1.0));
|
|
48652
|
+
this.applyLighting = applyLighting ?? false;
|
|
48653
|
+
this.heightOrigin = heightOrigin ?? 0.0;
|
|
48654
|
+
if (true === nonLocatable)
|
|
48655
|
+
this._nonLocatable = true;
|
|
48578
48656
|
switch (heightOriginMode) {
|
|
48579
48657
|
case TerrainHeightOriginMode.Ground:
|
|
48580
48658
|
case TerrainHeightOriginMode.Geoid:
|
|
@@ -48586,18 +48664,24 @@ class TerrainSettings {
|
|
|
48586
48664
|
}
|
|
48587
48665
|
}
|
|
48588
48666
|
static fromJSON(json) {
|
|
48589
|
-
|
|
48590
|
-
|
|
48591
|
-
|
|
48592
|
-
|
|
48593
|
-
|
|
48594
|
-
|
|
48595
|
-
|
|
48667
|
+
return new TerrainSettings(json);
|
|
48668
|
+
}
|
|
48669
|
+
/** Create settings that obtain terrain from a [Cesium ION asset](https://cesium.com/platform/cesium-ion/content/) such as
|
|
48670
|
+
* one of those defined by [[CesiumTerrainAssetId]].
|
|
48671
|
+
* @note You must ensure your Cesium ION account has access to the specified asset.
|
|
48672
|
+
*/
|
|
48673
|
+
static fromCesiumIonAsset(assetId = CesiumTerrainAssetId.Default, options) {
|
|
48674
|
+
return TerrainSettings.fromJSON({
|
|
48675
|
+
...options,
|
|
48676
|
+
dataSource: assetId,
|
|
48677
|
+
});
|
|
48596
48678
|
}
|
|
48597
48679
|
toJSON() {
|
|
48598
48680
|
const props = { heightOriginMode: this.heightOriginMode };
|
|
48599
48681
|
if ("CesiumWorldTerrain" !== this.providerName)
|
|
48600
48682
|
props.providerName = this.providerName;
|
|
48683
|
+
if (this.dataSource)
|
|
48684
|
+
props.dataSource = this.dataSource;
|
|
48601
48685
|
if (1 !== this.exaggeration)
|
|
48602
48686
|
props.exaggeration = this.exaggeration;
|
|
48603
48687
|
if (this.nonLocatable)
|
|
@@ -48609,7 +48693,7 @@ class TerrainSettings {
|
|
|
48609
48693
|
return props;
|
|
48610
48694
|
}
|
|
48611
48695
|
equals(other) {
|
|
48612
|
-
return this.providerName === other.providerName && this.exaggeration === other.exaggeration && this.applyLighting === other.applyLighting
|
|
48696
|
+
return this.providerName === other.providerName && this.dataSource === other.dataSource && this.exaggeration === other.exaggeration && this.applyLighting === other.applyLighting
|
|
48613
48697
|
&& this.heightOrigin === other.heightOrigin && this.heightOriginMode === other.heightOriginMode && this.nonLocatable === other.nonLocatable;
|
|
48614
48698
|
}
|
|
48615
48699
|
/** Returns true if these settings are equivalent to the supplied JSON settings. */
|
|
@@ -48625,6 +48709,7 @@ class TerrainSettings {
|
|
|
48625
48709
|
return this;
|
|
48626
48710
|
const props = {
|
|
48627
48711
|
providerName: changedProps.providerName ?? this.providerName,
|
|
48712
|
+
dataSource: changedProps.dataSource ?? this.dataSource,
|
|
48628
48713
|
exaggeration: changedProps.exaggeration ?? this.exaggeration,
|
|
48629
48714
|
nonLocatable: changedProps.nonLocatable ?? this.nonLocatable,
|
|
48630
48715
|
applyLighting: changedProps.applyLighting ?? this.applyLighting,
|
|
@@ -50610,48 +50695,49 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
50610
50695
|
"use strict";
|
|
50611
50696
|
__webpack_require__.r(__webpack_exports__);
|
|
50612
50697
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
50613
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
50614
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
50615
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
50698
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_36__.AdditionalTransform),
|
|
50699
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__.AffineTransform),
|
|
50700
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.AmbientLight),
|
|
50616
50701
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
50617
50702
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
50618
50703
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
50619
50704
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
50620
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
50705
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_37__.AreaPattern),
|
|
50621
50706
|
/* harmony export */ "Atmosphere": () => (/* reexport safe */ _Atmosphere__WEBPACK_IMPORTED_MODULE_2__.Atmosphere),
|
|
50622
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
50623
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
50624
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
50625
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
50626
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
50707
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_143__.B3dmHeader),
|
|
50708
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.BRepEntity),
|
|
50709
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__.BRepGeometryOperation),
|
|
50710
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BackendError),
|
|
50711
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.BackgroundFill),
|
|
50627
50712
|
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapProvider),
|
|
50628
50713
|
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_5__.BackgroundMapSettings),
|
|
50629
50714
|
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapType),
|
|
50630
50715
|
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_6__.Base64EncodedString),
|
|
50631
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
50632
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
50716
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_73__.BaseLayerSettings),
|
|
50717
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.BaseMapLayerSettings),
|
|
50633
50718
|
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.BatchType),
|
|
50634
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
50635
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
50636
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
50637
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
50638
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
50719
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_136__.BentleyCloudRpcConfiguration),
|
|
50720
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_136__.BentleyCloudRpcManager),
|
|
50721
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_137__.BentleyCloudRpcProtocol),
|
|
50722
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BentleyError),
|
|
50723
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BentleyStatus),
|
|
50639
50724
|
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_13__.BisCodeSpec),
|
|
50640
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
50641
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
50725
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.BlobOptionsBuilder),
|
|
50726
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_38__.BoundingSphere),
|
|
50642
50727
|
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.BriefcaseIdValue),
|
|
50643
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
50644
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
50645
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
50728
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.BriefcaseStatus),
|
|
50729
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.CURRENT_INVOCATION),
|
|
50730
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.CURRENT_REQUEST),
|
|
50646
50731
|
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_8__.Camera),
|
|
50647
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
50648
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
50649
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
50732
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__.Carto2DDegrees),
|
|
50733
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_39__.Cartographic),
|
|
50734
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_39__.CartographicRange),
|
|
50735
|
+
/* harmony export */ "CesiumTerrainAssetId": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__.CesiumTerrainAssetId),
|
|
50650
50736
|
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ChangeOpCode),
|
|
50651
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
50737
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ChangeSetStatus),
|
|
50652
50738
|
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ChangedValueState),
|
|
50653
50739
|
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_11__.ChangesetType),
|
|
50654
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
50740
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ChannelConstraintError),
|
|
50655
50741
|
/* harmony export */ "ClipIntersectionStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_12__.ClipIntersectionStyle),
|
|
50656
50742
|
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_12__.ClipStyle),
|
|
50657
50743
|
/* harmony export */ "Code": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_13__.Code),
|
|
@@ -50661,38 +50747,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
50661
50747
|
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_15__.ColorDef),
|
|
50662
50748
|
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.ColorIndex),
|
|
50663
50749
|
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_16__.CommonLoggerCategory),
|
|
50664
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
50750
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_144__.CompositeTileHeader),
|
|
50665
50751
|
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_27__.ConcreteEntityTypes),
|
|
50666
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
50667
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
50752
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.ContentFlags),
|
|
50753
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.ContentIdProvider),
|
|
50668
50754
|
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.ContextRealityModel),
|
|
50669
50755
|
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.ContextRealityModelProps),
|
|
50670
50756
|
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.ContextRealityModels),
|
|
50671
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
50757
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.CurrentImdlVersion),
|
|
50672
50758
|
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_12__.CutStyle),
|
|
50673
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
50674
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
50675
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
50676
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
50677
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
50678
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
50679
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
50680
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
50681
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
50759
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbQueryError),
|
|
50760
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbRequestKind),
|
|
50761
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbResponseKind),
|
|
50762
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbResponseStatus),
|
|
50763
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.DbResult),
|
|
50764
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.DbValueFormat),
|
|
50765
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_88__.DefaultSupportedTypes),
|
|
50766
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_129__.DevToolsRpcInterface),
|
|
50767
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_129__.DevToolsStatsOptions),
|
|
50682
50768
|
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_18__.DisplayStyle3dSettings),
|
|
50683
50769
|
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_18__.DisplayStyleSettings),
|
|
50684
50770
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.DomainOptions),
|
|
50685
50771
|
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ECJsNames),
|
|
50686
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
50772
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_82__.ECSqlReader),
|
|
50687
50773
|
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ECSqlSystemProperty),
|
|
50688
50774
|
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_21__.ECSqlValueType),
|
|
50689
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
50690
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
50691
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
50692
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
50693
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
50694
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
50695
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
50775
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Easing),
|
|
50776
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_62__.EcefLocation),
|
|
50777
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.EdgeArgs),
|
|
50778
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__.ElementGeometry),
|
|
50779
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_84__.ElementGeometryChange),
|
|
50780
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__.ElementGeometryOpcode),
|
|
50781
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_72__.EmptyLocalization),
|
|
50696
50782
|
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.EntityMetaData),
|
|
50697
50783
|
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_27__.EntityReferenceSet),
|
|
50698
50784
|
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_28__.Environment),
|
|
@@ -50705,282 +50791,284 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
50705
50791
|
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_25__.FeatureOverrideType),
|
|
50706
50792
|
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_30__.FeatureOverrides),
|
|
50707
50793
|
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.FeatureTable),
|
|
50708
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
50709
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
50710
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
50794
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.FeatureTableHeader),
|
|
50795
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.FillDisplay),
|
|
50796
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_55__.FillFlags),
|
|
50711
50797
|
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_32__.FontMap),
|
|
50712
50798
|
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_32__.FontType),
|
|
50713
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
50799
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.FresnelSettings),
|
|
50714
50800
|
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.Frustum),
|
|
50715
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
50716
|
-
/* harmony export */ "
|
|
50717
|
-
/* harmony export */ "
|
|
50718
|
-
/* harmony export */ "
|
|
50719
|
-
/* harmony export */ "
|
|
50720
|
-
/* harmony export */ "
|
|
50721
|
-
/* harmony export */ "
|
|
50722
|
-
/* harmony export */ "
|
|
50723
|
-
/* harmony export */ "
|
|
50724
|
-
/* harmony export */ "
|
|
50725
|
-
/* harmony export */ "
|
|
50726
|
-
/* harmony export */ "
|
|
50727
|
-
/* harmony export */ "
|
|
50728
|
-
/* harmony export */ "
|
|
50729
|
-
/* harmony export */ "
|
|
50801
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_42__.FrustumPlanes),
|
|
50802
|
+
/* harmony export */ "GenericInstanceFilter": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_34__.GenericInstanceFilter),
|
|
50803
|
+
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_34__.GenericInstanceFilterRuleValue),
|
|
50804
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_35__.GeoCoordStatus),
|
|
50805
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeocentricTransform),
|
|
50806
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeodeticDatum),
|
|
50807
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_44__.GeodeticEllipsoid),
|
|
50808
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeodeticTransform),
|
|
50809
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GeodeticTransformPath),
|
|
50810
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.GeographicCRS),
|
|
50811
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.GeometryClass),
|
|
50812
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_52__.GeometryParams),
|
|
50813
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.GeometryStreamBuilder),
|
|
50814
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.GeometryStreamFlags),
|
|
50815
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__.GeometryStreamIterator),
|
|
50816
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_53__.GeometrySummaryVerbosity),
|
|
50817
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__.GlbHeader),
|
|
50730
50818
|
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_5__.GlobeMode),
|
|
50731
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
50732
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
50733
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
50734
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
50735
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
50736
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
50737
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
50738
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
50739
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
50740
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
50741
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
50742
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
50743
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
50744
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
50745
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
50746
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
50747
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
50748
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
50749
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
50750
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
50751
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
50752
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
50753
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
50754
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
50755
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
50756
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
50757
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
50758
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
50759
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
50760
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
50761
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
50762
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
50763
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
50764
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
50765
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
50766
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
50767
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
50768
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
50769
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
50770
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
50771
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
50772
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
50773
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
50774
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
50775
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
50776
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
50777
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
50778
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
50779
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
50780
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
50781
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
50782
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
50783
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
50784
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
50785
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
50786
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
50787
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
50788
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
50819
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__.GltfV2ChunkTypes),
|
|
50820
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__.GltfVersions),
|
|
50821
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_54__.Gradient),
|
|
50822
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_55__.GraphicParams),
|
|
50823
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GridFileDefinition),
|
|
50824
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.GridFileTransform),
|
|
50825
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_112__.GridOrientationType),
|
|
50826
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_56__.GroundPlane),
|
|
50827
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_59__.HSLColor),
|
|
50828
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_60__.HSVColor),
|
|
50829
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_60__.HSVConstants),
|
|
50830
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_36__.Helmert2DWithZOffset),
|
|
50831
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.HemisphereLights),
|
|
50832
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_57__.HiddenLine),
|
|
50833
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_58__.Hilite),
|
|
50834
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.HorizontalCRS),
|
|
50835
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.HorizontalCRSExtent),
|
|
50836
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_147__.I3dmHeader),
|
|
50837
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_62__.IModel),
|
|
50838
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.IModelError),
|
|
50839
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_130__.IModelNotFoundResponse),
|
|
50840
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_130__.IModelReadRpcInterface),
|
|
50841
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.IModelStatus),
|
|
50842
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_131__.IModelTileRpcInterface),
|
|
50843
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_64__.IModelVersion),
|
|
50844
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.INSTANCE),
|
|
50845
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageBuffer),
|
|
50846
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageBufferFormat),
|
|
50847
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_46__.ImageGraphic),
|
|
50848
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_46__.ImageGraphicCorners),
|
|
50849
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.ImageMapLayerSettings),
|
|
50850
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageSource),
|
|
50851
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.ImageSourceFormat),
|
|
50852
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.ImdlFlags),
|
|
50853
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.ImdlHeader),
|
|
50854
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__.InternetConnectivityStatus),
|
|
50855
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Interpolation),
|
|
50856
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_68__.IpcSession),
|
|
50857
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocket),
|
|
50858
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketBackend),
|
|
50859
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketFrontend),
|
|
50860
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketMessage),
|
|
50861
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__.IpcWebSocketMessageType),
|
|
50862
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_67__.IpcWebSocketTransport),
|
|
50863
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.LightSettings),
|
|
50864
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_71__.LinePixels),
|
|
50865
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_47__.LineStyle),
|
|
50866
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_73__.MapImagerySettings),
|
|
50867
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.MapLayerSettings),
|
|
50868
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.MapSubLayerSettings),
|
|
50869
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__.MarshalingBinaryMarker),
|
|
50870
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_75__.MassPropertiesOperation),
|
|
50871
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshEdge),
|
|
50872
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshEdges),
|
|
50873
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshPolyline),
|
|
50874
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.MeshPolylineList),
|
|
50875
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_77__.ModelClipGroup),
|
|
50876
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_77__.ModelClipGroups),
|
|
50789
50877
|
/* harmony export */ "ModelFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.ModelFeature),
|
|
50790
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
50791
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
50878
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_84__.ModelGeometryChanges),
|
|
50879
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__.ModelMapLayerSettings),
|
|
50792
50880
|
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_18__.MonochromeMode),
|
|
50793
50881
|
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.MultiModelPackedFeatureTable),
|
|
50794
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
50882
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.NoContentError),
|
|
50795
50883
|
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_29__.NonUniformColor),
|
|
50796
|
-
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */
|
|
50884
|
+
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_76__.NormalMapFlags),
|
|
50797
50885
|
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.Npc),
|
|
50798
50886
|
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.NpcCenter),
|
|
50799
50887
|
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_33__.NpcCorners),
|
|
50800
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
50801
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
50802
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
50803
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
50804
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
50888
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.OPERATION),
|
|
50889
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_80__.OctEncodedNormal),
|
|
50890
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_80__.OctEncodedNormalPair),
|
|
50891
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__.OverriddenBy),
|
|
50892
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.POLICY),
|
|
50805
50893
|
/* harmony export */ "PackedFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeature),
|
|
50806
50894
|
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeatureModelTable),
|
|
50807
50895
|
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_31__.PackedFeatureTable),
|
|
50808
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
50809
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
50810
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
50811
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
50812
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
50813
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
50814
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
50815
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
50816
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
50817
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
50818
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
50896
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_48__.Placement2d),
|
|
50897
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_48__.Placement3d),
|
|
50898
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_85__.PlanProjectionSettings),
|
|
50899
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__.PlanarClipMaskMode),
|
|
50900
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__.PlanarClipMaskPriority),
|
|
50901
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__.PlanarClipMaskSettings),
|
|
50902
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_149__.PntsHeader),
|
|
50903
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_89__.PointCloudDisplaySettings),
|
|
50904
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.PolylineEdgeArgs),
|
|
50905
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.PolylineTypeFlags),
|
|
50906
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.PositionalVectorTransform),
|
|
50819
50907
|
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PrimitiveTypeCode),
|
|
50820
50908
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.ProfileOptions),
|
|
50821
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
50909
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__.Projection),
|
|
50822
50910
|
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_26__.PropertyMetaData),
|
|
50823
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
50824
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
50825
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
50826
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
50827
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
50828
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
50829
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
50830
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
50831
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
50832
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
50833
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
50834
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
50835
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
50836
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
50837
|
-
/* harmony export */ "QueryParamType": () => (/* reexport safe */
|
|
50838
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
50839
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
50911
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_82__.PropertyMetaDataMap),
|
|
50912
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QParams2d),
|
|
50913
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QParams3d),
|
|
50914
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2d),
|
|
50915
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2dBuffer),
|
|
50916
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2dBufferBuilder),
|
|
50917
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint2dList),
|
|
50918
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3d),
|
|
50919
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3dBuffer),
|
|
50920
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3dBufferBuilder),
|
|
50921
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.QPoint3dList),
|
|
50922
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_87__.Quantization),
|
|
50923
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryBinder),
|
|
50924
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryOptionsBuilder),
|
|
50925
|
+
/* harmony export */ "QueryParamType": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryParamType),
|
|
50926
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__.QueryRowFormat),
|
|
50927
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.REGISTRY),
|
|
50840
50928
|
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.Rank),
|
|
50841
50929
|
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.RealityDataFormat),
|
|
50842
50930
|
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.RealityDataProvider),
|
|
50843
50931
|
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_17__.RealityDataSourceKey),
|
|
50844
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
50932
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_89__.RealityModelDisplaySettings),
|
|
50845
50933
|
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.RelatedElement),
|
|
50846
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
50847
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
50848
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
50849
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
50850
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
50851
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
50852
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
50853
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
50854
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
50855
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
50856
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
50857
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
50858
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
50859
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
50860
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
50861
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
50862
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
50863
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
50864
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
50865
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
50866
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
50867
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
50868
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
50869
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
50870
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
50871
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
50872
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
50873
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
50874
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
50875
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
50876
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
50877
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
50878
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
50879
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
50880
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
50881
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
50882
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
50883
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
50884
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
50885
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
50886
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
50887
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
50888
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
50934
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_91__.RenderMaterial),
|
|
50935
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_113__.RenderMode),
|
|
50936
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_92__.RenderSchedule),
|
|
50937
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_93__.RenderTexture),
|
|
50938
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.ResponseLike),
|
|
50939
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_94__.RgbColor),
|
|
50940
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcConfiguration),
|
|
50941
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcContentType),
|
|
50942
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcControlChannel),
|
|
50943
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcControlResponse),
|
|
50944
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcDefaultConfiguration),
|
|
50945
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcDirectProtocol),
|
|
50946
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcDirectRequest),
|
|
50947
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcEndpoint),
|
|
50948
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_135__.RpcInterface),
|
|
50949
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_117__.RpcInvocation),
|
|
50950
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_95__.RpcManager),
|
|
50951
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__.RpcMarshaling),
|
|
50952
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_139__.RpcMultipart),
|
|
50953
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcNotFoundResponse),
|
|
50954
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_138__.RpcOpenAPIDescription),
|
|
50955
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_120__.RpcOperation),
|
|
50956
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_120__.RpcOperationPolicy),
|
|
50957
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_121__.RpcPendingQueue),
|
|
50958
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__.RpcPendingResponse),
|
|
50959
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__.RpcProtocol),
|
|
50960
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcProtocolEvent),
|
|
50961
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__.RpcProtocolVersion),
|
|
50962
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushChannel),
|
|
50963
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushConnection),
|
|
50964
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushService),
|
|
50965
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushSubscription),
|
|
50966
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__.RpcPushTransport),
|
|
50967
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__.RpcRegistry),
|
|
50968
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.RpcRequest),
|
|
50969
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcRequestEvent),
|
|
50970
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__.RpcRequestFulfillment),
|
|
50971
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcRequestStatus),
|
|
50972
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.RpcResponseCacheControl),
|
|
50973
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__.RpcRoutingMap),
|
|
50974
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_126__.RpcRoutingToken),
|
|
50975
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__.RpcSerializedValue),
|
|
50976
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_118__.RpcSessionInvocation),
|
|
50889
50977
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.SchemaState),
|
|
50890
50978
|
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.SectionType),
|
|
50891
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
50892
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
50893
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
50894
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
50895
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
50896
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
50897
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
50898
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
50899
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
50900
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
50901
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
50902
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
50903
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
50904
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
50905
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
50906
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
50907
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
50908
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
50979
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ServerError),
|
|
50980
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_63__.ServerTimeoutError),
|
|
50981
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_90__.SilhouetteEdgeArgs),
|
|
50982
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyBox),
|
|
50983
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyBoxImageType),
|
|
50984
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyCube),
|
|
50985
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkyGradient),
|
|
50986
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_97__.SkySphere),
|
|
50987
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_132__.SnapshotIModelRpcInterface),
|
|
50988
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_70__.SolarLight),
|
|
50989
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_100__.SolarShadowSettings),
|
|
50990
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifier),
|
|
50991
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifierFlags),
|
|
50992
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifierInsideDisplay),
|
|
50993
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifierOutsideDisplay),
|
|
50994
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__.SpatialClassifiers),
|
|
50995
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_102__.SubCategoryAppearance),
|
|
50996
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_103__.SubCategoryOverride),
|
|
50909
50997
|
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_7__.SyncMode),
|
|
50910
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
50911
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
50912
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
50913
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
50914
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
50915
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
50916
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
50917
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
50918
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
50919
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
50920
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
50921
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
50922
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
50923
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
50924
|
-
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */
|
|
50925
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
50926
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
50927
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
50928
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
50929
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
50930
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
50931
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
50932
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
50933
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
50934
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
50935
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
50998
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__.TerrainHeightOriginMode),
|
|
50999
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__.TerrainSettings),
|
|
51000
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_133__.TestRpcManager),
|
|
51001
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_50__.TextString),
|
|
51002
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_76__.TextureMapUnits),
|
|
51003
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_105__.TextureMapping),
|
|
51004
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_106__.TextureTransparency),
|
|
51005
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplay),
|
|
51006
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplayMode),
|
|
51007
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplaySensor),
|
|
51008
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicDisplaySensorSettings),
|
|
51009
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientColorScheme),
|
|
51010
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientMode),
|
|
51011
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientSettings),
|
|
51012
|
+
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__.ThematicGradientTransparencyMode),
|
|
51013
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_109__.TileContentSource),
|
|
51014
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileFormat),
|
|
51015
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileHeader),
|
|
51016
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.TileMetadataReader),
|
|
51017
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.TileOptions),
|
|
51018
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileReadError),
|
|
51019
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.TileReadStatus),
|
|
51020
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.TreeFlags),
|
|
51021
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Tween),
|
|
51022
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_110__.Tweens),
|
|
51023
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_111__.TxnAction),
|
|
50936
51024
|
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.TypeDefinition),
|
|
50937
51025
|
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_9__.TypeOfChange),
|
|
50938
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
50939
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
50940
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
50941
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
50942
|
-
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */
|
|
50943
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
50944
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
50945
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
50946
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
50947
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
50948
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
50949
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
50950
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
50951
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
50952
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
50953
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
50954
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
50955
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
50956
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
50957
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
50958
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
50959
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
50960
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
50961
|
-
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */
|
|
50962
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
50963
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
50964
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
50965
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
50966
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
50967
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
50968
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
50969
|
-
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */
|
|
50970
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
51026
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__.VerticalCRS),
|
|
51027
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_112__.ViewDetails),
|
|
51028
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_112__.ViewDetails3d),
|
|
51029
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_113__.ViewFlags),
|
|
51030
|
+
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_114__.ViewStoreRpc),
|
|
51031
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__.WEB_RPC_CONSTANTS),
|
|
51032
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_142__.WebAppRpcLogging),
|
|
51033
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_140__.WebAppRpcProtocol),
|
|
51034
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_141__.WebAppRpcRequest),
|
|
51035
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__.WhiteOnWhiteReversalSettings),
|
|
51036
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_134__.WipRpcInterface),
|
|
51037
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__.XyzRotation),
|
|
51038
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.aggregateLoad),
|
|
51039
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.bisectTileRange2d),
|
|
51040
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.bisectTileRange3d),
|
|
51041
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSolarAngles),
|
|
51042
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSolarDirection),
|
|
51043
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSolarDirectionFromAngles),
|
|
51044
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__.calculateSunriseOrSunset),
|
|
51045
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.compareIModelTileTreeIds),
|
|
51046
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.computeChildTileProps),
|
|
51047
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.computeChildTileRanges),
|
|
51048
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.computeTileChordTolerance),
|
|
51049
|
+
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.decodeTileContentDescription),
|
|
51050
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.defaultTileOptions),
|
|
51051
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.getMaximumMajorTileFormatVersion),
|
|
51052
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_69__.getPullChangesIpcChannel),
|
|
51053
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_109__.getTileObjectReference),
|
|
51054
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.iModelTileTreeIdToString),
|
|
51055
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_65__.iTwinChannel),
|
|
51056
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__.initializeRpcRequest),
|
|
51057
|
+
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_69__.ipcAppChannels),
|
|
51058
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.isKnownTileFormat),
|
|
50971
51059
|
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.isPlacement2dProps),
|
|
50972
51060
|
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_24__.isPlacement3dProps),
|
|
50973
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
50974
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
50975
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
50976
|
-
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */
|
|
50977
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
50978
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
50979
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
51061
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.isPowerOfTwo),
|
|
51062
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.isValidImageSourceFormat),
|
|
51063
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_35__.mapToGeoServiceStatus),
|
|
51064
|
+
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__.nativeAppIpcStrings),
|
|
51065
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_61__.nextHighestPowerOfTwo),
|
|
51066
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.nextPoint3d64FromByteStream),
|
|
51067
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.parseTileTreeIdAndContentId),
|
|
50980
51068
|
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_23__.readElementMeshes),
|
|
50981
|
-
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */
|
|
50982
|
-
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */
|
|
50983
|
-
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */
|
|
51069
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__.readTileContentDescription),
|
|
51070
|
+
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_68__.rpcOverIpcStrings),
|
|
51071
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__.tileFormatFromNumber)
|
|
50984
51072
|
/* harmony export */ });
|
|
50985
51073
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
50986
51074
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -51016,125 +51104,126 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51016
51104
|
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
51017
51105
|
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
51018
51106
|
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
51019
|
-
/* harmony import */ var
|
|
51020
|
-
/* harmony import */ var
|
|
51021
|
-
/* harmony import */ var
|
|
51022
|
-
/* harmony import */ var
|
|
51023
|
-
/* harmony import */ var
|
|
51024
|
-
/* harmony import */ var
|
|
51025
|
-
/* harmony import */ var
|
|
51026
|
-
/* harmony import */ var
|
|
51027
|
-
/* harmony import */ var
|
|
51028
|
-
/* harmony import */ var
|
|
51029
|
-
/* harmony import */ var
|
|
51030
|
-
/* harmony import */ var
|
|
51031
|
-
/* harmony import */ var
|
|
51032
|
-
/* harmony import */ var
|
|
51033
|
-
/* harmony import */ var
|
|
51034
|
-
/* harmony import */ var
|
|
51035
|
-
/* harmony import */ var
|
|
51036
|
-
/* harmony import */ var
|
|
51037
|
-
/* harmony import */ var
|
|
51038
|
-
/* harmony import */ var
|
|
51039
|
-
/* harmony import */ var
|
|
51040
|
-
/* harmony import */ var
|
|
51041
|
-
/* harmony import */ var
|
|
51042
|
-
/* harmony import */ var
|
|
51043
|
-
/* harmony import */ var
|
|
51044
|
-
/* harmony import */ var
|
|
51045
|
-
/* harmony import */ var
|
|
51046
|
-
/* harmony import */ var
|
|
51047
|
-
/* harmony import */ var
|
|
51048
|
-
/* harmony import */ var
|
|
51049
|
-
/* harmony import */ var
|
|
51050
|
-
/* harmony import */ var
|
|
51051
|
-
/* harmony import */ var
|
|
51052
|
-
/* harmony import */ var
|
|
51053
|
-
/* harmony import */ var
|
|
51054
|
-
/* harmony import */ var
|
|
51055
|
-
/* harmony import */ var
|
|
51056
|
-
/* harmony import */ var
|
|
51057
|
-
/* harmony import */ var
|
|
51058
|
-
/* harmony import */ var
|
|
51059
|
-
/* harmony import */ var
|
|
51060
|
-
/* harmony import */ var
|
|
51061
|
-
/* harmony import */ var
|
|
51062
|
-
/* harmony import */ var
|
|
51063
|
-
/* harmony import */ var
|
|
51064
|
-
/* harmony import */ var
|
|
51065
|
-
/* harmony import */ var
|
|
51066
|
-
/* harmony import */ var
|
|
51067
|
-
/* harmony import */ var
|
|
51068
|
-
/* harmony import */ var
|
|
51069
|
-
/* harmony import */ var
|
|
51070
|
-
/* harmony import */ var
|
|
51071
|
-
/* harmony import */ var
|
|
51072
|
-
/* harmony import */ var
|
|
51073
|
-
/* harmony import */ var
|
|
51074
|
-
/* harmony import */ var
|
|
51075
|
-
/* harmony import */ var
|
|
51076
|
-
/* harmony import */ var
|
|
51077
|
-
/* harmony import */ var
|
|
51078
|
-
/* harmony import */ var
|
|
51079
|
-
/* harmony import */ var
|
|
51080
|
-
/* harmony import */ var
|
|
51081
|
-
/* harmony import */ var
|
|
51082
|
-
/* harmony import */ var
|
|
51083
|
-
/* harmony import */ var
|
|
51084
|
-
/* harmony import */ var
|
|
51085
|
-
/* harmony import */ var
|
|
51086
|
-
/* harmony import */ var
|
|
51087
|
-
/* harmony import */ var
|
|
51088
|
-
/* harmony import */ var
|
|
51089
|
-
/* harmony import */ var
|
|
51090
|
-
/* harmony import */ var
|
|
51091
|
-
/* harmony import */ var
|
|
51092
|
-
/* harmony import */ var
|
|
51093
|
-
/* harmony import */ var
|
|
51094
|
-
/* harmony import */ var
|
|
51095
|
-
/* harmony import */ var
|
|
51096
|
-
/* harmony import */ var
|
|
51097
|
-
/* harmony import */ var
|
|
51098
|
-
/* harmony import */ var
|
|
51099
|
-
/* harmony import */ var
|
|
51100
|
-
/* harmony import */ var
|
|
51101
|
-
/* harmony import */ var
|
|
51102
|
-
/* harmony import */ var
|
|
51103
|
-
/* harmony import */ var
|
|
51104
|
-
/* harmony import */ var
|
|
51105
|
-
/* harmony import */ var
|
|
51106
|
-
/* harmony import */ var
|
|
51107
|
-
/* harmony import */ var
|
|
51108
|
-
/* harmony import */ var
|
|
51109
|
-
/* harmony import */ var
|
|
51110
|
-
/* harmony import */ var
|
|
51111
|
-
/* harmony import */ var
|
|
51112
|
-
/* harmony import */ var
|
|
51113
|
-
/* harmony import */ var
|
|
51114
|
-
/* harmony import */ var
|
|
51115
|
-
/* harmony import */ var
|
|
51116
|
-
/* harmony import */ var
|
|
51117
|
-
/* harmony import */ var
|
|
51118
|
-
/* harmony import */ var
|
|
51119
|
-
/* harmony import */ var
|
|
51120
|
-
/* harmony import */ var
|
|
51121
|
-
/* harmony import */ var
|
|
51122
|
-
/* harmony import */ var
|
|
51123
|
-
/* harmony import */ var
|
|
51124
|
-
/* harmony import */ var
|
|
51125
|
-
/* harmony import */ var
|
|
51126
|
-
/* harmony import */ var
|
|
51127
|
-
/* harmony import */ var
|
|
51128
|
-
/* harmony import */ var
|
|
51129
|
-
/* harmony import */ var
|
|
51130
|
-
/* harmony import */ var
|
|
51131
|
-
/* harmony import */ var
|
|
51132
|
-
/* harmony import */ var
|
|
51133
|
-
/* harmony import */ var
|
|
51134
|
-
/* harmony import */ var
|
|
51135
|
-
/* harmony import */ var
|
|
51136
|
-
/* harmony import */ var
|
|
51137
|
-
/* harmony import */ var
|
|
51107
|
+
/* harmony import */ var _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./GenericInstanceFilter */ "../../core/common/lib/esm/GenericInstanceFilter.js");
|
|
51108
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
51109
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
51110
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
51111
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
51112
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
51113
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
51114
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
51115
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
51116
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
51117
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
51118
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
51119
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
51120
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
51121
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
51122
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
51123
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
51124
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
51125
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
51126
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
51127
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
51128
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
51129
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
51130
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
51131
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
51132
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
51133
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
51134
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
51135
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
51136
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
51137
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
51138
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
51139
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
51140
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
51141
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
51142
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
51143
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
51144
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
51145
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
51146
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
51147
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
51148
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
51149
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
51150
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
51151
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
51152
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
51153
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
51154
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
51155
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
51156
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
51157
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
51158
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
51159
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
51160
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
51161
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
51162
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
51163
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
51164
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
51165
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
51166
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
51167
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
51168
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
51169
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
51170
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
51171
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
51172
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
51173
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
51174
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
51175
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
51176
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
51177
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
51178
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
51179
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
51180
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
51181
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
51182
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
51183
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
51184
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
51185
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
51186
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
51187
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
51188
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
51189
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
51190
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
51191
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
51192
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
51193
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
51194
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
51195
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
51196
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
51197
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
51198
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
51199
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
51200
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
51201
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
51202
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
51203
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
51204
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
51205
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
51206
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
51207
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
51208
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
51209
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
51210
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
51211
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
51212
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
51213
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
51214
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
51215
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
51216
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
51217
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
51218
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
51219
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
51220
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
51221
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
51222
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
51223
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
51224
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
51225
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
51226
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
51138
51227
|
/*---------------------------------------------------------------------------------------------
|
|
51139
51228
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
51140
51229
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -51290,6 +51379,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51290
51379
|
|
|
51291
51380
|
|
|
51292
51381
|
|
|
51382
|
+
|
|
51293
51383
|
|
|
51294
51384
|
|
|
51295
51385
|
/** @docs-package-description
|
|
@@ -61076,7 +61166,7 @@ var RpcResponseCacheControl;
|
|
|
61076
61166
|
})(RpcResponseCacheControl || (RpcResponseCacheControl = {}));
|
|
61077
61167
|
/** RPC protocol event types.
|
|
61078
61168
|
* @public
|
|
61079
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
61169
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
61080
61170
|
*/
|
|
61081
61171
|
var RpcProtocolEvent;
|
|
61082
61172
|
(function (RpcProtocolEvent) {
|
|
@@ -61096,7 +61186,7 @@ var RpcProtocolEvent;
|
|
|
61096
61186
|
})(RpcProtocolEvent || (RpcProtocolEvent = {}));
|
|
61097
61187
|
/** The status of an RPC operation request.
|
|
61098
61188
|
* @public
|
|
61099
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
61189
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
61100
61190
|
*/
|
|
61101
61191
|
var RpcRequestStatus;
|
|
61102
61192
|
(function (RpcRequestStatus) {
|
|
@@ -61116,7 +61206,7 @@ var RpcRequestStatus;
|
|
|
61116
61206
|
RpcRequestStatus[RpcRequestStatus["RequestTimeout"] = 13] = "RequestTimeout";
|
|
61117
61207
|
RpcRequestStatus[RpcRequestStatus["TooManyRequests"] = 14] = "TooManyRequests";
|
|
61118
61208
|
})(RpcRequestStatus || (RpcRequestStatus = {}));
|
|
61119
|
-
/** @public @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
61209
|
+
/** @public @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future. */
|
|
61120
61210
|
(function (RpcRequestStatus) {
|
|
61121
61211
|
function isTransientError(status) {
|
|
61122
61212
|
return status === RpcRequestStatus.BadGateway || status === RpcRequestStatus.ServiceUnavailable || status === RpcRequestStatus.GatewayTimeout
|
|
@@ -61126,7 +61216,7 @@ var RpcRequestStatus;
|
|
|
61126
61216
|
})(RpcRequestStatus || (RpcRequestStatus = {}));
|
|
61127
61217
|
/** RPC request event types.
|
|
61128
61218
|
* @public
|
|
61129
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
61219
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
61130
61220
|
*/
|
|
61131
61221
|
var RpcRequestEvent;
|
|
61132
61222
|
(function (RpcRequestEvent) {
|
|
@@ -61136,7 +61226,7 @@ var RpcRequestEvent;
|
|
|
61136
61226
|
})(RpcRequestEvent || (RpcRequestEvent = {}));
|
|
61137
61227
|
/** RPC content types.
|
|
61138
61228
|
* @public
|
|
61139
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
61229
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
61140
61230
|
*/
|
|
61141
61231
|
var RpcContentType;
|
|
61142
61232
|
(function (RpcContentType) {
|
|
@@ -61148,7 +61238,7 @@ var RpcContentType;
|
|
|
61148
61238
|
})(RpcContentType || (RpcContentType = {}));
|
|
61149
61239
|
/** Endpoints for RPC protocols.
|
|
61150
61240
|
* @public
|
|
61151
|
-
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in
|
|
61241
|
+
* @deprecated in 3.6. The RPC system will be significantly refactored (or replaced) in the future.
|
|
61152
61242
|
*/
|
|
61153
61243
|
var RpcEndpoint;
|
|
61154
61244
|
(function (RpcEndpoint) {
|
|
@@ -90797,7 +90887,7 @@ class RealityDataSourceCesiumIonAssetImpl {
|
|
|
90797
90887
|
// The following is only if the reality data is not stored on PW Context Share.
|
|
90798
90888
|
const cesiumAsset = _tile_internal__WEBPACK_IMPORTED_MODULE_3__.CesiumIonAssetProvider.parseCesiumUrl(url);
|
|
90799
90889
|
if (cesiumAsset) {
|
|
90800
|
-
const tokenAndUrl = await (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessTokenAndEndpointUrl)(cesiumAsset.id
|
|
90890
|
+
const tokenAndUrl = await (0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.getCesiumAccessTokenAndEndpointUrl)(`${cesiumAsset.id}`, cesiumAsset.key);
|
|
90801
90891
|
if (tokenAndUrl.url && tokenAndUrl.token) {
|
|
90802
90892
|
url = tokenAndUrl.url;
|
|
90803
90893
|
this._requestAuthorization = `Bearer ${tokenAndUrl.token}`;
|
|
@@ -155773,7 +155863,7 @@ function getCesiumOSMBuildingsUrl() {
|
|
|
155773
155863
|
return getCesiumAssetUrl(osmBuildingAssetId, key);
|
|
155774
155864
|
}
|
|
155775
155865
|
/** @internal */
|
|
155776
|
-
async function getCesiumAccessTokenAndEndpointUrl(assetId
|
|
155866
|
+
async function getCesiumAccessTokenAndEndpointUrl(assetId, requestKey) {
|
|
155777
155867
|
if (undefined === requestKey) {
|
|
155778
155868
|
requestKey = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.tileAdmin.cesiumIonKey;
|
|
155779
155869
|
if (undefined === requestKey)
|
|
@@ -155804,7 +155894,7 @@ function notifyTerrainError(detailedDescription) {
|
|
|
155804
155894
|
}
|
|
155805
155895
|
/** @internal */
|
|
155806
155896
|
async function getCesiumTerrainProvider(opts) {
|
|
155807
|
-
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl();
|
|
155897
|
+
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl(opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default);
|
|
155808
155898
|
if (!accessTokenAndEndpointUrl.token || !accessTokenAndEndpointUrl.url) {
|
|
155809
155899
|
notifyTerrainError(_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString(`iModelJs:BackgroundMap.MissingCesiumToken`));
|
|
155810
155900
|
return undefined;
|
|
@@ -155890,13 +155980,17 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
155890
155980
|
this._tilingScheme = tilingScheme;
|
|
155891
155981
|
this._tileAvailability = tileAvailability;
|
|
155892
155982
|
this._metaDataAvailableLevel = metaDataAvailableLevel;
|
|
155983
|
+
this._assetId = opts.dataSource || _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Default;
|
|
155893
155984
|
this._tokenTimeOut = _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().plus(CesiumTerrainProvider._tokenTimeoutInterval);
|
|
155894
155985
|
}
|
|
155895
155986
|
addLogoCards(cards) {
|
|
155896
155987
|
if (cards.dataset.cesiumIonLogoCard)
|
|
155897
155988
|
return;
|
|
155898
155989
|
cards.dataset.cesiumIonLogoCard = "true";
|
|
155899
|
-
|
|
155990
|
+
let notice = _IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString("iModelJs:BackgroundMap.CesiumWorldTerrainAttribution");
|
|
155991
|
+
if (this._assetId === _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.CesiumTerrainAssetId.Bathymetry)
|
|
155992
|
+
notice = `${notice}\n${_IModelApp__WEBPACK_IMPORTED_MODULE_6__.IModelApp.localization.getLocalizedString("iModelJs:BackgroundMap.CesiumBathymetryAttribution")}`;
|
|
155993
|
+
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 });
|
|
155900
155994
|
cards.appendChild(card);
|
|
155901
155995
|
}
|
|
155902
155996
|
get maxDepth() { return this._maxDepth; }
|
|
@@ -155928,7 +156022,7 @@ class CesiumTerrainProvider extends _internal__WEBPACK_IMPORTED_MODULE_8__.Terra
|
|
|
155928
156022
|
// ###TODO why does he update the access token when reading the mesh instead of when requesting it?
|
|
155929
156023
|
// This function only returns undefined if it fails to acquire token - but it doesn't need the token...
|
|
155930
156024
|
if (_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.BeTimePoint.now().milliseconds > this._tokenTimeOut.milliseconds) {
|
|
155931
|
-
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl();
|
|
156025
|
+
const accessTokenAndEndpointUrl = await getCesiumAccessTokenAndEndpointUrl(this._assetId);
|
|
155932
156026
|
if (!accessTokenAndEndpointUrl.token || args.isCanceled())
|
|
155933
156027
|
return undefined;
|
|
155934
156028
|
this._accessToken = accessTokenAndEndpointUrl.token;
|
|
@@ -161236,13 +161330,16 @@ class MapTreeSupplier {
|
|
|
161236
161330
|
// Terrain-only settings.
|
|
161237
161331
|
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareStrings)(lhs.terrainProviderName, rhs.terrainProviderName);
|
|
161238
161332
|
if (0 === cmp) {
|
|
161239
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.
|
|
161333
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareStringsOrUndefined)(lhs.terrainDataSource, rhs.terrainDataSource);
|
|
161240
161334
|
if (0 === cmp) {
|
|
161241
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.
|
|
161335
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.terrainHeightOrigin, rhs.terrainHeightOrigin);
|
|
161242
161336
|
if (0 === cmp) {
|
|
161243
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.
|
|
161244
|
-
if (0 === cmp)
|
|
161245
|
-
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.
|
|
161337
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.terrainHeightOriginMode, rhs.terrainHeightOriginMode);
|
|
161338
|
+
if (0 === cmp) {
|
|
161339
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareNumbers)(lhs.terrainExaggeration, rhs.terrainExaggeration);
|
|
161340
|
+
if (0 === cmp)
|
|
161341
|
+
cmp = (0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.compareBooleansOrUndefined)(lhs.produceGeometry, rhs.produceGeometry);
|
|
161342
|
+
}
|
|
161246
161343
|
}
|
|
161247
161344
|
}
|
|
161248
161345
|
}
|
|
@@ -161285,6 +161382,7 @@ class MapTreeSupplier {
|
|
|
161285
161382
|
wantSkirts: id.wantSkirts,
|
|
161286
161383
|
exaggeration: id.terrainExaggeration,
|
|
161287
161384
|
wantNormals: id.wantNormals,
|
|
161385
|
+
dataSource: id.terrainDataSource,
|
|
161288
161386
|
};
|
|
161289
161387
|
if (id.applyTerrain) {
|
|
161290
161388
|
await _ApproximateTerrainHeights__WEBPACK_IMPORTED_MODULE_3__.ApproximateTerrainHeights.instance.initialize();
|
|
@@ -161443,6 +161541,7 @@ class MapTileTreeReference extends _internal__WEBPACK_IMPORTED_MODULE_7__.TileTr
|
|
|
161443
161541
|
tileUserId: this._tileUserId,
|
|
161444
161542
|
applyTerrain: this.settings.applyTerrain && !this._isDrape,
|
|
161445
161543
|
terrainProviderName: this.settings.terrainSettings.providerName,
|
|
161544
|
+
terrainDataSource: this.settings.terrainSettings.dataSource,
|
|
161446
161545
|
terrainHeightOrigin: this.settings.terrainSettings.heightOrigin,
|
|
161447
161546
|
terrainHeightOriginMode: this.settings.terrainSettings.heightOriginMode,
|
|
161448
161547
|
terrainExaggeration: this.settings.terrainSettings.exaggeration,
|
|
@@ -190515,27 +190614,32 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
190515
190614
|
*/
|
|
190516
190615
|
class CoordinateXYZ extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.GeometryQuery {
|
|
190517
190616
|
/** Return a (REFERENCE TO) the coordinate data. */
|
|
190518
|
-
get point() {
|
|
190617
|
+
get point() {
|
|
190618
|
+
return this._xyz;
|
|
190619
|
+
}
|
|
190519
190620
|
/**
|
|
190621
|
+
* Constructor
|
|
190520
190622
|
* @param xyz point to be CAPTURED.
|
|
190521
190623
|
*/
|
|
190522
190624
|
constructor(xyz) {
|
|
190523
190625
|
super();
|
|
190524
|
-
/** String name for interface properties */
|
|
190626
|
+
/** String name for interface properties. */
|
|
190525
190627
|
this.geometryCategory = "point";
|
|
190526
190628
|
this._xyz = xyz;
|
|
190527
190629
|
}
|
|
190528
|
-
/** Create a new CoordinateXYZ containing a CLONE of point */
|
|
190630
|
+
/** Create a new CoordinateXYZ containing a CLONE of point. */
|
|
190529
190631
|
static create(point) {
|
|
190530
190632
|
return new CoordinateXYZ(point.clone());
|
|
190531
190633
|
}
|
|
190532
|
-
/** Create a new CoordinateXYZ */
|
|
190634
|
+
/** Create a new CoordinateXYZ. */
|
|
190533
190635
|
static createXYZ(x = 0, y = 0, z = 0) {
|
|
190534
190636
|
return new CoordinateXYZ(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(x, y, z));
|
|
190535
190637
|
}
|
|
190536
|
-
/** Return the range of the point */
|
|
190537
|
-
range() {
|
|
190538
|
-
|
|
190638
|
+
/** Return the range of the point. */
|
|
190639
|
+
range() {
|
|
190640
|
+
return _geometry3d_Range__WEBPACK_IMPORTED_MODULE_2__.Range3d.create(this._xyz);
|
|
190641
|
+
}
|
|
190642
|
+
/** Extend `rangeToExtend` to include this point (optionally transformed). */
|
|
190539
190643
|
extendRange(rangeToExtend, transform) {
|
|
190540
190644
|
if (transform)
|
|
190541
190645
|
rangeToExtend.extendTransformedXYZ(transform, this._xyz.x, this._xyz.y, this._xyz.z);
|
|
@@ -190547,27 +190651,23 @@ class CoordinateXYZ extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
190547
190651
|
transform.multiplyPoint3d(this._xyz, this._xyz);
|
|
190548
190652
|
return true;
|
|
190549
190653
|
}
|
|
190550
|
-
/** Return a transformed clone */
|
|
190654
|
+
/** Return a transformed clone. */
|
|
190551
190655
|
cloneTransformed(transform) {
|
|
190552
190656
|
const result = new CoordinateXYZ(this._xyz.clone());
|
|
190553
190657
|
result.tryTransformInPlace(transform);
|
|
190554
190658
|
return result;
|
|
190555
190659
|
}
|
|
190556
|
-
/** Return a clone */
|
|
190660
|
+
/** Return a clone. */
|
|
190557
190661
|
clone() {
|
|
190558
190662
|
return new CoordinateXYZ(this._xyz.clone());
|
|
190559
190663
|
}
|
|
190560
|
-
/**
|
|
190561
|
-
* Return GeometryQuery children for recursive queries.
|
|
190562
|
-
* * Leaf classes do not need to implement.
|
|
190563
|
-
*/
|
|
190564
190664
|
/** Test if (other instanceof Coordinate). */
|
|
190565
190665
|
isSameGeometryClass(other) {
|
|
190566
190666
|
return other instanceof CoordinateXYZ;
|
|
190567
190667
|
}
|
|
190568
190668
|
/**
|
|
190569
190669
|
* Test for exact structure and nearly identical geometry.
|
|
190570
|
-
* * Leaf classes must implement
|
|
190670
|
+
* * Leaf classes must implement.
|
|
190571
190671
|
* * Base class implementation recurses through children.
|
|
190572
190672
|
* * Base implementation is complete for classes with children and no properties.
|
|
190573
190673
|
* * Classes with both children and properties must implement for properties, call super for children.
|
|
@@ -190575,7 +190675,7 @@ class CoordinateXYZ extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
190575
190675
|
isAlmostEqual(other) {
|
|
190576
190676
|
return (other instanceof CoordinateXYZ) && this._xyz.isAlmostEqual(other._xyz);
|
|
190577
190677
|
}
|
|
190578
|
-
/** Second step of double dispatch:
|
|
190678
|
+
/** Second step of double dispatch: call `handler.handleCoordinateXYZ(this)` */
|
|
190579
190679
|
dispatchToGeometryHandler(handler) {
|
|
190580
190680
|
return handler.handleCoordinateXYZ(this);
|
|
190581
190681
|
}
|
|
@@ -194224,13 +194324,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
194224
194324
|
|
|
194225
194325
|
|
|
194226
194326
|
/**
|
|
194227
|
-
* Queries to be supported by Curve, Surface, and Solid objects
|
|
194327
|
+
* Queries to be supported by Curve, Surface, and Solid objects.
|
|
194228
194328
|
* * `GeometryQuery` is an abstract base class with (abstract) methods for querying curve, solid primitive, mesh,
|
|
194229
|
-
* and bspline surfaces
|
|
194329
|
+
* and bspline surfaces.
|
|
194230
194330
|
* @public
|
|
194231
194331
|
*/
|
|
194232
194332
|
class GeometryQuery {
|
|
194233
|
-
/** Return the range of the entire GeometryQuery tree */
|
|
194333
|
+
/** Return the range of the entire GeometryQuery tree. */
|
|
194234
194334
|
range(transform, result) {
|
|
194235
194335
|
if (result)
|
|
194236
194336
|
result.setNull();
|
|
@@ -194238,7 +194338,7 @@ class GeometryQuery {
|
|
|
194238
194338
|
this.extendRange(range, transform);
|
|
194239
194339
|
return range;
|
|
194240
194340
|
}
|
|
194241
|
-
/** Try to move the geometry by dx,dy,dz */
|
|
194341
|
+
/** Try to move the geometry by dx,dy,dz. */
|
|
194242
194342
|
tryTranslateInPlace(dx, dy = 0.0, dz = 0.0) {
|
|
194243
194343
|
return this.tryTransformInPlace(_geometry3d_Transform__WEBPACK_IMPORTED_MODULE_1__.Transform.createTranslationXYZ(dx, dy, dz));
|
|
194244
194344
|
}
|
|
@@ -194246,13 +194346,15 @@ class GeometryQuery {
|
|
|
194246
194346
|
* Return GeometryQuery children for recursive queries.
|
|
194247
194347
|
* * leaf classes do not need to implement.
|
|
194248
194348
|
*/
|
|
194249
|
-
get children() {
|
|
194349
|
+
get children() {
|
|
194350
|
+
return undefined;
|
|
194351
|
+
}
|
|
194250
194352
|
/**
|
|
194251
194353
|
* Test for exact structure and nearly identical geometry.
|
|
194252
|
-
* * Leaf classes must implement
|
|
194253
|
-
* *
|
|
194254
|
-
* *
|
|
194255
|
-
* *
|
|
194354
|
+
* * Leaf classes must implement.
|
|
194355
|
+
* * Base class implementation recurses through children.
|
|
194356
|
+
* * Base implementation is complete for classes with children and no properties.
|
|
194357
|
+
* * Classes with both children and properties must implement for properties, call super for children.
|
|
194256
194358
|
*/
|
|
194257
194359
|
isAlmostEqual(other) {
|
|
194258
194360
|
if (this.isSameGeometryClass(other)) {
|
|
@@ -194267,20 +194369,19 @@ class GeometryQuery {
|
|
|
194267
194369
|
}
|
|
194268
194370
|
return true;
|
|
194269
194371
|
}
|
|
194270
|
-
else if (childrenA || childrenB) { // CurveCollections start with empty arrays for children
|
|
194271
|
-
return false; // plainly different
|
|
194372
|
+
else if (childrenA || childrenB) { // CurveCollections start with empty arrays for children so these null pointer cases are never reached.
|
|
194373
|
+
return false; // plainly different
|
|
194272
194374
|
}
|
|
194273
194375
|
else {
|
|
194274
|
-
// both children null
|
|
194275
|
-
return true;
|
|
194376
|
+
return true; // both children null; call it equal
|
|
194276
194377
|
}
|
|
194277
194378
|
}
|
|
194278
194379
|
return false;
|
|
194279
194380
|
}
|
|
194280
194381
|
/**
|
|
194281
194382
|
* Apply instance method [[isAlmostEqual]] if both are defined.
|
|
194282
|
-
* *
|
|
194283
|
-
* *
|
|
194383
|
+
* * Both undefined returns true.
|
|
194384
|
+
* * Single defined returns false.
|
|
194284
194385
|
*/
|
|
194285
194386
|
static areAlmostEqual(a, b) {
|
|
194286
194387
|
if (a instanceof GeometryQuery && b instanceof GeometryQuery)
|
|
@@ -196914,9 +197015,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
196914
197015
|
*/
|
|
196915
197016
|
class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.GeometryQuery {
|
|
196916
197017
|
/** Test if `other` is a PointString3d */
|
|
196917
|
-
isSameGeometryClass(other) {
|
|
196918
|
-
|
|
196919
|
-
|
|
197018
|
+
isSameGeometryClass(other) {
|
|
197019
|
+
return other instanceof PointString3d;
|
|
197020
|
+
}
|
|
197021
|
+
/** Return a clone of the points array. */
|
|
197022
|
+
get points() {
|
|
197023
|
+
return this._points;
|
|
197024
|
+
}
|
|
196920
197025
|
constructor() {
|
|
196921
197026
|
super();
|
|
196922
197027
|
/** String name for schema properties */
|
|
@@ -196926,11 +197031,18 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
196926
197031
|
/** Clone and apply a transform. */
|
|
196927
197032
|
cloneTransformed(transform) {
|
|
196928
197033
|
const c = this.clone();
|
|
196929
|
-
c.tryTransformInPlace(transform);
|
|
197034
|
+
c.tryTransformInPlace(transform); // we know tryTransformInPlace succeeds
|
|
196930
197035
|
return c;
|
|
196931
197036
|
}
|
|
197037
|
+
/**
|
|
197038
|
+
* Turn any array (possibly nested) into a "flat" array of objects that are not arrays. This allows processing
|
|
197039
|
+
* the objects without recursion into nested arrays.
|
|
197040
|
+
*/
|
|
196932
197041
|
static flattenArray(arr) {
|
|
196933
|
-
return arr.reduce(
|
|
197042
|
+
return arr.reduce(
|
|
197043
|
+
// a callback function to execute for each element in the array. Its return value becomes
|
|
197044
|
+
// the value of the "flat" parameter on the next invocation of the callback function.
|
|
197045
|
+
(flat, toFlatten) => {
|
|
196934
197046
|
return flat.concat(Array.isArray(toFlatten) ? PointString3d.flattenArray(toFlatten) : toFlatten);
|
|
196935
197047
|
}, []);
|
|
196936
197048
|
}
|
|
@@ -196940,7 +197052,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
196940
197052
|
result.addPoints(points);
|
|
196941
197053
|
return result;
|
|
196942
197054
|
}
|
|
196943
|
-
/** Add multiple points to the PointString3d */
|
|
197055
|
+
/** Add multiple points to the PointString3d. */
|
|
196944
197056
|
addPoints(...points) {
|
|
196945
197057
|
const toAdd = PointString3d.flattenArray(points);
|
|
196946
197058
|
for (const p of toAdd) {
|
|
@@ -196948,25 +197060,25 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
196948
197060
|
this._points.push(p);
|
|
196949
197061
|
}
|
|
196950
197062
|
}
|
|
196951
|
-
/** Add a single point to the PointString3d */
|
|
197063
|
+
/** Add a single point to the PointString3d. */
|
|
196952
197064
|
addPoint(point) {
|
|
196953
197065
|
this._points.push(point);
|
|
196954
197066
|
}
|
|
196955
|
-
/** Remove the last point added to the PointString3d */
|
|
197067
|
+
/** Remove the last point added to the PointString3d. */
|
|
196956
197068
|
popPoint() {
|
|
196957
197069
|
this._points.pop();
|
|
196958
197070
|
}
|
|
196959
|
-
/** Replace this PointString3d's point array by a clone of the array in `other
|
|
197071
|
+
/** Replace this PointString3d's point array by a clone of the array in `other`. */
|
|
196960
197072
|
setFrom(other) {
|
|
196961
197073
|
this._points = _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.clonePoint3dArray(other._points);
|
|
196962
197074
|
}
|
|
196963
|
-
/** Create from an array of Point3d */
|
|
197075
|
+
/** Create from an array of Point3d. */
|
|
196964
197076
|
static createPoints(points) {
|
|
196965
197077
|
const ps = new PointString3d();
|
|
196966
197078
|
ps._points = _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.clonePoint3dArray(points);
|
|
196967
197079
|
return ps;
|
|
196968
197080
|
}
|
|
196969
|
-
/** Create a PointString3d from xyz coordinates packed in a Float64Array */
|
|
197081
|
+
/** Create a PointString3d from xyz coordinates packed in a Float64Array. */
|
|
196970
197082
|
static createFloat64Array(xyzData) {
|
|
196971
197083
|
const ps = new PointString3d();
|
|
196972
197084
|
for (let i = 0; i + 3 <= xyzData.length; i += 3)
|
|
@@ -196979,7 +197091,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
196979
197091
|
retVal.setFrom(this);
|
|
196980
197092
|
return retVal;
|
|
196981
197093
|
}
|
|
196982
|
-
/** Replace this instance's points by those from a json array, e.g. `[[1,2,3], [4,
|
|
197094
|
+
/** Replace this instance's points by those from a json array, e.g. `[[1,2,3], [4,5,6]]`. */
|
|
196983
197095
|
setFromJSON(json) {
|
|
196984
197096
|
this._points.length = 0;
|
|
196985
197097
|
if (Array.isArray(json)) {
|
|
@@ -196990,7 +197102,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
196990
197102
|
}
|
|
196991
197103
|
/**
|
|
196992
197104
|
* Convert an PointString3d to a JSON object.
|
|
196993
|
-
* @return {*} [[
|
|
197105
|
+
* @return {*} e.g., `[[1,2,3], [4,5,6]]`.
|
|
196994
197106
|
*/
|
|
196995
197107
|
toJSON() {
|
|
196996
197108
|
const value = [];
|
|
@@ -196998,7 +197110,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
196998
197110
|
value.push(p.toJSON());
|
|
196999
197111
|
return value;
|
|
197000
197112
|
}
|
|
197001
|
-
/** Create a PointString3d from a json array, e.g. `[[1,2,3], [4,
|
|
197113
|
+
/** Create a PointString3d from a json array, e.g. `[[1,2,3], [4,5,6]]`. */
|
|
197002
197114
|
static fromJSON(json) {
|
|
197003
197115
|
const ps = new PointString3d();
|
|
197004
197116
|
ps.setFromJSON(json);
|
|
@@ -197016,14 +197128,16 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
197016
197128
|
return undefined;
|
|
197017
197129
|
}
|
|
197018
197130
|
/** Return the number of points. */
|
|
197019
|
-
numPoints() {
|
|
197131
|
+
numPoints() {
|
|
197132
|
+
return this._points.length;
|
|
197133
|
+
}
|
|
197020
197134
|
/** Reverse the point order */
|
|
197021
197135
|
reverseInPlace() {
|
|
197022
197136
|
if (this._points.length >= 2) {
|
|
197023
197137
|
let i0 = 0;
|
|
197024
197138
|
let i1 = this._points.length - 1;
|
|
197025
197139
|
while (i0 < i1) {
|
|
197026
|
-
const a = this._points[
|
|
197140
|
+
const a = this._points[i1];
|
|
197027
197141
|
this._points[i1] = this._points[i0];
|
|
197028
197142
|
this._points[i0] = a;
|
|
197029
197143
|
i0++;
|
|
@@ -197031,7 +197145,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
197031
197145
|
}
|
|
197032
197146
|
}
|
|
197033
197147
|
}
|
|
197034
|
-
/**
|
|
197148
|
+
/** Apply transform on points in place. */
|
|
197035
197149
|
tryTransformInPlace(transform) {
|
|
197036
197150
|
transform.multiplyPoint3dArrayInPlace(this._points);
|
|
197037
197151
|
return true;
|
|
@@ -197050,7 +197164,7 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
197050
197164
|
isInPlane(plane) {
|
|
197051
197165
|
return _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.isCloseToPlane(this._points, plane, _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.smallMetricDistance);
|
|
197052
197166
|
}
|
|
197053
|
-
/** Extend a range to include the points in this PointString3d. */
|
|
197167
|
+
/** Extend a range to include the points in this PointString3d (optionally transformed). */
|
|
197054
197168
|
extendRange(rangeToExtend, transform) {
|
|
197055
197169
|
rangeToExtend.extendArray(this._points, transform);
|
|
197056
197170
|
}
|
|
@@ -197061,8 +197175,10 @@ class PointString3d extends _GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometry
|
|
|
197061
197175
|
return _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_2__.Point3dArray.isAlmostEqual(this._points, other._points);
|
|
197062
197176
|
}
|
|
197063
197177
|
/** Reduce to empty set of points. */
|
|
197064
|
-
clear() {
|
|
197065
|
-
|
|
197178
|
+
clear() {
|
|
197179
|
+
this._points.length = 0;
|
|
197180
|
+
}
|
|
197181
|
+
/** Second step of double dispatch: call `handler.handlePointString(this)` */
|
|
197066
197182
|
dispatchToGeometryHandler(handler) {
|
|
197067
197183
|
return handler.handlePointString3d(this);
|
|
197068
197184
|
}
|
|
@@ -238918,6 +239034,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
238918
239034
|
* @public
|
|
238919
239035
|
*/
|
|
238920
239036
|
class Polyface extends _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.GeometryQuery {
|
|
239037
|
+
/** Constructor */
|
|
238921
239038
|
constructor(data) {
|
|
238922
239039
|
super();
|
|
238923
239040
|
/** String name for schema properties */
|
|
@@ -238925,69 +239042,102 @@ class Polyface extends _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_0__.Geometr
|
|
|
238925
239042
|
this.data = data;
|
|
238926
239043
|
}
|
|
238927
239044
|
/** Flag indicating if the mesh display must assume both sides are visible. */
|
|
238928
|
-
get twoSided() {
|
|
238929
|
-
|
|
238930
|
-
|
|
238931
|
-
|
|
238932
|
-
|
|
238933
|
-
|
|
238934
|
-
|
|
238935
|
-
|
|
238936
|
-
|
|
238937
|
-
|
|
238938
|
-
|
|
238939
|
-
|
|
238940
|
-
|
|
238941
|
-
|
|
238942
|
-
|
|
238943
|
-
|
|
239045
|
+
get twoSided() {
|
|
239046
|
+
return this.data.twoSided;
|
|
239047
|
+
}
|
|
239048
|
+
set twoSided(value) {
|
|
239049
|
+
this.data.twoSided = value;
|
|
239050
|
+
}
|
|
239051
|
+
/**
|
|
239052
|
+
* Flag indicating if the mesh closure is unknown (0), open sheet (1), closed solid (2).
|
|
239053
|
+
* * A boundary edge of a mesh is defined as an edge with only one connected facet.
|
|
239054
|
+
* * Closed solid is a mesh with no boundary edge. Open sheet is a mesh that has boundary edge(s).
|
|
239055
|
+
*/
|
|
239056
|
+
get expectedClosure() {
|
|
239057
|
+
return this.data.expectedClosure;
|
|
239058
|
+
}
|
|
239059
|
+
set expectedClosure(value) {
|
|
239060
|
+
this.data.expectedClosure = value;
|
|
239061
|
+
}
|
|
239062
|
+
/**
|
|
239063
|
+
* Check validity of indices into a data array.
|
|
239064
|
+
* * It is valid to have both indices and data undefined.
|
|
239065
|
+
* * It is NOT valid for just one to be defined.
|
|
239066
|
+
* * Index values at indices[indexPositionA <= i < indexPositionB] must be valid indices to the data array.
|
|
239067
|
+
* @param indices array of indices.
|
|
239068
|
+
* @param indexPositionA first index to test.
|
|
239069
|
+
* @param indexPositionB one past final index to test.
|
|
239070
|
+
* @param data data array.
|
|
239071
|
+
* @param dataLength length of data array.
|
|
239072
|
+
*/
|
|
238944
239073
|
static areIndicesValid(indices, indexPositionA, indexPositionB, data, dataLength) {
|
|
238945
239074
|
if (indices === undefined && data === undefined)
|
|
238946
239075
|
return true;
|
|
238947
|
-
if (
|
|
239076
|
+
if (indices === undefined || data === undefined)
|
|
238948
239077
|
return false;
|
|
238949
239078
|
if (indexPositionA < 0 || indexPositionA >= indices.length)
|
|
238950
239079
|
return false;
|
|
238951
|
-
if (indexPositionB
|
|
239080
|
+
if (indexPositionB <= indexPositionA || indexPositionB > indices.length)
|
|
238952
239081
|
return false;
|
|
238953
239082
|
for (let i = indexPositionA; i < indexPositionB; i++)
|
|
238954
239083
|
if (indices[i] < 0 || indices[i] >= dataLength)
|
|
238955
239084
|
return false;
|
|
238956
239085
|
return true;
|
|
238957
239086
|
}
|
|
238958
|
-
/**
|
|
238959
|
-
* Returns the number of facets of this polyface. Subclasses should override.
|
|
238960
|
-
*/
|
|
239087
|
+
/** Returns the number of facets of this polyface. Subclasses should override. */
|
|
238961
239088
|
get facetCount() {
|
|
238962
239089
|
return undefined;
|
|
238963
239090
|
}
|
|
238964
239091
|
}
|
|
238965
239092
|
/**
|
|
238966
|
-
* An `IndexedPolyface` is a set of facets which can have normal, param, and color arrays with independent point,
|
|
239093
|
+
* An `IndexedPolyface` is a set of facets which can have normal, param, and color arrays with independent point,
|
|
239094
|
+
* normal, param, and color indices.
|
|
238967
239095
|
* @public
|
|
238968
239096
|
*/
|
|
238969
239097
|
class IndexedPolyface extends Polyface {
|
|
239098
|
+
/**
|
|
239099
|
+
* Constructor for a new polyface.
|
|
239100
|
+
* @param data PolyfaceData arrays to capture.
|
|
239101
|
+
* @param facetStart optional array of facet start indices (e.g. known during clone)
|
|
239102
|
+
* @param facetToFacetData optional array of face identifiers (e.g. known during clone)
|
|
239103
|
+
*/
|
|
239104
|
+
constructor(data, facetStart, facetToFaceData) {
|
|
239105
|
+
super(data);
|
|
239106
|
+
if (facetStart)
|
|
239107
|
+
this._facetStart = facetStart.slice(); // deep copy
|
|
239108
|
+
else {
|
|
239109
|
+
this._facetStart = [];
|
|
239110
|
+
this._facetStart.push(0);
|
|
239111
|
+
}
|
|
239112
|
+
if (facetToFaceData)
|
|
239113
|
+
this._facetToFaceData = facetToFaceData.slice(); // deep copy
|
|
239114
|
+
else
|
|
239115
|
+
this._facetToFaceData = [];
|
|
239116
|
+
}
|
|
238970
239117
|
/** Test if other is an instance of `IndexedPolyface` */
|
|
238971
|
-
isSameGeometryClass(other) {
|
|
239118
|
+
isSameGeometryClass(other) {
|
|
239119
|
+
return other instanceof IndexedPolyface;
|
|
239120
|
+
}
|
|
238972
239121
|
/** Tests for equivalence between two IndexedPolyfaces. */
|
|
238973
239122
|
isAlmostEqual(other) {
|
|
238974
239123
|
if (other instanceof IndexedPolyface) {
|
|
238975
|
-
return this.data.isAlmostEqual(other.data) &&
|
|
239124
|
+
return this.data.isAlmostEqual(other.data) &&
|
|
239125
|
+
_geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_1__.NumberArray.isExactEqual(this._facetStart, other._facetStart) &&
|
|
238976
239126
|
_geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_1__.NumberArray.isExactEqual(this._facetToFaceData, other._facetToFaceData);
|
|
238977
239127
|
}
|
|
238978
239128
|
return false;
|
|
238979
239129
|
}
|
|
239130
|
+
/** Returns true if either the point array or the point index array is empty. */
|
|
239131
|
+
get isEmpty() {
|
|
239132
|
+
return this.data.pointCount === 0 || this.data.pointIndex.length === 0;
|
|
239133
|
+
}
|
|
238980
239134
|
/**
|
|
238981
|
-
*
|
|
238982
|
-
|
|
238983
|
-
|
|
238984
|
-
|
|
238985
|
-
* * apply the transform to points
|
|
238986
|
-
* * apply the (inverse transpose of) the matrix part to normals
|
|
238987
|
-
* * If determinant is negative, also
|
|
239135
|
+
* Transform the mesh.
|
|
239136
|
+
* * Apply the transform to points.
|
|
239137
|
+
* * Apply the (inverse transpose of the) matrix part to normals.
|
|
239138
|
+
* * If determinant of the transform matrix is negative, also
|
|
238988
239139
|
* * negate normals
|
|
238989
239140
|
* * reverse index order around each facet.
|
|
238990
|
-
* @param transform
|
|
238991
239141
|
*/
|
|
238992
239142
|
tryTransformInPlace(transform) {
|
|
238993
239143
|
if (!this.data.tryTransformInPlace(transform))
|
|
@@ -239008,52 +239158,47 @@ class IndexedPolyface extends Polyface {
|
|
|
239008
239158
|
const result = new IndexedPolyface(this.data.clone(), this._facetStart.slice(), this._facetToFaceData.slice());
|
|
239009
239159
|
return result;
|
|
239010
239160
|
}
|
|
239011
|
-
/**
|
|
239161
|
+
/**
|
|
239162
|
+
* Return a deep clone with transformed points and normals.
|
|
239163
|
+
* @see [[IndexedPolyface.tryTransformInPlace]] for details of how transform is done.
|
|
239164
|
+
*/
|
|
239012
239165
|
cloneTransformed(transform) {
|
|
239013
239166
|
const result = this.clone();
|
|
239014
239167
|
result.tryTransformInPlace(transform);
|
|
239015
239168
|
return result;
|
|
239016
239169
|
}
|
|
239017
239170
|
/** Reverse the order of indices around all facets. */
|
|
239018
|
-
reverseIndices() {
|
|
239171
|
+
reverseIndices() {
|
|
239172
|
+
this.data.reverseIndices(this._facetStart);
|
|
239173
|
+
}
|
|
239019
239174
|
/** Reverse the direction of all normal vectors. */
|
|
239020
|
-
reverseNormals() {
|
|
239021
|
-
|
|
239175
|
+
reverseNormals() {
|
|
239176
|
+
this.data.reverseNormals();
|
|
239177
|
+
}
|
|
239178
|
+
/**
|
|
239179
|
+
* Return face data using a facet index.
|
|
239180
|
+
* * Returns `undefined` if none found.
|
|
239181
|
+
* * This is the REFERENCE to the FacetFaceData not a copy.
|
|
239182
|
+
*/
|
|
239022
239183
|
tryGetFaceData(i) {
|
|
239184
|
+
if (i < 0 || i >= this._facetToFaceData.length)
|
|
239185
|
+
return undefined;
|
|
239023
239186
|
const faceIndex = this._facetToFaceData[i];
|
|
239024
|
-
if (faceIndex >= this.data.face.length)
|
|
239187
|
+
if (faceIndex < 0 || faceIndex >= this.data.face.length)
|
|
239025
239188
|
return undefined;
|
|
239026
239189
|
return this.data.face[faceIndex];
|
|
239027
239190
|
}
|
|
239028
239191
|
/**
|
|
239029
|
-
*
|
|
239030
|
-
*
|
|
239031
|
-
*
|
|
239032
|
-
*
|
|
239033
|
-
*/
|
|
239034
|
-
constructor(data, facetStart, facetToFaceData) {
|
|
239035
|
-
super(data);
|
|
239036
|
-
if (facetStart)
|
|
239037
|
-
this._facetStart = facetStart.slice();
|
|
239038
|
-
else {
|
|
239039
|
-
this._facetStart = [];
|
|
239040
|
-
this._facetStart.push(0);
|
|
239041
|
-
}
|
|
239042
|
-
if (facetToFaceData)
|
|
239043
|
-
this._facetToFaceData = facetToFaceData.slice();
|
|
239044
|
-
else
|
|
239045
|
-
this._facetToFaceData = [];
|
|
239046
|
-
}
|
|
239047
|
-
/**
|
|
239048
|
-
* * Add facets from source to this polyface.
|
|
239049
|
-
* * Optionally reverse facet indices as per PolyfaceData.reverseIndicesSingleFacet() with preserveStart = false, and invert source normals.
|
|
239050
|
-
* * Optionally apply a transform to points and normals.
|
|
239192
|
+
* Add facets from `source` to `this` polyface.
|
|
239193
|
+
* * Optionally reverse facet indices as per `PolyfaceData.reverseIndicesSingleFacet()` with `preserveStart = false` and
|
|
239194
|
+
* invert source normals.
|
|
239195
|
+
* * Optionally apply a `transform` to points and normals.
|
|
239051
239196
|
* * Will only copy param, normal, color, and face data if we are already tracking them AND/OR the source contains them.
|
|
239052
239197
|
*/
|
|
239053
239198
|
addIndexedPolyface(source, reversed, transform) {
|
|
239054
239199
|
const numSourceFacets = source.facetCount;
|
|
239055
|
-
//
|
|
239056
|
-
//
|
|
239200
|
+
// add point, point index, and edge visibility data
|
|
239201
|
+
// note that there is no need to build an intermediate index map since all points are added
|
|
239057
239202
|
const startOfNewPoints = this.data.point.length;
|
|
239058
239203
|
const xyz = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create();
|
|
239059
239204
|
for (let i = 0; i < source.data.point.length; i++) {
|
|
@@ -239080,11 +239225,11 @@ class IndexedPolyface extends Polyface {
|
|
|
239080
239225
|
}
|
|
239081
239226
|
this.terminateFacet(false);
|
|
239082
239227
|
}
|
|
239083
|
-
//
|
|
239228
|
+
// add param and param index data
|
|
239084
239229
|
if (undefined !== this.data.param && undefined !== source.data.param && undefined !== source.data.paramIndex) {
|
|
239085
239230
|
const startOfNewParams = this.data.param.length;
|
|
239086
239231
|
this.data.param.pushFromGrowableXYArray(source.data.param);
|
|
239087
|
-
for (let i = 0; i < numSourceFacets; i++) { //
|
|
239232
|
+
for (let i = 0; i < numSourceFacets; i++) { // expect facet start and ends for points to match normals
|
|
239088
239233
|
const i0 = source._facetStart[i];
|
|
239089
239234
|
const i1 = source._facetStart[i + 1];
|
|
239090
239235
|
if (reversed) {
|
|
@@ -239097,7 +239242,7 @@ class IndexedPolyface extends Polyface {
|
|
|
239097
239242
|
}
|
|
239098
239243
|
}
|
|
239099
239244
|
}
|
|
239100
|
-
//
|
|
239245
|
+
// add normal and normal index data
|
|
239101
239246
|
if (undefined !== this.data.normal && undefined !== source.data.normal && undefined !== source.data.normalIndex) {
|
|
239102
239247
|
const startOfNewNormals = this.data.normal.length;
|
|
239103
239248
|
for (let i = 0; i < source.data.normal.length; i++) {
|
|
@@ -239108,7 +239253,7 @@ class IndexedPolyface extends Polyface {
|
|
|
239108
239253
|
sourceNormal.scaleInPlace(-1.0);
|
|
239109
239254
|
this.addNormal(sourceNormal);
|
|
239110
239255
|
}
|
|
239111
|
-
for (let i = 0; i < numSourceFacets; i++) { //
|
|
239256
|
+
for (let i = 0; i < numSourceFacets; i++) { // expect facet start and ends for points to match normals
|
|
239112
239257
|
const i0 = source._facetStart[i];
|
|
239113
239258
|
const i1 = source._facetStart[i + 1];
|
|
239114
239259
|
if (reversed) {
|
|
@@ -239121,12 +239266,12 @@ class IndexedPolyface extends Polyface {
|
|
|
239121
239266
|
}
|
|
239122
239267
|
}
|
|
239123
239268
|
}
|
|
239124
|
-
//
|
|
239269
|
+
// add color and color index data
|
|
239125
239270
|
if (undefined !== this.data.color && undefined !== source.data.color && undefined !== source.data.colorIndex) {
|
|
239126
239271
|
const startOfNewColors = this.data.color.length;
|
|
239127
239272
|
for (const sourceColor of source.data.color)
|
|
239128
239273
|
this.addColor(sourceColor);
|
|
239129
|
-
for (let i = 0; i < numSourceFacets; i++) { //
|
|
239274
|
+
for (let i = 0; i < numSourceFacets; i++) { // expect facet start and ends for points to match colors
|
|
239130
239275
|
const i0 = source._facetStart[i];
|
|
239131
239276
|
const i1 = source._facetStart[i + 1];
|
|
239132
239277
|
if (reversed) {
|
|
@@ -239139,7 +239284,7 @@ class IndexedPolyface extends Polyface {
|
|
|
239139
239284
|
}
|
|
239140
239285
|
}
|
|
239141
239286
|
}
|
|
239142
|
-
//
|
|
239287
|
+
// add face and facetToFace index data
|
|
239143
239288
|
if (source.data.face.length !== 0) {
|
|
239144
239289
|
const startOfNewFaceData = this.data.face.length;
|
|
239145
239290
|
for (const face of source.data.face) {
|
|
@@ -239151,25 +239296,31 @@ class IndexedPolyface extends Polyface {
|
|
|
239151
239296
|
}
|
|
239152
239297
|
}
|
|
239153
239298
|
}
|
|
239154
|
-
/**
|
|
239155
|
-
*
|
|
239299
|
+
/**
|
|
239300
|
+
* Return the total number of indices in zero-terminated style, which includes
|
|
239301
|
+
* * all the indices in the packed zero-based table.
|
|
239156
239302
|
* * one additional index for the zero-terminator of each facet.
|
|
239157
|
-
* @note Note that all index arrays (
|
|
239303
|
+
* @note Note that all index arrays (pointIndex, normalIndex, paramIndex, colorIndex) have the same counts, so there
|
|
239158
239304
|
* is not a separate query for each of them.
|
|
239159
239305
|
*/
|
|
239160
|
-
get zeroTerminatedIndexCount() {
|
|
239161
|
-
|
|
239162
|
-
|
|
239163
|
-
|
|
239164
|
-
*
|
|
239306
|
+
get zeroTerminatedIndexCount() {
|
|
239307
|
+
return this.data.pointIndex.length + this._facetStart.length - 1;
|
|
239308
|
+
}
|
|
239309
|
+
/**
|
|
239310
|
+
* Create an empty facet set with coordinate and index data to be supplied later.
|
|
239311
|
+
* @param needNormals true if normals will be constructed.
|
|
239312
|
+
* @param needParams true if uv parameters will be constructed.
|
|
239313
|
+
* @param needColors true if colors will be constructed.
|
|
239314
|
+
* @param twoSided true if the facets are to be considered viewable from the back.
|
|
239165
239315
|
*/
|
|
239166
239316
|
static create(needNormals = false, needParams = false, needColors = false, twoSided = false) {
|
|
239167
239317
|
return new IndexedPolyface(new _PolyfaceData__WEBPACK_IMPORTED_MODULE_3__.PolyfaceData(needNormals, needParams, needColors, twoSided));
|
|
239168
239318
|
}
|
|
239169
|
-
/**
|
|
239170
|
-
*
|
|
239171
|
-
* @param
|
|
239172
|
-
* @
|
|
239319
|
+
/**
|
|
239320
|
+
* Add (a clone of) a point to point array.
|
|
239321
|
+
* @param point the point.
|
|
239322
|
+
* @param priorIndex (optional) index of prior point to check for possible duplicate value.
|
|
239323
|
+
* @returns the zero-based index of the added or duplicate point.
|
|
239173
239324
|
*/
|
|
239174
239325
|
addPoint(point, priorIndex) {
|
|
239175
239326
|
if (priorIndex !== undefined) {
|
|
@@ -239180,12 +239331,21 @@ class IndexedPolyface extends Polyface {
|
|
|
239180
239331
|
this.data.point.pushXYZ(point.x, point.y, point.z);
|
|
239181
239332
|
return this.data.point.length - 1;
|
|
239182
239333
|
}
|
|
239183
|
-
/**
|
|
239184
|
-
*
|
|
239334
|
+
/**
|
|
239335
|
+
* Add a point to point array.
|
|
239336
|
+
* @param x the x coordinate of point.
|
|
239337
|
+
* @param y the y coordinate of point.
|
|
239338
|
+
* @param z the z coordinate of point.
|
|
239339
|
+
* @returns the zero-based index of the added point.
|
|
239185
239340
|
*/
|
|
239186
|
-
addPointXYZ(x, y, z) {
|
|
239187
|
-
|
|
239188
|
-
|
|
239341
|
+
addPointXYZ(x, y, z) {
|
|
239342
|
+
this.data.point.pushXYZ(x, y, z);
|
|
239343
|
+
return this.data.point.length - 1;
|
|
239344
|
+
}
|
|
239345
|
+
/**
|
|
239346
|
+
* Add (a clone of) a uv parameter to the parameter array.
|
|
239347
|
+
* @param param the parameter.
|
|
239348
|
+
* @returns zero-based index of the added param.
|
|
239189
239349
|
*/
|
|
239190
239350
|
addParam(param) {
|
|
239191
239351
|
if (!this.data.param)
|
|
@@ -239193,10 +239353,13 @@ class IndexedPolyface extends Polyface {
|
|
|
239193
239353
|
this.data.param.push(param);
|
|
239194
239354
|
return this.data.param.length - 1;
|
|
239195
239355
|
}
|
|
239196
|
-
/**
|
|
239356
|
+
/**
|
|
239357
|
+
* Add a uv parameter to the parameter array.
|
|
239358
|
+
* @param u the u part of parameter.
|
|
239359
|
+
* @param v the v part of parameter.
|
|
239197
239360
|
* @param priorIndexA first index to check for possible duplicate value.
|
|
239198
239361
|
* @param priorIndexB second index to check for possible duplicate value.
|
|
239199
|
-
* @returns
|
|
239362
|
+
* @returns zero-based index of the added or duplicate parameter.
|
|
239200
239363
|
*/
|
|
239201
239364
|
addParamUV(u, v, priorIndexA, priorIndexB) {
|
|
239202
239365
|
if (!this.data.param)
|
|
@@ -239208,37 +239371,39 @@ class IndexedPolyface extends Polyface {
|
|
|
239208
239371
|
this.data.param.pushXY(u, v);
|
|
239209
239372
|
return this.data.param.length - 1;
|
|
239210
239373
|
}
|
|
239211
|
-
/**
|
|
239374
|
+
/**
|
|
239375
|
+
* Add (a clone of) a normal vector to the normal array.
|
|
239376
|
+
* @param normal the normal vector.
|
|
239212
239377
|
* @param priorIndexA first index to check for possible duplicate value.
|
|
239213
239378
|
* @param priorIndexB second index to check for possible duplicate value.
|
|
239214
|
-
* @returns
|
|
239379
|
+
* @returns zero-based index of the added or duplicate normal.
|
|
239215
239380
|
*/
|
|
239216
239381
|
addNormal(normal, priorIndexA, priorIndexB) {
|
|
239382
|
+
// check if `normal` is duplicate of `dataNormal` at index `i`
|
|
239383
|
+
const normalIsDuplicate = (dataNormal, i) => {
|
|
239384
|
+
const distance = dataNormal.distanceIndexToPoint(i, normal);
|
|
239385
|
+
return distance !== undefined && _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.isSmallMetricDistance(distance);
|
|
239386
|
+
};
|
|
239217
239387
|
if (this.data.normal !== undefined) {
|
|
239218
|
-
|
|
239219
|
-
|
|
239220
|
-
|
|
239221
|
-
|
|
239222
|
-
|
|
239223
|
-
}
|
|
239224
|
-
if (priorIndexB !== undefined) {
|
|
239225
|
-
distance = this.data.normal.distanceIndexToPoint(priorIndexB, normal);
|
|
239226
|
-
if (distance !== undefined && _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.isSmallMetricDistance(distance))
|
|
239227
|
-
return priorIndexB;
|
|
239228
|
-
}
|
|
239229
|
-
// Note: Do NOT attempt to chain to tail if no prior indices given.
|
|
239230
|
-
// But if they are, look also to the tail.
|
|
239388
|
+
if (priorIndexA !== undefined && normalIsDuplicate(this.data.normal, priorIndexA))
|
|
239389
|
+
return priorIndexA;
|
|
239390
|
+
if (priorIndexB !== undefined && normalIsDuplicate(this.data.normal, priorIndexB))
|
|
239391
|
+
return priorIndexB;
|
|
239392
|
+
// check the tail index for possible duplicate
|
|
239231
239393
|
if (priorIndexA !== undefined || priorIndexB !== undefined) {
|
|
239232
239394
|
const tailIndex = this.data.normal.length - 1;
|
|
239233
|
-
|
|
239234
|
-
if (distance !== undefined && _Geometry__WEBPACK_IMPORTED_MODULE_4__.Geometry.isSmallMetricDistance(distance))
|
|
239395
|
+
if (normalIsDuplicate(this.data.normal, tailIndex))
|
|
239235
239396
|
return tailIndex;
|
|
239236
239397
|
}
|
|
239237
239398
|
}
|
|
239238
239399
|
return this.addNormalXYZ(normal.x, normal.y, normal.z);
|
|
239239
239400
|
}
|
|
239240
|
-
/**
|
|
239241
|
-
*
|
|
239401
|
+
/**
|
|
239402
|
+
* Add a normal vector to the normal array.
|
|
239403
|
+
* @param x the x coordinate of normal.
|
|
239404
|
+
* @param y the y coordinate of normal.
|
|
239405
|
+
* @param z the z coordinate of normal.
|
|
239406
|
+
* @returns zero-based index of the added normal vector.
|
|
239242
239407
|
*/
|
|
239243
239408
|
addNormalXYZ(x, y, z) {
|
|
239244
239409
|
if (!this.data.normal)
|
|
@@ -239246,8 +239411,10 @@ class IndexedPolyface extends Polyface {
|
|
|
239246
239411
|
this.data.normal.pushXYZ(x, y, z);
|
|
239247
239412
|
return this.data.normal.length - 1;
|
|
239248
239413
|
}
|
|
239249
|
-
/**
|
|
239250
|
-
*
|
|
239414
|
+
/**
|
|
239415
|
+
* Add a color to the color array
|
|
239416
|
+
* @param color the color.
|
|
239417
|
+
* @returns zero-based index of the added color.
|
|
239251
239418
|
*/
|
|
239252
239419
|
addColor(color) {
|
|
239253
239420
|
if (!this.data.color)
|
|
@@ -239256,46 +239423,54 @@ class IndexedPolyface extends Polyface {
|
|
|
239256
239423
|
return this.data.color.length - 1;
|
|
239257
239424
|
}
|
|
239258
239425
|
/** Add a point index with edge visibility flag. */
|
|
239259
|
-
addPointIndex(index, visible = true) {
|
|
239260
|
-
|
|
239426
|
+
addPointIndex(index, visible = true) {
|
|
239427
|
+
this.data.pointIndex.push(index);
|
|
239428
|
+
this.data.edgeVisible.push(visible);
|
|
239429
|
+
}
|
|
239430
|
+
/** Add a normal index. */
|
|
239261
239431
|
addNormalIndex(index) {
|
|
239262
239432
|
if (!this.data.normalIndex)
|
|
239263
239433
|
this.data.normalIndex = [];
|
|
239264
239434
|
this.data.normalIndex.push(index);
|
|
239265
239435
|
}
|
|
239266
|
-
/** Add a param index */
|
|
239436
|
+
/** Add a param index. */
|
|
239267
239437
|
addParamIndex(index) {
|
|
239268
239438
|
if (!this.data.paramIndex)
|
|
239269
239439
|
this.data.paramIndex = [];
|
|
239270
239440
|
this.data.paramIndex.push(index);
|
|
239271
239441
|
}
|
|
239272
|
-
/** Add a color index */
|
|
239442
|
+
/** Add a color index. */
|
|
239273
239443
|
addColorIndex(index) {
|
|
239274
239444
|
if (!this.data.colorIndex)
|
|
239275
239445
|
this.data.colorIndex = [];
|
|
239276
239446
|
this.data.colorIndex.push(index);
|
|
239277
239447
|
}
|
|
239278
|
-
/**
|
|
239448
|
+
/**
|
|
239449
|
+
* Clean up the open facet.
|
|
239450
|
+
* @deprecated in 4.x to remove nebulous "open facet" concept from the API. Call [[PolyfaceData.trimAllIndexArrays]]
|
|
239451
|
+
* instead.
|
|
239452
|
+
*/
|
|
239279
239453
|
cleanupOpenFacet() {
|
|
239280
239454
|
this.data.trimAllIndexArrays(this.data.pointIndex.length);
|
|
239281
239455
|
}
|
|
239282
|
-
/**
|
|
239283
|
-
*
|
|
239284
|
-
* *
|
|
239285
|
-
*
|
|
239286
|
-
*
|
|
239287
|
-
*
|
|
239288
|
-
* *
|
|
239289
|
-
* * "undefined" return is normal. Any other return is a description of an error.
|
|
239456
|
+
/**
|
|
239457
|
+
* Announce the end of construction of a facet.
|
|
239458
|
+
* * Optionally check for:
|
|
239459
|
+
* * Same number of indices among all active index arrays -- point, normal, param, color
|
|
239460
|
+
* * All indices are within bounds of the respective data arrays.
|
|
239461
|
+
* * In error cases, all index arrays are trimmed back to the size when previous facet was terminated.
|
|
239462
|
+
* * A return value of `undefined` is normal. Otherwise, a string array of error messages is returned.
|
|
239290
239463
|
*/
|
|
239291
239464
|
terminateFacet(validateAllIndices = true) {
|
|
239292
239465
|
const numFacets = this._facetStart.length - 1;
|
|
239293
|
-
|
|
239294
|
-
const
|
|
239466
|
+
// number of indices in accepted facets
|
|
239467
|
+
const lengthA = this._facetStart[numFacets];
|
|
239468
|
+
// number of indices in all facets (accepted facet plus the last facet to be accepted)
|
|
239469
|
+
const lengthB = this.data.pointIndex.length;
|
|
239295
239470
|
if (validateAllIndices) {
|
|
239296
239471
|
const messages = [];
|
|
239297
239472
|
if (lengthB < lengthA + 2)
|
|
239298
|
-
messages.push("Less than 3 indices in
|
|
239473
|
+
messages.push("Less than 3 indices in the last facet");
|
|
239299
239474
|
if (this.data.normalIndex && this.data.normalIndex.length !== lengthB)
|
|
239300
239475
|
messages.push("normalIndex count must match pointIndex count");
|
|
239301
239476
|
if (this.data.paramIndex && this.data.paramIndex.length !== lengthB)
|
|
@@ -239305,70 +239480,93 @@ class IndexedPolyface extends Polyface {
|
|
|
239305
239480
|
if (this.data.edgeVisible.length !== lengthB)
|
|
239306
239481
|
messages.push("visibleIndex count must equal pointIndex count");
|
|
239307
239482
|
if (!Polyface.areIndicesValid(this.data.normalIndex, lengthA, lengthB, this.data.normal, this.data.normal ? this.data.normal.length : 0))
|
|
239308
|
-
messages.push("invalid normal indices in
|
|
239483
|
+
messages.push("invalid normal indices in the last facet");
|
|
239309
239484
|
if (messages.length > 0) {
|
|
239310
|
-
this.
|
|
239485
|
+
this.data.trimAllIndexArrays(lengthB);
|
|
239311
239486
|
return messages;
|
|
239312
239487
|
}
|
|
239313
239488
|
}
|
|
239314
|
-
//
|
|
239315
|
-
this._facetStart.push(lengthB);
|
|
239489
|
+
this._facetStart.push(lengthB); // append start index of the future facet
|
|
239316
239490
|
return undefined;
|
|
239317
239491
|
}
|
|
239318
|
-
/**
|
|
239319
|
-
|
|
239320
|
-
|
|
239321
|
-
|
|
239322
|
-
/** (read-only property)
|
|
239323
|
-
get
|
|
239324
|
-
|
|
239325
|
-
|
|
239326
|
-
/** (read-only property)
|
|
239327
|
-
get pointCount() {
|
|
239328
|
-
|
|
239329
|
-
|
|
239330
|
-
/** (read-only property)
|
|
239331
|
-
get
|
|
239332
|
-
|
|
239333
|
-
|
|
239492
|
+
/** Number of facets (read-only property). */
|
|
239493
|
+
get facetCount() {
|
|
239494
|
+
return this._facetStart.length - 1;
|
|
239495
|
+
}
|
|
239496
|
+
/** Number of faces (read-only property). */
|
|
239497
|
+
get faceCount() {
|
|
239498
|
+
return this.data.faceCount;
|
|
239499
|
+
}
|
|
239500
|
+
/** Number of points (read-only property). */
|
|
239501
|
+
get pointCount() {
|
|
239502
|
+
return this.data.pointCount;
|
|
239503
|
+
}
|
|
239504
|
+
/** Number of colors (read-only property). */
|
|
239505
|
+
get colorCount() {
|
|
239506
|
+
return this.data.colorCount;
|
|
239507
|
+
}
|
|
239508
|
+
/** Number of parameters (read-only property). */
|
|
239509
|
+
get paramCount() {
|
|
239510
|
+
return this.data.paramCount;
|
|
239511
|
+
}
|
|
239512
|
+
/** Number of normals (read-only property). */
|
|
239513
|
+
get normalCount() {
|
|
239514
|
+
return this.data.normalCount;
|
|
239515
|
+
}
|
|
239516
|
+
/** Test if `index` is a valid facet index. */
|
|
239517
|
+
isValidFacetIndex(index) {
|
|
239518
|
+
return index >= 0 && index < this.facetCount;
|
|
239519
|
+
}
|
|
239334
239520
|
/** Return the number of edges in a particular facet. */
|
|
239335
239521
|
numEdgeInFacet(facetIndex) {
|
|
239336
239522
|
if (this.isValidFacetIndex(facetIndex))
|
|
239337
239523
|
return this._facetStart[facetIndex + 1] - this._facetStart[facetIndex];
|
|
239338
239524
|
return 0;
|
|
239339
239525
|
}
|
|
239340
|
-
/**
|
|
239341
|
-
|
|
239342
|
-
|
|
239343
|
-
|
|
239344
|
-
/** ASSUME valid facet index
|
|
239345
|
-
facetIndex1(index) {
|
|
239346
|
-
|
|
239347
|
-
|
|
239526
|
+
/** ASSUME valid facet index. Return start index of facet in pointIndex arrays. */
|
|
239527
|
+
facetIndex0(index) {
|
|
239528
|
+
return this._facetStart[index];
|
|
239529
|
+
}
|
|
239530
|
+
/** ASSUME valid facet index. Return one past end index of facet in pointIndex arrays. */
|
|
239531
|
+
facetIndex1(index) {
|
|
239532
|
+
return this._facetStart[index + 1];
|
|
239533
|
+
}
|
|
239534
|
+
/** Create a visitor for this polyface */
|
|
239535
|
+
createVisitor(numWrap = 0) {
|
|
239536
|
+
return _IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_7__.IndexedPolyfaceVisitor.create(this, numWrap);
|
|
239537
|
+
}
|
|
239348
239538
|
/** Return the range of (optionally transformed) points in this mesh. */
|
|
239349
|
-
range(transform, result) {
|
|
239350
|
-
|
|
239351
|
-
|
|
239352
|
-
/**
|
|
239539
|
+
range(transform, result) {
|
|
239540
|
+
return this.data.range(result, transform);
|
|
239541
|
+
}
|
|
239542
|
+
/** Extend `range` with coordinates from this mesh. */
|
|
239543
|
+
extendRange(range, transform) {
|
|
239544
|
+
this.data.range(range, transform);
|
|
239545
|
+
}
|
|
239546
|
+
/**
|
|
239547
|
+
* Given the index of a facet, return the data pertaining to the face it is a part of.
|
|
239548
|
+
* @deprecated in 4.x. Use [[IndexedPolyface.tryGetFaceData]], which verifies the index is in range.
|
|
239549
|
+
*/
|
|
239353
239550
|
getFaceDataByFacetIndex(facetIndex) {
|
|
239354
239551
|
return this.data.face[this._facetToFaceData[facetIndex]];
|
|
239355
239552
|
}
|
|
239356
239553
|
/**
|
|
239357
|
-
*
|
|
239358
|
-
*
|
|
239554
|
+
* Set new FacetFaceData.
|
|
239555
|
+
* * All terminated facets since the last face declaration will be mapped to a single new FacetFaceData object using
|
|
239556
|
+
* facetToFaceData[]. FacetFaceData holds the 2D range of the face. Returns `true` if successful, `false` otherwise.
|
|
239359
239557
|
*/
|
|
239360
239558
|
setNewFaceData(endFacetIndex = 0) {
|
|
239361
239559
|
const facetStart = this._facetToFaceData.length;
|
|
239362
239560
|
if (facetStart >= this._facetStart.length)
|
|
239363
239561
|
return false;
|
|
239364
|
-
if (0 === endFacetIndex) //
|
|
239365
|
-
endFacetIndex = this._facetStart.length; //
|
|
239562
|
+
if (0 === endFacetIndex) // the default for endFacetIndex is really the last facet
|
|
239563
|
+
endFacetIndex = this._facetStart.length; // last facet index corresponds to the future facet
|
|
239366
239564
|
const faceData = _FacetFaceData__WEBPACK_IMPORTED_MODULE_8__.FacetFaceData.createNull();
|
|
239367
239565
|
const visitor = _IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_7__.IndexedPolyfaceVisitor.create(this, 0);
|
|
239368
|
-
if (!visitor.moveToReadIndex(facetStart)) { //
|
|
239566
|
+
if (!visitor.moveToReadIndex(facetStart)) { // move visitor to first facet of new face
|
|
239369
239567
|
return false;
|
|
239370
239568
|
}
|
|
239371
|
-
//
|
|
239569
|
+
// if parameter range is provided (by the polyface planeSet clipper) then use it
|
|
239372
239570
|
const paramDefined = this.data.param !== undefined;
|
|
239373
239571
|
const setParamRange = faceData.paramRange.isNull && paramDefined;
|
|
239374
239572
|
do {
|
|
@@ -239383,7 +239581,7 @@ class IndexedPolyface extends Polyface {
|
|
|
239383
239581
|
this._facetToFaceData.push(0 === this._facetStart[i] ? 0 : faceDataIndex);
|
|
239384
239582
|
return true;
|
|
239385
239583
|
}
|
|
239386
|
-
/** Second step of double dispatch:
|
|
239584
|
+
/** Second step of double dispatch: call `handler.handleIndexedPolyface(this)`. */
|
|
239387
239585
|
dispatchToGeometryHandler(handler) {
|
|
239388
239586
|
return handler.handleIndexedPolyface(this);
|
|
239389
239587
|
}
|
|
@@ -242062,14 +242260,18 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
242062
242260
|
* @public
|
|
242063
242261
|
*/
|
|
242064
242262
|
class PolyfaceData {
|
|
242065
|
-
/** boolean tag indicating if the facets are viewable from the back */
|
|
242263
|
+
/** boolean tag indicating if the facets are to be considered viewable from the back */
|
|
242066
242264
|
get twoSided() { return this._twoSided; }
|
|
242067
242265
|
set twoSided(value) { this._twoSided = value; }
|
|
242068
242266
|
/** set the `taggedNumericData` member */
|
|
242069
242267
|
setTaggedNumericData(data) {
|
|
242070
242268
|
this.taggedNumericData = data;
|
|
242071
242269
|
}
|
|
242072
|
-
/**
|
|
242270
|
+
/**
|
|
242271
|
+
* Flag indicating if the mesh closure is unknown (0), open sheet (1), closed solid (2).
|
|
242272
|
+
* * A boundary edge of a mesh is defined as an edge with only one connected facet.
|
|
242273
|
+
* * Closed solid is a mesh with no boundary edge. Open sheet is a mesh that has boundary edge(s).
|
|
242274
|
+
*/
|
|
242073
242275
|
get expectedClosure() { return this._expectedClosure; }
|
|
242074
242276
|
set expectedClosure(value) { this._expectedClosure = value; }
|
|
242075
242277
|
/** Constructor for facets.
|
|
@@ -242281,10 +242483,13 @@ class PolyfaceData {
|
|
|
242281
242483
|
this.auxData.indices[numEdge + i] = this.auxData.indices[i];
|
|
242282
242484
|
}
|
|
242283
242485
|
}
|
|
242284
|
-
static trimArray(data, length) {
|
|
242285
|
-
data
|
|
242286
|
-
|
|
242287
|
-
|
|
242486
|
+
static trimArray(data, length) {
|
|
242487
|
+
if (data && length < data.length)
|
|
242488
|
+
data.length = length;
|
|
242489
|
+
}
|
|
242490
|
+
/**
|
|
242491
|
+
* Trim all index arrays to the stated length.
|
|
242492
|
+
* This is called by PolyfaceBuilder to clean up after an aborted construction sequence.
|
|
242288
242493
|
*/
|
|
242289
242494
|
trimAllIndexArrays(length) {
|
|
242290
242495
|
PolyfaceData.trimArray(this.pointIndex, length);
|
|
@@ -288604,7 +288809,7 @@ class TestContext {
|
|
|
288604
288809
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
288605
288810
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
288606
288811
|
await core_frontend_1.NoRenderApp.startup({
|
|
288607
|
-
applicationVersion: "4.5.0-dev.
|
|
288812
|
+
applicationVersion: "4.5.0-dev.7",
|
|
288608
288813
|
applicationId: this.settings.gprid,
|
|
288609
288814
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
288610
288815
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -307437,7 +307642,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
307437
307642
|
/***/ ((module) => {
|
|
307438
307643
|
|
|
307439
307644
|
"use strict";
|
|
307440
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.5.0-dev.
|
|
307645
|
+
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"}}');
|
|
307441
307646
|
|
|
307442
307647
|
/***/ }),
|
|
307443
307648
|
|