@itwin/rpcinterface-full-stack-tests 4.8.0-dev.3 → 4.8.0-dev.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/dist/_bea9.bundled-tests.js.map +1 -1
- package/lib/dist/bundled-tests.js +713 -613
- 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/lib/dist/vendors-common_temp_node_modules_pnpm_meshoptimizer_0_20_0_node_modules_meshoptimizer_index_m-a5ae61.bundled-tests.js.map +1 -1
- package/package.json +14 -14
|
@@ -39856,6 +39856,16 @@ class FeatureOverrides {
|
|
|
39856
39856
|
getSubCategoryPriority(idLo, idHi) {
|
|
39857
39857
|
return this._subCategoryPriorities.get(idLo, idHi) ?? 0;
|
|
39858
39858
|
}
|
|
39859
|
+
/** Adds all fully transparent elements to the _neverDrawn set. This is used for BatchedModels planar masks.
|
|
39860
|
+
* @internal
|
|
39861
|
+
*/
|
|
39862
|
+
addInvisibleElementOverridesToNeverDrawn() {
|
|
39863
|
+
this._elementOverrides.forEach((lo, hi) => {
|
|
39864
|
+
const app = this.getElementOverrides(lo, hi, 0);
|
|
39865
|
+
if (app?.isFullyTransparent)
|
|
39866
|
+
this._neverDrawn.add(lo, hi);
|
|
39867
|
+
});
|
|
39868
|
+
}
|
|
39859
39869
|
/** Construct a new Overrides that overrides nothing.
|
|
39860
39870
|
* @see [FeatureSymbology.Overrides]($frontend) to construct overrides based on a [ViewState]($frontend) or [Viewport]($frontend).
|
|
39861
39871
|
*/
|
|
@@ -44546,15 +44556,24 @@ var PlanarClipMaskMode;
|
|
|
44546
44556
|
/** Mask based on priority. Different types of models have different default priorities as enumerated by [[PlanarClipMaskPriority]].
|
|
44547
44557
|
* For example, background maps have the lowest priority, so they are masked by all other types, while design models have the highest priority and are therefore never masked.
|
|
44548
44558
|
* The priority of a reality model can be overridden by [[PlanarClipMaskSettings.priority]]. This is useful to allow one reality model to mask another overlapping one.
|
|
44559
|
+
* Everything visible in the view creates the mask, so turning off models, categories, or elements (via fully transparent overrides) will make things not be in the mask.
|
|
44549
44560
|
*/
|
|
44550
44561
|
PlanarClipMaskMode[PlanarClipMaskMode["Priority"] = 1] = "Priority";
|
|
44551
|
-
/** Indicates that masks should be produced from the geometry in a set of [GeometricModel]($backend)s.
|
|
44562
|
+
/** Indicates that masks should be produced from the geometry in a set of [GeometricModel]($backend)s, regardless of what model is on or off in the view.
|
|
44563
|
+
* However, things that are off from category settings or element feature overrides in the view will not be in the mask for these models.
|
|
44564
|
+
*/
|
|
44552
44565
|
PlanarClipMaskMode[PlanarClipMaskMode["Models"] = 2] = "Models";
|
|
44553
|
-
/** Indicates that masks should be produced from geometry belonging to a set of subcategories.
|
|
44566
|
+
/** Indicates that masks should be produced from geometry belonging to a set of subcategories.
|
|
44567
|
+
* View settings do not affect what is in the mask, unless [[PlanarClipMaskSettings.subCategoryOrElementIds]] is undefined, in which case it behaves like Models mode.
|
|
44568
|
+
*/
|
|
44554
44569
|
PlanarClipMaskMode[PlanarClipMaskMode["IncludeSubCategories"] = 3] = "IncludeSubCategories";
|
|
44555
|
-
/** Indicates that masks should be produced from the geometry of a set of [GeometricElement]($backend)s.
|
|
44570
|
+
/** Indicates that masks should be produced from the geometry of a set of [GeometricElement]($backend)s.
|
|
44571
|
+
* View settings do not affect what is in the mask, unless [[PlanarClipMaskSettings.subCategoryOrElementIds]] is undefined, in which case it behaves like Models mode.
|
|
44572
|
+
*/
|
|
44556
44573
|
PlanarClipMaskMode[PlanarClipMaskMode["IncludeElements"] = 4] = "IncludeElements";
|
|
44557
|
-
/** Indicates that masks should be produced from the geometry of all [GeometricElement]($backend)s in a view, **except** for a specified set of excluded elements.
|
|
44574
|
+
/** Indicates that masks should be produced from the geometry of all [GeometricElement]($backend)s in a view, **except** for a specified set of excluded elements.
|
|
44575
|
+
* View settings do not affect what is in the mask, unless [[PlanarClipMaskSettings.subCategoryOrElementIds]] is undefined, in which case it behaves like Models mode.
|
|
44576
|
+
*/
|
|
44558
44577
|
PlanarClipMaskMode[PlanarClipMaskMode["ExcludeElements"] = 5] = "ExcludeElements";
|
|
44559
44578
|
})(PlanarClipMaskMode || (PlanarClipMaskMode = {}));
|
|
44560
44579
|
/** The default priority values for a [[PlanarClipMaskSettings]], based on model type. Models with a lower priority are masked by models with a higher priority.
|
|
@@ -50646,9 +50665,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
50646
50665
|
* [TextAnnotation2d]($backend) and [TextAnnotation3d]($backend) elements store a single TextAnnotation from which their geometric representation is generated.
|
|
50647
50666
|
* Other types of elements may store multiple TextAnnotations, positioned relative to one another.
|
|
50648
50667
|
* The annotation's position and orientation relative to the host element's [Placement]($common) is determined as follows:
|
|
50649
|
-
* - First,
|
|
50650
|
-
*
|
|
50651
|
-
*
|
|
50668
|
+
* - First, a bounding box is computed enclosing the contents of the [[textBlock].
|
|
50669
|
+
* - Then, an "anchor point" is computed based on the bounding box and the [[anchor]] property. The anchor point can be at one of the four corners of the box, in the middle of one of its four
|
|
50670
|
+
* edges, or in the center of the box.
|
|
50652
50671
|
* - The [[orientation]] is applied to rotate the box around the anchor point.
|
|
50653
50672
|
* - Finally, the [[offset]] is added to the anchor point to apply translation.
|
|
50654
50673
|
* @see [produceTextAnnotationGeometry]($backend) to decompose the annotation into a set of geometric primitives suitable for use with [[GeometryStreamBuilder.appendTextBlock]].
|
|
@@ -50702,38 +50721,39 @@ class TextAnnotation {
|
|
|
50702
50721
|
/** Compute the transform that positions and orients this annotation relative to its anchor point, based on the [[textBlock]]'s computed bounding box.
|
|
50703
50722
|
* The anchor point is computed as specified by this annotation's [[anchor]] setting. For example, if the text block is anchored
|
|
50704
50723
|
* at the bottom left, then the transform will be relative to the bottom-left corner of `textBlockExtents`.
|
|
50705
|
-
* The text block will be rotated around the fixed anchor point according to [[orientation]], then
|
|
50706
|
-
*
|
|
50724
|
+
* The text block will be rotated around the fixed anchor point according to [[orientation]], then translated by [[offset]].
|
|
50725
|
+
* The anchor point will coincide with (0, 0, 0).
|
|
50726
|
+
* @param boundingBox A box fully containing the [[textBlock]].
|
|
50707
50727
|
* @see [[computeAnchorPoint]] to compute the transform's anchor point.
|
|
50708
50728
|
*/
|
|
50709
|
-
computeTransform(
|
|
50710
|
-
const anchorPt = this.computeAnchorPoint(
|
|
50729
|
+
computeTransform(boundingBox) {
|
|
50730
|
+
const anchorPt = this.computeAnchorPoint(boundingBox);
|
|
50711
50731
|
const matrix = this.orientation.toMatrix3d();
|
|
50712
50732
|
const rotation = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Transform.createFixedPointAndMatrix(anchorPt, matrix);
|
|
50713
|
-
const translation = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Transform.createTranslation(this.offset);
|
|
50733
|
+
const translation = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Transform.createTranslation(this.offset.minus(anchorPt));
|
|
50714
50734
|
return translation.multiplyTransformTransform(rotation, rotation);
|
|
50715
50735
|
}
|
|
50716
50736
|
/** Compute the anchor point of this annotation as specified by [[anchor]].
|
|
50717
|
-
* @param
|
|
50737
|
+
* @param boundingBox A box fully containing the [[textBlock]].
|
|
50718
50738
|
* @see [[computeTransform]] to compute the transform relative to the anchor point.
|
|
50719
50739
|
*/
|
|
50720
|
-
computeAnchorPoint(
|
|
50721
|
-
let x =
|
|
50722
|
-
let y =
|
|
50740
|
+
computeAnchorPoint(boundingBox) {
|
|
50741
|
+
let x = boundingBox.low.x;
|
|
50742
|
+
let y = boundingBox.high.y;
|
|
50723
50743
|
switch (this.anchor.horizontal) {
|
|
50724
50744
|
case "center":
|
|
50725
|
-
x +=
|
|
50745
|
+
x += boundingBox.xLength() / 2;
|
|
50726
50746
|
break;
|
|
50727
50747
|
case "right":
|
|
50728
|
-
x +=
|
|
50748
|
+
x += boundingBox.xLength();
|
|
50729
50749
|
break;
|
|
50730
50750
|
}
|
|
50731
50751
|
switch (this.anchor.vertical) {
|
|
50732
50752
|
case "middle":
|
|
50733
|
-
y -=
|
|
50753
|
+
y -= boundingBox.yLength() / 2;
|
|
50734
50754
|
break;
|
|
50735
50755
|
case "bottom":
|
|
50736
|
-
y -=
|
|
50756
|
+
y -= boundingBox.yLength();
|
|
50737
50757
|
break;
|
|
50738
50758
|
}
|
|
50739
50759
|
return new _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Point3d(x, y, 0);
|
|
@@ -51102,6 +51122,26 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51102
51122
|
|
|
51103
51123
|
|
|
51104
51124
|
|
|
51125
|
+
/***/ }),
|
|
51126
|
+
|
|
51127
|
+
/***/ "../../core/common/lib/esm/annotation/TextBlockLayoutResult.js":
|
|
51128
|
+
/*!*********************************************************************!*\
|
|
51129
|
+
!*** ../../core/common/lib/esm/annotation/TextBlockLayoutResult.js ***!
|
|
51130
|
+
\*********************************************************************/
|
|
51131
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
51132
|
+
|
|
51133
|
+
"use strict";
|
|
51134
|
+
__webpack_require__.r(__webpack_exports__);
|
|
51135
|
+
/*---------------------------------------------------------------------------------------------
|
|
51136
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
51137
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
51138
|
+
*--------------------------------------------------------------------------------------------*/
|
|
51139
|
+
/** @packageDocumentation
|
|
51140
|
+
* @module Annotation
|
|
51141
|
+
*/
|
|
51142
|
+
|
|
51143
|
+
|
|
51144
|
+
|
|
51105
51145
|
/***/ }),
|
|
51106
51146
|
|
|
51107
51147
|
/***/ "../../core/common/lib/esm/annotation/TextStyle.js":
|
|
@@ -51229,549 +51269,550 @@ class TextStyle {
|
|
|
51229
51269
|
"use strict";
|
|
51230
51270
|
__webpack_require__.r(__webpack_exports__);
|
|
51231
51271
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
51232
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
51233
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
51234
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
51272
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_41__.AdditionalTransform),
|
|
51273
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__.AffineTransform),
|
|
51274
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.AmbientLight),
|
|
51235
51275
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
51236
51276
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
51237
51277
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
51238
51278
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
51239
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
51240
|
-
/* harmony export */ "Atmosphere": () => (/* reexport safe */
|
|
51241
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
51242
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
51243
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
51244
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
51245
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
51246
|
-
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */
|
|
51247
|
-
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */
|
|
51248
|
-
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */
|
|
51249
|
-
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */
|
|
51250
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
51251
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
51252
|
-
/* harmony export */ "BatchType": () => (/* reexport safe */
|
|
51253
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
51254
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
51255
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
51256
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
51257
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
51258
|
-
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */
|
|
51259
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
51260
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
51261
|
-
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */
|
|
51262
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
51263
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
51264
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
51265
|
-
/* harmony export */ "Camera": () => (/* reexport safe */
|
|
51266
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
51267
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
51268
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
51269
|
-
/* harmony export */ "CesiumTerrainAssetId": () => (/* reexport safe */
|
|
51270
|
-
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */
|
|
51271
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
51272
|
-
/* harmony export */ "ChangedValueState": () => (/* reexport safe */
|
|
51273
|
-
/* harmony export */ "ChangesetType": () => (/* reexport safe */
|
|
51274
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
51275
|
-
/* harmony export */ "ClipIntersectionStyle": () => (/* reexport safe */
|
|
51276
|
-
/* harmony export */ "ClipStyle": () => (/* reexport safe */
|
|
51277
|
-
/* harmony export */ "Code": () => (/* reexport safe */
|
|
51278
|
-
/* harmony export */ "CodeScopeSpec": () => (/* reexport safe */
|
|
51279
|
-
/* harmony export */ "CodeSpec": () => (/* reexport safe */
|
|
51280
|
-
/* harmony export */ "ColorByName": () => (/* reexport safe */
|
|
51281
|
-
/* harmony export */ "ColorDef": () => (/* reexport safe */
|
|
51282
|
-
/* harmony export */ "ColorIndex": () => (/* reexport safe */
|
|
51283
|
-
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */
|
|
51284
|
-
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */
|
|
51285
|
-
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */
|
|
51286
|
-
/* harmony export */ "ContentFlags": () => (/* reexport safe */
|
|
51287
|
-
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */
|
|
51288
|
-
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */
|
|
51289
|
-
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */
|
|
51290
|
-
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */
|
|
51291
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */
|
|
51292
|
-
/* harmony export */ "CutStyle": () => (/* reexport safe */
|
|
51293
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
51294
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
51295
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
51296
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
51297
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
51298
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
51299
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
51300
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
51301
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
51302
|
-
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */
|
|
51303
|
-
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */
|
|
51304
|
-
/* harmony export */ "DomainOptions": () => (/* reexport safe */
|
|
51305
|
-
/* harmony export */ "ECJsNames": () => (/* reexport safe */
|
|
51306
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
51307
|
-
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */
|
|
51308
|
-
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */
|
|
51309
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
51310
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
51311
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
51312
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
51313
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
51314
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
51315
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
51316
|
-
/* harmony export */ "EntityMetaData": () => (/* reexport safe */
|
|
51317
|
-
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */
|
|
51318
|
-
/* harmony export */ "Environment": () => (/* reexport safe */
|
|
51319
|
-
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */
|
|
51320
|
-
/* harmony export */ "Feature": () => (/* reexport safe */
|
|
51321
|
-
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */
|
|
51322
|
-
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */
|
|
51323
|
-
/* harmony export */ "FeatureIndex": () => (/* reexport safe */
|
|
51324
|
-
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */
|
|
51325
|
-
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */
|
|
51326
|
-
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */
|
|
51327
|
-
/* harmony export */ "FeatureTable": () => (/* reexport safe */
|
|
51328
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
51329
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
51330
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
51331
|
-
/* harmony export */ "FontMap": () => (/* reexport safe */
|
|
51332
|
-
/* harmony export */ "FontType": () => (/* reexport safe */
|
|
51279
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_42__.AreaPattern),
|
|
51280
|
+
/* harmony export */ "Atmosphere": () => (/* reexport safe */ _Atmosphere__WEBPACK_IMPORTED_MODULE_7__.Atmosphere),
|
|
51281
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_148__.B3dmHeader),
|
|
51282
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.BRepEntity),
|
|
51283
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__.BRepGeometryOperation),
|
|
51284
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BackendError),
|
|
51285
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.BackgroundFill),
|
|
51286
|
+
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_9__.BackgroundMapProvider),
|
|
51287
|
+
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_10__.BackgroundMapSettings),
|
|
51288
|
+
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_9__.BackgroundMapType),
|
|
51289
|
+
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_11__.Base64EncodedString),
|
|
51290
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__.BaseLayerSettings),
|
|
51291
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.BaseMapLayerSettings),
|
|
51292
|
+
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.BatchType),
|
|
51293
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_141__.BentleyCloudRpcConfiguration),
|
|
51294
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_141__.BentleyCloudRpcManager),
|
|
51295
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_142__.BentleyCloudRpcProtocol),
|
|
51296
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BentleyError),
|
|
51297
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BentleyStatus),
|
|
51298
|
+
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.BisCodeSpec),
|
|
51299
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.BlobOptionsBuilder),
|
|
51300
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_43__.BoundingSphere),
|
|
51301
|
+
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.BriefcaseIdValue),
|
|
51302
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.BriefcaseStatus),
|
|
51303
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.CURRENT_INVOCATION),
|
|
51304
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.CURRENT_REQUEST),
|
|
51305
|
+
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_13__.Camera),
|
|
51306
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__.Carto2DDegrees),
|
|
51307
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_44__.Cartographic),
|
|
51308
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_44__.CartographicRange),
|
|
51309
|
+
/* harmony export */ "CesiumTerrainAssetId": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.CesiumTerrainAssetId),
|
|
51310
|
+
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ChangeOpCode),
|
|
51311
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ChangeSetStatus),
|
|
51312
|
+
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ChangedValueState),
|
|
51313
|
+
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_16__.ChangesetType),
|
|
51314
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ChannelConstraintError),
|
|
51315
|
+
/* harmony export */ "ClipIntersectionStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_17__.ClipIntersectionStyle),
|
|
51316
|
+
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_17__.ClipStyle),
|
|
51317
|
+
/* harmony export */ "Code": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.Code),
|
|
51318
|
+
/* harmony export */ "CodeScopeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.CodeScopeSpec),
|
|
51319
|
+
/* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_18__.CodeSpec),
|
|
51320
|
+
/* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_19__.ColorByName),
|
|
51321
|
+
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_20__.ColorDef),
|
|
51322
|
+
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.ColorIndex),
|
|
51323
|
+
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_21__.CommonLoggerCategory),
|
|
51324
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_149__.CompositeTileHeader),
|
|
51325
|
+
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_32__.ConcreteEntityTypes),
|
|
51326
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentFlags),
|
|
51327
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.ContentIdProvider),
|
|
51328
|
+
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModel),
|
|
51329
|
+
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModelProps),
|
|
51330
|
+
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.ContextRealityModels),
|
|
51331
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.CurrentImdlVersion),
|
|
51332
|
+
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_17__.CutStyle),
|
|
51333
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbQueryError),
|
|
51334
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbRequestKind),
|
|
51335
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbResponseKind),
|
|
51336
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbResponseStatus),
|
|
51337
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.DbResult),
|
|
51338
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.DbValueFormat),
|
|
51339
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_93__.DefaultSupportedTypes),
|
|
51340
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_134__.DevToolsRpcInterface),
|
|
51341
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_134__.DevToolsStatsOptions),
|
|
51342
|
+
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__.DisplayStyle3dSettings),
|
|
51343
|
+
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__.DisplayStyleSettings),
|
|
51344
|
+
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.DomainOptions),
|
|
51345
|
+
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ECJsNames),
|
|
51346
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_87__.ECSqlReader),
|
|
51347
|
+
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ECSqlSystemProperty),
|
|
51348
|
+
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__.ECSqlValueType),
|
|
51349
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Easing),
|
|
51350
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_67__.EcefLocation),
|
|
51351
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.EdgeArgs),
|
|
51352
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__.ElementGeometry),
|
|
51353
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_89__.ElementGeometryChange),
|
|
51354
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__.ElementGeometryOpcode),
|
|
51355
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_77__.EmptyLocalization),
|
|
51356
|
+
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_31__.EntityMetaData),
|
|
51357
|
+
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_32__.EntityReferenceSet),
|
|
51358
|
+
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_33__.Environment),
|
|
51359
|
+
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.ExternalSourceAttachmentRole),
|
|
51360
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.Feature),
|
|
51361
|
+
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__.FeatureAppearance),
|
|
51362
|
+
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__.FeatureAppearanceProvider),
|
|
51363
|
+
/* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.FeatureIndex),
|
|
51364
|
+
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.FeatureIndexType),
|
|
51365
|
+
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_30__.FeatureOverrideType),
|
|
51366
|
+
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__.FeatureOverrides),
|
|
51367
|
+
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.FeatureTable),
|
|
51368
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.FeatureTableHeader),
|
|
51369
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.FillDisplay),
|
|
51370
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_60__.FillFlags),
|
|
51371
|
+
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_37__.FontMap),
|
|
51372
|
+
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_37__.FontType),
|
|
51333
51373
|
/* harmony export */ "FractionRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.FractionRun),
|
|
51334
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
51335
|
-
/* harmony export */ "Frustum": () => (/* reexport safe */
|
|
51336
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
51337
|
-
/* harmony export */ "GenericInstanceFilter": () => (/* reexport safe */
|
|
51338
|
-
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* reexport safe */
|
|
51339
|
-
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */
|
|
51340
|
-
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */
|
|
51341
|
-
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */
|
|
51342
|
-
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */
|
|
51343
|
-
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */
|
|
51344
|
-
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */
|
|
51345
|
-
/* harmony export */ "GeographicCRS": () => (/* reexport safe */
|
|
51346
|
-
/* harmony export */ "GeometryClass": () => (/* reexport safe */
|
|
51347
|
-
/* harmony export */ "GeometryParams": () => (/* reexport safe */
|
|
51348
|
-
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */
|
|
51349
|
-
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */
|
|
51350
|
-
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */
|
|
51351
|
-
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */
|
|
51352
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
51353
|
-
/* harmony export */ "GlobeMode": () => (/* reexport safe */
|
|
51354
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
51355
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
51356
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
51357
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
51358
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
51359
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
51360
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
51361
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
51362
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
51363
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
51364
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
51365
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
51366
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
51367
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
51368
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
51369
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
51370
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
51371
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
51372
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
51373
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
51374
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
51375
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
51376
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
51377
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
51378
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
51379
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
51380
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
51381
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
51382
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
51383
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
51384
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
51385
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
51386
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
51387
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
51388
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
51389
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
51390
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
51391
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
51392
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
51393
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
51394
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
51395
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
51396
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
51397
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
51398
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
51374
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.FresnelSettings),
|
|
51375
|
+
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.Frustum),
|
|
51376
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_47__.FrustumPlanes),
|
|
51377
|
+
/* harmony export */ "GenericInstanceFilter": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_39__.GenericInstanceFilter),
|
|
51378
|
+
/* harmony export */ "GenericInstanceFilterRuleValue": () => (/* reexport safe */ _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_39__.GenericInstanceFilterRuleValue),
|
|
51379
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_40__.GeoCoordStatus),
|
|
51380
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeocentricTransform),
|
|
51381
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeodeticDatum),
|
|
51382
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_49__.GeodeticEllipsoid),
|
|
51383
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeodeticTransform),
|
|
51384
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GeodeticTransformPath),
|
|
51385
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.GeographicCRS),
|
|
51386
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.GeometryClass),
|
|
51387
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_57__.GeometryParams),
|
|
51388
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.GeometryStreamBuilder),
|
|
51389
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.GeometryStreamFlags),
|
|
51390
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__.GeometryStreamIterator),
|
|
51391
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_58__.GeometrySummaryVerbosity),
|
|
51392
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__.GlbHeader),
|
|
51393
|
+
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_10__.GlobeMode),
|
|
51394
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__.GltfV2ChunkTypes),
|
|
51395
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__.GltfVersions),
|
|
51396
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_59__.Gradient),
|
|
51397
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_60__.GraphicParams),
|
|
51398
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GridFileDefinition),
|
|
51399
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.GridFileTransform),
|
|
51400
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.GridOrientationType),
|
|
51401
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_61__.GroundPlane),
|
|
51402
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_64__.HSLColor),
|
|
51403
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_65__.HSVColor),
|
|
51404
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_65__.HSVConstants),
|
|
51405
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_41__.Helmert2DWithZOffset),
|
|
51406
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.HemisphereLights),
|
|
51407
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_62__.HiddenLine),
|
|
51408
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_63__.Hilite),
|
|
51409
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.HorizontalCRS),
|
|
51410
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.HorizontalCRSExtent),
|
|
51411
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_152__.I3dmHeader),
|
|
51412
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_67__.IModel),
|
|
51413
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.IModelError),
|
|
51414
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_135__.IModelNotFoundResponse),
|
|
51415
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_135__.IModelReadRpcInterface),
|
|
51416
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.IModelStatus),
|
|
51417
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_136__.IModelTileRpcInterface),
|
|
51418
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_69__.IModelVersion),
|
|
51419
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.INSTANCE),
|
|
51420
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageBuffer),
|
|
51421
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageBufferFormat),
|
|
51422
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_51__.ImageGraphic),
|
|
51423
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_51__.ImageGraphicCorners),
|
|
51424
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.ImageMapLayerSettings),
|
|
51425
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageSource),
|
|
51426
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.ImageSourceFormat),
|
|
51427
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.ImdlFlags),
|
|
51428
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__.ImdlHeader),
|
|
51429
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__.InternetConnectivityStatus),
|
|
51430
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Interpolation),
|
|
51431
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_73__.IpcSession),
|
|
51432
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocket),
|
|
51433
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketBackend),
|
|
51434
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketFrontend),
|
|
51435
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketMessage),
|
|
51436
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__.IpcWebSocketMessageType),
|
|
51437
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_72__.IpcWebSocketTransport),
|
|
51438
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.LightSettings),
|
|
51399
51439
|
/* harmony export */ "LineBreakRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.LineBreakRun),
|
|
51400
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
51401
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
51402
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
51403
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
51404
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
51405
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
51406
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
51407
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
51408
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
51409
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
51410
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
51411
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
51412
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
51413
|
-
/* harmony export */ "ModelFeature": () => (/* reexport safe */
|
|
51414
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
51415
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
51416
|
-
/* harmony export */ "MonochromeMode": () => (/* reexport safe */
|
|
51417
|
-
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */
|
|
51418
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
51419
|
-
/* harmony export */ "NonUniformColor": () => (/* reexport safe */
|
|
51420
|
-
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */
|
|
51421
|
-
/* harmony export */ "Npc": () => (/* reexport safe */
|
|
51422
|
-
/* harmony export */ "NpcCenter": () => (/* reexport safe */
|
|
51423
|
-
/* harmony export */ "NpcCorners": () => (/* reexport safe */
|
|
51424
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
51425
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
51426
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
51427
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
51428
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
51429
|
-
/* harmony export */ "PackedFeature": () => (/* reexport safe */
|
|
51430
|
-
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */
|
|
51431
|
-
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */
|
|
51440
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_76__.LinePixels),
|
|
51441
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_52__.LineStyle),
|
|
51442
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__.MapImagerySettings),
|
|
51443
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapLayerSettings),
|
|
51444
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.MapSubLayerSettings),
|
|
51445
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.MarshalingBinaryMarker),
|
|
51446
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_80__.MassPropertiesOperation),
|
|
51447
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshEdge),
|
|
51448
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshEdges),
|
|
51449
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshPolyline),
|
|
51450
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.MeshPolylineList),
|
|
51451
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_82__.ModelClipGroup),
|
|
51452
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_82__.ModelClipGroups),
|
|
51453
|
+
/* harmony export */ "ModelFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.ModelFeature),
|
|
51454
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_89__.ModelGeometryChanges),
|
|
51455
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__.ModelMapLayerSettings),
|
|
51456
|
+
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__.MonochromeMode),
|
|
51457
|
+
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.MultiModelPackedFeatureTable),
|
|
51458
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.NoContentError),
|
|
51459
|
+
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__.NonUniformColor),
|
|
51460
|
+
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_81__.NormalMapFlags),
|
|
51461
|
+
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.Npc),
|
|
51462
|
+
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.NpcCenter),
|
|
51463
|
+
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_38__.NpcCorners),
|
|
51464
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.OPERATION),
|
|
51465
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_85__.OctEncodedNormal),
|
|
51466
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_85__.OctEncodedNormalPair),
|
|
51467
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__.OverriddenBy),
|
|
51468
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.POLICY),
|
|
51469
|
+
/* harmony export */ "PackedFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.PackedFeature),
|
|
51470
|
+
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.PackedFeatureModelTable),
|
|
51471
|
+
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_36__.PackedFeatureTable),
|
|
51432
51472
|
/* harmony export */ "Paragraph": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Paragraph),
|
|
51433
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
51434
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
51435
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
51436
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
51437
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
51438
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
51439
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
51440
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
51441
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
51442
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
51443
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
51444
|
-
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */
|
|
51445
|
-
/* harmony export */ "ProfileOptions": () => (/* reexport safe */
|
|
51446
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
51447
|
-
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */
|
|
51448
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
51449
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
51450
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
51451
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
51452
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
51453
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
51454
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
51455
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
51456
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
51457
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
51458
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
51459
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
51460
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
51461
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
51462
|
-
/* harmony export */ "QueryParamType": () => (/* reexport safe */
|
|
51463
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
51464
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
51465
|
-
/* harmony export */ "Rank": () => (/* reexport safe */
|
|
51466
|
-
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */
|
|
51467
|
-
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */
|
|
51468
|
-
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */
|
|
51469
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
51470
|
-
/* harmony export */ "RelatedElement": () => (/* reexport safe */
|
|
51471
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
51472
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
51473
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
51474
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
51475
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
51476
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
51477
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
51478
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
51479
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
51480
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
51481
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
51482
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
51483
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
51484
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
51485
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
51486
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
51487
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
51488
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
51489
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
51490
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
51491
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
51492
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
51493
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
51494
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
51495
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
51496
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
51497
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
51498
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
51499
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
51500
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
51501
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
51502
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
51503
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
51504
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
51505
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
51506
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
51507
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
51508
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
51509
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
51510
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
51511
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
51512
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
51513
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
51473
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_53__.Placement2d),
|
|
51474
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_53__.Placement3d),
|
|
51475
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_90__.PlanProjectionSettings),
|
|
51476
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__.PlanarClipMaskMode),
|
|
51477
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__.PlanarClipMaskPriority),
|
|
51478
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__.PlanarClipMaskSettings),
|
|
51479
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_154__.PntsHeader),
|
|
51480
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_94__.PointCloudDisplaySettings),
|
|
51481
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.PolylineEdgeArgs),
|
|
51482
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.PolylineTypeFlags),
|
|
51483
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.PositionalVectorTransform),
|
|
51484
|
+
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_31__.PrimitiveTypeCode),
|
|
51485
|
+
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.ProfileOptions),
|
|
51486
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__.Projection),
|
|
51487
|
+
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_31__.PropertyMetaData),
|
|
51488
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_87__.PropertyMetaDataMap),
|
|
51489
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QParams2d),
|
|
51490
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QParams3d),
|
|
51491
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2d),
|
|
51492
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2dBuffer),
|
|
51493
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2dBufferBuilder),
|
|
51494
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint2dList),
|
|
51495
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3d),
|
|
51496
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3dBuffer),
|
|
51497
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3dBufferBuilder),
|
|
51498
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.QPoint3dList),
|
|
51499
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_92__.Quantization),
|
|
51500
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryBinder),
|
|
51501
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryOptionsBuilder),
|
|
51502
|
+
/* harmony export */ "QueryParamType": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryParamType),
|
|
51503
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__.QueryRowFormat),
|
|
51504
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.REGISTRY),
|
|
51505
|
+
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.Rank),
|
|
51506
|
+
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.RealityDataFormat),
|
|
51507
|
+
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.RealityDataProvider),
|
|
51508
|
+
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__.RealityDataSourceKey),
|
|
51509
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_94__.RealityModelDisplaySettings),
|
|
51510
|
+
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.RelatedElement),
|
|
51511
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_96__.RenderMaterial),
|
|
51512
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_118__.RenderMode),
|
|
51513
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_97__.RenderSchedule),
|
|
51514
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_98__.RenderTexture),
|
|
51515
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.ResponseLike),
|
|
51516
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_99__.RgbColor),
|
|
51517
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcConfiguration),
|
|
51518
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcContentType),
|
|
51519
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcControlChannel),
|
|
51520
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcControlResponse),
|
|
51521
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcDefaultConfiguration),
|
|
51522
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcDirectProtocol),
|
|
51523
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcDirectRequest),
|
|
51524
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcEndpoint),
|
|
51525
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_140__.RpcInterface),
|
|
51526
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_122__.RpcInvocation),
|
|
51527
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_100__.RpcManager),
|
|
51528
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.RpcMarshaling),
|
|
51529
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_144__.RpcMultipart),
|
|
51530
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcNotFoundResponse),
|
|
51531
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_143__.RpcOpenAPIDescription),
|
|
51532
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__.RpcOperation),
|
|
51533
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__.RpcOperationPolicy),
|
|
51534
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_126__.RpcPendingQueue),
|
|
51535
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__.RpcPendingResponse),
|
|
51536
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcProtocol),
|
|
51537
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcProtocolEvent),
|
|
51538
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcProtocolVersion),
|
|
51539
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushChannel),
|
|
51540
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushConnection),
|
|
51541
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushService),
|
|
51542
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushSubscription),
|
|
51543
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__.RpcPushTransport),
|
|
51544
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__.RpcRegistry),
|
|
51545
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.RpcRequest),
|
|
51546
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcRequestEvent),
|
|
51547
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__.RpcRequestFulfillment),
|
|
51548
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcRequestStatus),
|
|
51549
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.RpcResponseCacheControl),
|
|
51550
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__.RpcRoutingMap),
|
|
51551
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_131__.RpcRoutingToken),
|
|
51552
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__.RpcSerializedValue),
|
|
51553
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_123__.RpcSessionInvocation),
|
|
51514
51554
|
/* harmony export */ "Run": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.Run),
|
|
51515
|
-
/* harmony export */ "SchemaState": () => (/* reexport safe */
|
|
51516
|
-
/* harmony export */ "SectionType": () => (/* reexport safe */
|
|
51517
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
51518
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
51519
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
51520
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
51521
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
51522
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
51523
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
51524
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
51525
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
51526
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
51527
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
51528
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
51529
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
51530
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
51531
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
51532
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
51533
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
51534
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
51535
|
-
/* harmony export */ "SyncMode": () => (/* reexport safe */
|
|
51536
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
51537
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
51538
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
51555
|
+
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.SchemaState),
|
|
51556
|
+
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.SectionType),
|
|
51557
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ServerError),
|
|
51558
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_68__.ServerTimeoutError),
|
|
51559
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_95__.SilhouetteEdgeArgs),
|
|
51560
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyBox),
|
|
51561
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyBoxImageType),
|
|
51562
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyCube),
|
|
51563
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkyGradient),
|
|
51564
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_102__.SkySphere),
|
|
51565
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_137__.SnapshotIModelRpcInterface),
|
|
51566
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_75__.SolarLight),
|
|
51567
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_105__.SolarShadowSettings),
|
|
51568
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifier),
|
|
51569
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierFlags),
|
|
51570
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierInsideDisplay),
|
|
51571
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifierOutsideDisplay),
|
|
51572
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__.SpatialClassifiers),
|
|
51573
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_107__.SubCategoryAppearance),
|
|
51574
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_108__.SubCategoryOverride),
|
|
51575
|
+
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__.SyncMode),
|
|
51576
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.TerrainHeightOriginMode),
|
|
51577
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__.TerrainSettings),
|
|
51578
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_138__.TestRpcManager),
|
|
51539
51579
|
/* harmony export */ "TextAnnotation": () => (/* reexport safe */ _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__.TextAnnotation),
|
|
51540
51580
|
/* harmony export */ "TextBlock": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlock),
|
|
51541
51581
|
/* harmony export */ "TextBlockComponent": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextBlockComponent),
|
|
51542
51582
|
/* harmony export */ "TextRun": () => (/* reexport safe */ _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__.TextRun),
|
|
51543
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
51544
|
-
/* harmony export */ "TextStyle": () => (/* reexport safe */
|
|
51545
|
-
/* harmony export */ "TextStyleSettings": () => (/* reexport safe */
|
|
51546
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
51547
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
51548
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
51549
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
51550
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
51551
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
51552
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
51553
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
51554
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
51555
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
51556
|
-
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */
|
|
51557
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
51558
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
51559
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
51560
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
51561
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
51562
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
51563
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
51564
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
51565
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
51566
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
51567
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
51568
|
-
/* harmony export */ "TypeDefinition": () => (/* reexport safe */
|
|
51569
|
-
/* harmony export */ "TypeOfChange": () => (/* reexport safe */
|
|
51570
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
51571
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
51572
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
51573
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
51574
|
-
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */
|
|
51575
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
51576
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
51577
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
51578
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
51579
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
51580
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
51581
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
51582
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
51583
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
51584
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
51585
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
51586
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
51587
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
51588
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
51589
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
51590
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
51591
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
51592
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
51593
|
-
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */
|
|
51594
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
51595
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
51596
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
51597
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
51598
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
51599
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
51600
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
51601
|
-
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */
|
|
51602
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
51603
|
-
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */
|
|
51604
|
-
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */
|
|
51605
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
51606
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
51607
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
51608
|
-
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */
|
|
51609
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
51610
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
51611
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
51612
|
-
/* harmony export */ "readElementMeshes": () => (/* reexport safe */
|
|
51613
|
-
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */
|
|
51614
|
-
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */
|
|
51615
|
-
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */
|
|
51583
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_55__.TextString),
|
|
51584
|
+
/* harmony export */ "TextStyle": () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_6__.TextStyle),
|
|
51585
|
+
/* harmony export */ "TextStyleSettings": () => (/* reexport safe */ _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_6__.TextStyleSettings),
|
|
51586
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_81__.TextureMapUnits),
|
|
51587
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_110__.TextureMapping),
|
|
51588
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_111__.TextureTransparency),
|
|
51589
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplay),
|
|
51590
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplayMode),
|
|
51591
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplaySensor),
|
|
51592
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicDisplaySensorSettings),
|
|
51593
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientColorScheme),
|
|
51594
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientMode),
|
|
51595
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientSettings),
|
|
51596
|
+
/* harmony export */ "ThematicGradientTransparencyMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__.ThematicGradientTransparencyMode),
|
|
51597
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_114__.TileContentSource),
|
|
51598
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileFormat),
|
|
51599
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileHeader),
|
|
51600
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.TileMetadataReader),
|
|
51601
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.TileOptions),
|
|
51602
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileReadError),
|
|
51603
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.TileReadStatus),
|
|
51604
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.TreeFlags),
|
|
51605
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Tween),
|
|
51606
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_115__.Tweens),
|
|
51607
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_116__.TxnAction),
|
|
51608
|
+
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.TypeDefinition),
|
|
51609
|
+
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_14__.TypeOfChange),
|
|
51610
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__.VerticalCRS),
|
|
51611
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.ViewDetails),
|
|
51612
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_117__.ViewDetails3d),
|
|
51613
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_118__.ViewFlags),
|
|
51614
|
+
/* harmony export */ "ViewStoreRpc": () => (/* reexport safe */ _ViewProps__WEBPACK_IMPORTED_MODULE_119__.ViewStoreRpc),
|
|
51615
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__.WEB_RPC_CONSTANTS),
|
|
51616
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_147__.WebAppRpcLogging),
|
|
51617
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_145__.WebAppRpcProtocol),
|
|
51618
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_146__.WebAppRpcRequest),
|
|
51619
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_158__.WhiteOnWhiteReversalSettings),
|
|
51620
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_139__.WipRpcInterface),
|
|
51621
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__.XyzRotation),
|
|
51622
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.aggregateLoad),
|
|
51623
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.bisectTileRange2d),
|
|
51624
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.bisectTileRange3d),
|
|
51625
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarAngles),
|
|
51626
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarDirection),
|
|
51627
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSolarDirectionFromAngles),
|
|
51628
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__.calculateSunriseOrSunset),
|
|
51629
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.compareIModelTileTreeIds),
|
|
51630
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.computeChildTileProps),
|
|
51631
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.computeChildTileRanges),
|
|
51632
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.computeTileChordTolerance),
|
|
51633
|
+
/* harmony export */ "decodeTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.decodeTileContentDescription),
|
|
51634
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.defaultTileOptions),
|
|
51635
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.getMaximumMajorTileFormatVersion),
|
|
51636
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_74__.getPullChangesIpcChannel),
|
|
51637
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_114__.getTileObjectReference),
|
|
51638
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.iModelTileTreeIdToString),
|
|
51639
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_70__.iTwinChannel),
|
|
51640
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__.initializeRpcRequest),
|
|
51641
|
+
/* harmony export */ "ipcAppChannels": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_74__.ipcAppChannels),
|
|
51642
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.isKnownTileFormat),
|
|
51643
|
+
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.isPlacement2dProps),
|
|
51644
|
+
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_29__.isPlacement3dProps),
|
|
51645
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.isPowerOfTwo),
|
|
51646
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.isValidImageSourceFormat),
|
|
51647
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_40__.mapToGeoServiceStatus),
|
|
51648
|
+
/* harmony export */ "nativeAppIpcStrings": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__.nativeAppIpcStrings),
|
|
51649
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_66__.nextHighestPowerOfTwo),
|
|
51650
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.nextPoint3d64FromByteStream),
|
|
51651
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.parseTileTreeIdAndContentId),
|
|
51652
|
+
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_28__.readElementMeshes),
|
|
51653
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__.readTileContentDescription),
|
|
51654
|
+
/* harmony export */ "rpcOverIpcStrings": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_73__.rpcOverIpcStrings),
|
|
51655
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__.tileFormatFromNumber)
|
|
51616
51656
|
/* harmony export */ });
|
|
51617
51657
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
51618
51658
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
51619
51659
|
/* harmony import */ var _annotation_TextAnnotation__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./annotation/TextAnnotation */ "../../core/common/lib/esm/annotation/TextAnnotation.js");
|
|
51620
51660
|
/* harmony import */ var _annotation_TextBlock__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./annotation/TextBlock */ "../../core/common/lib/esm/annotation/TextBlock.js");
|
|
51621
51661
|
/* harmony import */ var _annotation_TextBlockGeometryProps__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./annotation/TextBlockGeometryProps */ "../../core/common/lib/esm/annotation/TextBlockGeometryProps.js");
|
|
51622
|
-
/* harmony import */ var
|
|
51623
|
-
/* harmony import */ var
|
|
51624
|
-
/* harmony import */ var
|
|
51625
|
-
/* harmony import */ var
|
|
51626
|
-
/* harmony import */ var
|
|
51627
|
-
/* harmony import */ var
|
|
51628
|
-
/* harmony import */ var
|
|
51629
|
-
/* harmony import */ var
|
|
51630
|
-
/* harmony import */ var
|
|
51631
|
-
/* harmony import */ var
|
|
51632
|
-
/* harmony import */ var
|
|
51633
|
-
/* harmony import */ var
|
|
51634
|
-
/* harmony import */ var
|
|
51635
|
-
/* harmony import */ var
|
|
51636
|
-
/* harmony import */ var
|
|
51637
|
-
/* harmony import */ var
|
|
51638
|
-
/* harmony import */ var
|
|
51639
|
-
/* harmony import */ var
|
|
51640
|
-
/* harmony import */ var
|
|
51641
|
-
/* harmony import */ var
|
|
51642
|
-
/* harmony import */ var
|
|
51643
|
-
/* harmony import */ var
|
|
51644
|
-
/* harmony import */ var
|
|
51645
|
-
/* harmony import */ var
|
|
51646
|
-
/* harmony import */ var
|
|
51647
|
-
/* harmony import */ var
|
|
51648
|
-
/* harmony import */ var
|
|
51649
|
-
/* harmony import */ var
|
|
51650
|
-
/* harmony import */ var
|
|
51651
|
-
/* harmony import */ var
|
|
51652
|
-
/* harmony import */ var
|
|
51653
|
-
/* harmony import */ var
|
|
51654
|
-
/* harmony import */ var
|
|
51655
|
-
/* harmony import */ var
|
|
51656
|
-
/* harmony import */ var
|
|
51657
|
-
/* harmony import */ var
|
|
51658
|
-
/* harmony import */ var
|
|
51659
|
-
/* harmony import */ var
|
|
51660
|
-
/* harmony import */ var
|
|
51661
|
-
/* harmony import */ var
|
|
51662
|
-
/* harmony import */ var
|
|
51663
|
-
/* harmony import */ var
|
|
51664
|
-
/* harmony import */ var
|
|
51665
|
-
/* harmony import */ var
|
|
51666
|
-
/* harmony import */ var
|
|
51667
|
-
/* harmony import */ var
|
|
51668
|
-
/* harmony import */ var
|
|
51669
|
-
/* harmony import */ var
|
|
51670
|
-
/* harmony import */ var
|
|
51671
|
-
/* harmony import */ var
|
|
51672
|
-
/* harmony import */ var
|
|
51673
|
-
/* harmony import */ var
|
|
51674
|
-
/* harmony import */ var
|
|
51675
|
-
/* harmony import */ var
|
|
51676
|
-
/* harmony import */ var
|
|
51677
|
-
/* harmony import */ var
|
|
51678
|
-
/* harmony import */ var
|
|
51679
|
-
/* harmony import */ var
|
|
51680
|
-
/* harmony import */ var
|
|
51681
|
-
/* harmony import */ var
|
|
51682
|
-
/* harmony import */ var
|
|
51683
|
-
/* harmony import */ var
|
|
51684
|
-
/* harmony import */ var
|
|
51685
|
-
/* harmony import */ var
|
|
51686
|
-
/* harmony import */ var
|
|
51687
|
-
/* harmony import */ var
|
|
51688
|
-
/* harmony import */ var
|
|
51689
|
-
/* harmony import */ var
|
|
51690
|
-
/* harmony import */ var
|
|
51691
|
-
/* harmony import */ var
|
|
51692
|
-
/* harmony import */ var
|
|
51693
|
-
/* harmony import */ var
|
|
51694
|
-
/* harmony import */ var
|
|
51695
|
-
/* harmony import */ var
|
|
51696
|
-
/* harmony import */ var
|
|
51697
|
-
/* harmony import */ var
|
|
51698
|
-
/* harmony import */ var
|
|
51699
|
-
/* harmony import */ var
|
|
51700
|
-
/* harmony import */ var
|
|
51701
|
-
/* harmony import */ var
|
|
51702
|
-
/* harmony import */ var
|
|
51703
|
-
/* harmony import */ var
|
|
51704
|
-
/* harmony import */ var
|
|
51705
|
-
/* harmony import */ var
|
|
51706
|
-
/* harmony import */ var
|
|
51707
|
-
/* harmony import */ var
|
|
51708
|
-
/* harmony import */ var
|
|
51709
|
-
/* harmony import */ var
|
|
51710
|
-
/* harmony import */ var
|
|
51711
|
-
/* harmony import */ var
|
|
51712
|
-
/* harmony import */ var
|
|
51713
|
-
/* harmony import */ var
|
|
51714
|
-
/* harmony import */ var
|
|
51715
|
-
/* harmony import */ var
|
|
51716
|
-
/* harmony import */ var
|
|
51717
|
-
/* harmony import */ var
|
|
51718
|
-
/* harmony import */ var
|
|
51719
|
-
/* harmony import */ var
|
|
51720
|
-
/* harmony import */ var
|
|
51721
|
-
/* harmony import */ var
|
|
51722
|
-
/* harmony import */ var
|
|
51723
|
-
/* harmony import */ var
|
|
51724
|
-
/* harmony import */ var
|
|
51725
|
-
/* harmony import */ var
|
|
51726
|
-
/* harmony import */ var
|
|
51727
|
-
/* harmony import */ var
|
|
51728
|
-
/* harmony import */ var
|
|
51729
|
-
/* harmony import */ var
|
|
51730
|
-
/* harmony import */ var
|
|
51731
|
-
/* harmony import */ var
|
|
51732
|
-
/* harmony import */ var
|
|
51733
|
-
/* harmony import */ var
|
|
51734
|
-
/* harmony import */ var
|
|
51735
|
-
/* harmony import */ var
|
|
51736
|
-
/* harmony import */ var
|
|
51737
|
-
/* harmony import */ var
|
|
51738
|
-
/* harmony import */ var
|
|
51739
|
-
/* harmony import */ var
|
|
51740
|
-
/* harmony import */ var
|
|
51741
|
-
/* harmony import */ var
|
|
51742
|
-
/* harmony import */ var
|
|
51743
|
-
/* harmony import */ var
|
|
51744
|
-
/* harmony import */ var
|
|
51745
|
-
/* harmony import */ var
|
|
51746
|
-
/* harmony import */ var
|
|
51747
|
-
/* harmony import */ var
|
|
51748
|
-
/* harmony import */ var
|
|
51749
|
-
/* harmony import */ var
|
|
51750
|
-
/* harmony import */ var
|
|
51751
|
-
/* harmony import */ var
|
|
51752
|
-
/* harmony import */ var
|
|
51753
|
-
/* harmony import */ var
|
|
51754
|
-
/* harmony import */ var
|
|
51755
|
-
/* harmony import */ var
|
|
51756
|
-
/* harmony import */ var
|
|
51757
|
-
/* harmony import */ var
|
|
51758
|
-
/* harmony import */ var
|
|
51759
|
-
/* harmony import */ var
|
|
51760
|
-
/* harmony import */ var
|
|
51761
|
-
/* harmony import */ var
|
|
51762
|
-
/* harmony import */ var
|
|
51763
|
-
/* harmony import */ var
|
|
51764
|
-
/* harmony import */ var
|
|
51765
|
-
/* harmony import */ var
|
|
51766
|
-
/* harmony import */ var
|
|
51767
|
-
/* harmony import */ var
|
|
51768
|
-
/* harmony import */ var
|
|
51769
|
-
/* harmony import */ var
|
|
51770
|
-
/* harmony import */ var
|
|
51771
|
-
/* harmony import */ var
|
|
51772
|
-
/* harmony import */ var
|
|
51773
|
-
/* harmony import */ var
|
|
51774
|
-
/* harmony import */ var
|
|
51662
|
+
/* harmony import */ var _annotation_TextBlockLayoutResult__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./annotation/TextBlockLayoutResult */ "../../core/common/lib/esm/annotation/TextBlockLayoutResult.js");
|
|
51663
|
+
/* harmony import */ var _annotation_TextStyle__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./annotation/TextStyle */ "../../core/common/lib/esm/annotation/TextStyle.js");
|
|
51664
|
+
/* harmony import */ var _Atmosphere__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./Atmosphere */ "../../core/common/lib/esm/Atmosphere.js");
|
|
51665
|
+
/* harmony import */ var _AuthorizationClient__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./AuthorizationClient */ "../../core/common/lib/esm/AuthorizationClient.js");
|
|
51666
|
+
/* harmony import */ var _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./BackgroundMapProvider */ "../../core/common/lib/esm/BackgroundMapProvider.js");
|
|
51667
|
+
/* harmony import */ var _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./BackgroundMapSettings */ "../../core/common/lib/esm/BackgroundMapSettings.js");
|
|
51668
|
+
/* harmony import */ var _Base64EncodedString__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Base64EncodedString */ "../../core/common/lib/esm/Base64EncodedString.js");
|
|
51669
|
+
/* harmony import */ var _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./BriefcaseTypes */ "../../core/common/lib/esm/BriefcaseTypes.js");
|
|
51670
|
+
/* harmony import */ var _Camera__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./Camera */ "../../core/common/lib/esm/Camera.js");
|
|
51671
|
+
/* harmony import */ var _ChangedElements__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./ChangedElements */ "../../core/common/lib/esm/ChangedElements.js");
|
|
51672
|
+
/* harmony import */ var _ChangedEntities__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./ChangedEntities */ "../../core/common/lib/esm/ChangedEntities.js");
|
|
51673
|
+
/* harmony import */ var _ChangesetProps__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ChangesetProps */ "../../core/common/lib/esm/ChangesetProps.js");
|
|
51674
|
+
/* harmony import */ var _ClipStyle__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./ClipStyle */ "../../core/common/lib/esm/ClipStyle.js");
|
|
51675
|
+
/* harmony import */ var _Code__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./Code */ "../../core/common/lib/esm/Code.js");
|
|
51676
|
+
/* harmony import */ var _ColorByName__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./ColorByName */ "../../core/common/lib/esm/ColorByName.js");
|
|
51677
|
+
/* harmony import */ var _ColorDef__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ColorDef */ "../../core/common/lib/esm/ColorDef.js");
|
|
51678
|
+
/* harmony import */ var _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./CommonLoggerCategory */ "../../core/common/lib/esm/CommonLoggerCategory.js");
|
|
51679
|
+
/* harmony import */ var _ContextRealityModel__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ContextRealityModel */ "../../core/common/lib/esm/ContextRealityModel.js");
|
|
51680
|
+
/* harmony import */ var _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./DisplayStyleSettings */ "../../core/common/lib/esm/DisplayStyleSettings.js");
|
|
51681
|
+
/* harmony import */ var _domains_FunctionalElementProps__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./domains/FunctionalElementProps */ "../../core/common/lib/esm/domains/FunctionalElementProps.js");
|
|
51682
|
+
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
51683
|
+
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
51684
|
+
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
51685
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
51686
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
51687
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
51688
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
51689
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
51690
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
51691
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
51692
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
51693
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
51694
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
51695
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
51696
|
+
/* harmony import */ var _GenericInstanceFilter__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./GenericInstanceFilter */ "../../core/common/lib/esm/GenericInstanceFilter.js");
|
|
51697
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
51698
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
51699
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
51700
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
51701
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
51702
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
51703
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
51704
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
51705
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
51706
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
51707
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
51708
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
51709
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
51710
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
51711
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
51712
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
51713
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
51714
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
51715
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
51716
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
51717
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
51718
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
51719
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
51720
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
51721
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
51722
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
51723
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
51724
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
51725
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
51726
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
51727
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
51728
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
51729
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
51730
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
51731
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
51732
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
51733
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
51734
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
51735
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
51736
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
51737
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
51738
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
51739
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
51740
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
51741
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
51742
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
51743
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
51744
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
51745
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
51746
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
51747
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
51748
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
51749
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
51750
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
51751
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
51752
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
51753
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
51754
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
51755
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
51756
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
51757
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
51758
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
51759
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
51760
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
51761
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
51762
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
51763
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
51764
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
51765
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
51766
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
51767
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
51768
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
51769
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
51770
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
51771
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
51772
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
51773
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
51774
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
51775
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
51776
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
51777
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
51778
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
51779
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
51780
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
51781
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
51782
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
51783
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
51784
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
51785
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
51786
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
51787
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
51788
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
51789
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
51790
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
51791
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
51792
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
51793
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
51794
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
51795
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
51796
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
51797
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
51798
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
51799
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
51800
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
51801
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
51802
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
51803
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
51804
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
51805
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
51806
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
51807
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
51808
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
51809
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
51810
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
51811
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_154__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
51812
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_155__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
51813
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_156__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
51814
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_157__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
51815
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_158__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
51775
51816
|
/*---------------------------------------------------------------------------------------------
|
|
51776
51817
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
51777
51818
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -51932,6 +51973,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51932
51973
|
|
|
51933
51974
|
|
|
51934
51975
|
|
|
51976
|
+
|
|
51935
51977
|
|
|
51936
51978
|
|
|
51937
51979
|
/** @docs-package-description
|
|
@@ -91155,10 +91197,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
91155
91197
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
91156
91198
|
/* harmony export */ "PlanarClipMaskState": () => (/* binding */ PlanarClipMaskState)
|
|
91157
91199
|
/* harmony export */ });
|
|
91158
|
-
/* harmony import */ var
|
|
91159
|
-
/* harmony import */ var
|
|
91160
|
-
/* harmony import */ var _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./render/FeatureSymbology */ "../../core/frontend/lib/esm/render/FeatureSymbology.js");
|
|
91161
|
-
/* harmony import */ var _tile_internal__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./tile/internal */ "../../core/frontend/lib/esm/tile/internal.js");
|
|
91200
|
+
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
91201
|
+
/* harmony import */ var _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./render/FeatureSymbology */ "../../core/frontend/lib/esm/render/FeatureSymbology.js");
|
|
91162
91202
|
/*---------------------------------------------------------------------------------------------
|
|
91163
91203
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
91164
91204
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -91168,8 +91208,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
91168
91208
|
*/
|
|
91169
91209
|
|
|
91170
91210
|
|
|
91171
|
-
|
|
91172
|
-
|
|
91173
91211
|
/** The State of Planar Clip Mask applied to a reality model or background map.
|
|
91174
91212
|
* Handles loading models and their associated tiles for models that are used by masks but may not be otherwise loaded or displayed.
|
|
91175
91213
|
* @beta
|
|
@@ -91183,16 +91221,18 @@ class PlanarClipMaskState {
|
|
|
91183
91221
|
return new PlanarClipMaskState(settings);
|
|
91184
91222
|
}
|
|
91185
91223
|
static fromJSON(props) {
|
|
91186
|
-
return this.create(
|
|
91224
|
+
return this.create(_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskSettings.fromJSON(props));
|
|
91187
91225
|
}
|
|
91188
91226
|
discloseTileTrees(trees) {
|
|
91189
91227
|
if (this._tileTreeRefs)
|
|
91190
91228
|
this._tileTreeRefs.forEach((treeRef) => treeRef.discloseTileTrees(trees));
|
|
91191
91229
|
}
|
|
91230
|
+
// Returns the TileTreeReferences for the models that need to be drawn to create the planar clip mask.
|
|
91192
91231
|
getTileTrees(view, classifiedModelId) {
|
|
91193
|
-
if (this.settings.mode ===
|
|
91232
|
+
if (this.settings.mode === _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.Priority) {
|
|
91233
|
+
// For priority mode we simply want refs for all viewed models if the priority is higher than the mask priority.
|
|
91194
91234
|
const viewTrees = new Array();
|
|
91195
|
-
const thisPriority = this.settings.priority === undefined ?
|
|
91235
|
+
const thisPriority = this.settings.priority === undefined ? _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskPriority.RealityModel : this.settings.priority;
|
|
91196
91236
|
view.forEachTileTreeRef((ref) => {
|
|
91197
91237
|
const tree = ref.treeOwner.load();
|
|
91198
91238
|
if (tree && tree.modelId !== classifiedModelId && ref.planarclipMaskPriority > thisPriority)
|
|
@@ -91200,38 +91240,55 @@ class PlanarClipMaskState {
|
|
|
91200
91240
|
});
|
|
91201
91241
|
return viewTrees;
|
|
91202
91242
|
}
|
|
91243
|
+
// For all other modes we need to let the tree refs in the view state decide which refs need to be drawn
|
|
91244
|
+
// since batched tiles cannot turn on/off individual models just by their tile tree refs.
|
|
91203
91245
|
if (!this._tileTreeRefs) {
|
|
91204
91246
|
this._tileTreeRefs = new Array();
|
|
91205
|
-
if (this.settings.modelIds)
|
|
91206
|
-
|
|
91207
|
-
const model = view.iModel.models.getLoaded(modelId);
|
|
91208
|
-
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(model !== undefined); // Models should be loaded by RealityModelTileTree
|
|
91209
|
-
if (model?.asGeometricModel)
|
|
91210
|
-
this._tileTreeRefs.push((0,_tile_internal__WEBPACK_IMPORTED_MODULE_3__.createMaskTreeReference)(view, model.asGeometricModel));
|
|
91211
|
-
}
|
|
91212
|
-
}
|
|
91247
|
+
if (this.settings.modelIds)
|
|
91248
|
+
view.collectMaskRefs(this.settings.modelIds, this._tileTreeRefs);
|
|
91213
91249
|
}
|
|
91214
91250
|
if (!this._allLoaded)
|
|
91215
91251
|
this._allLoaded = this._tileTreeRefs.every((treeRef) => treeRef.treeOwner.load() !== undefined);
|
|
91216
91252
|
return this._allLoaded ? this._tileTreeRefs : undefined;
|
|
91217
91253
|
}
|
|
91218
|
-
|
|
91219
|
-
|
|
91254
|
+
// Returns any potential FeatureSymbology overrides for drawing the planar clip mask.
|
|
91255
|
+
getPlanarClipMaskSymbologyOverrides(view, context) {
|
|
91256
|
+
// First obtain a list of models that will need to be turned off for drawing the planar clip mask (only used for batched tile trees).
|
|
91257
|
+
const overrideModels = view.getModelsNotInMask(this.settings.modelIds, _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.Priority === this.settings.mode);
|
|
91258
|
+
const noSubCategoryOrElementIds = !this.settings.subCategoryOrElementIds;
|
|
91259
|
+
if (noSubCategoryOrElementIds && !overrideModels)
|
|
91220
91260
|
return undefined;
|
|
91261
|
+
const overrides = new _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_1__.FeatureSymbology.Overrides();
|
|
91262
|
+
if (overrideModels) {
|
|
91263
|
+
// overrideModels is used for batched models. For those, we need to create model overrides to turn off models that are
|
|
91264
|
+
// not wanted in the mask (using transparency) no matter what mask mode is being used.
|
|
91265
|
+
const appOff = _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.FeatureAppearance.fromTransparency(1.0);
|
|
91266
|
+
// For Priority or Models mode, we need to start with the current overrides and modify them
|
|
91267
|
+
if (_itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.Priority === this.settings.mode || _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.Models === this.settings.mode || noSubCategoryOrElementIds) {
|
|
91268
|
+
const curOverrides = new _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_1__.FeatureSymbology.Overrides(context.viewport);
|
|
91269
|
+
curOverrides.addInvisibleElementOverridesToNeverDrawn(); // need this for fully trans element overrides to not participate in mask
|
|
91270
|
+
overrideModels.forEach((modelId) => {
|
|
91271
|
+
curOverrides.override({ modelId, appearance: appOff, onConflict: "replace" });
|
|
91272
|
+
});
|
|
91273
|
+
return curOverrides;
|
|
91274
|
+
}
|
|
91275
|
+
// Otherwise, we just start with a default overrides and modify it.
|
|
91276
|
+
overrideModels.forEach((modelId) => {
|
|
91277
|
+
overrides.override({ modelId, appearance: appOff, onConflict: "replace" });
|
|
91278
|
+
});
|
|
91279
|
+
}
|
|
91280
|
+
// Add overrides to turn things on or off based on the subcategories or elements in the mask settings.
|
|
91221
91281
|
switch (this.settings.mode) {
|
|
91222
|
-
case
|
|
91223
|
-
const overrides = new _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_2__.FeatureSymbology.Overrides();
|
|
91282
|
+
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.IncludeElements: {
|
|
91224
91283
|
overrides.setAlwaysDrawnSet(this.settings.subCategoryOrElementIds, true);
|
|
91225
91284
|
return overrides;
|
|
91226
91285
|
}
|
|
91227
|
-
case
|
|
91228
|
-
const overrides = new _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_2__.FeatureSymbology.Overrides();
|
|
91286
|
+
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.ExcludeElements: {
|
|
91229
91287
|
overrides.ignoreSubCategory = true;
|
|
91230
91288
|
overrides.setNeverDrawnSet(this.settings.subCategoryOrElementIds);
|
|
91231
91289
|
return overrides;
|
|
91232
91290
|
}
|
|
91233
|
-
case
|
|
91234
|
-
const overrides = new _render_FeatureSymbology__WEBPACK_IMPORTED_MODULE_2__.FeatureSymbology.Overrides();
|
|
91291
|
+
case _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__.PlanarClipMaskMode.IncludeSubCategories: {
|
|
91235
91292
|
for (const subCategoryId of this.settings.subCategoryOrElementIds)
|
|
91236
91293
|
overrides.setVisibleSubCategory(subCategoryId);
|
|
91237
91294
|
return overrides;
|
|
@@ -93481,6 +93538,22 @@ class SpatialViewState extends _ViewState__WEBPACK_IMPORTED_MODULE_6__.ViewState
|
|
|
93481
93538
|
setTileTreeReferencesDeactivated(modelIds, deactivated, which) {
|
|
93482
93539
|
this._treeRefs.setDeactivated(modelIds, deactivated, which);
|
|
93483
93540
|
}
|
|
93541
|
+
/** For getting the [TileTreeReference]s that are in the modelIds, for planar classification.
|
|
93542
|
+
* @param modelIds modelIds for which to get the TileTreeReferences
|
|
93543
|
+
* @param maskTreeRefs where to store the TileTreeReferences
|
|
93544
|
+
* @internal
|
|
93545
|
+
*/
|
|
93546
|
+
collectMaskRefs(modelIds, maskTreeRefs) {
|
|
93547
|
+
this._treeRefs.collectMaskRefs(modelIds, maskTreeRefs);
|
|
93548
|
+
}
|
|
93549
|
+
/** For getting a list of modelIds which do not participate in masking for planar classification.
|
|
93550
|
+
* @param maskModels models which DO participate in planar clip masking
|
|
93551
|
+
* @param useVisible when true, use visible models to set flag
|
|
93552
|
+
* @internal
|
|
93553
|
+
*/
|
|
93554
|
+
getModelsNotInMask(maskModels, useVisible) {
|
|
93555
|
+
return this._treeRefs.getModelsNotInMask(maskModels, useVisible);
|
|
93556
|
+
}
|
|
93484
93557
|
registerModelSelectorListeners() {
|
|
93485
93558
|
const models = this.modelSelector.observableModels;
|
|
93486
93559
|
const func = () => {
|
|
@@ -123547,7 +123620,7 @@ class PlanarClassifier extends _RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_
|
|
|
123547
123620
|
if (undefined === context.viewingSpace)
|
|
123548
123621
|
return;
|
|
123549
123622
|
const viewState = context.viewingSpace.view;
|
|
123550
|
-
if (
|
|
123623
|
+
if (!viewState.isSpatialView())
|
|
123551
123624
|
return;
|
|
123552
123625
|
const requiredHeight = context.target.viewRect.height;
|
|
123553
123626
|
const requiredWidth = context.target.viewRect.width;
|
|
@@ -123567,7 +123640,7 @@ class PlanarClassifier extends _RenderPlanarClassifier__WEBPACK_IMPORTED_MODULE_
|
|
|
123567
123640
|
this._projectionMatrix = projection.projectionMatrix;
|
|
123568
123641
|
this._frustum = projection.textureFrustum;
|
|
123569
123642
|
this._debugFrustum = projection.debugFrustum;
|
|
123570
|
-
this._planarClipMaskOverrides = this._planarClipMask?.getPlanarClipMaskSymbologyOverrides();
|
|
123643
|
+
this._planarClipMaskOverrides = this._planarClipMask?.getPlanarClipMaskSymbologyOverrides(viewState, context);
|
|
123571
123644
|
const drawTree = (treeRef, graphics) => {
|
|
123572
123645
|
this._graphics = graphics;
|
|
123573
123646
|
const frustumPlanes = this._frustum ? _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FrustumPlanes.fromFrustum(this._frustum) : _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.FrustumPlanes.createEmpty();
|
|
@@ -146847,8 +146920,11 @@ class GraphicsCollectorDrawArgs extends _internal__WEBPACK_IMPORTED_MODULE_0__.T
|
|
|
146847
146920
|
this._collector.addGraphic(this.context.createBranch(graphics, this.location));
|
|
146848
146921
|
}
|
|
146849
146922
|
drawGraphics() {
|
|
146850
|
-
if (!this.graphics.isEmpty)
|
|
146851
|
-
|
|
146923
|
+
if (!this.graphics.isEmpty) {
|
|
146924
|
+
const graphics = this.produceGraphics();
|
|
146925
|
+
if (undefined !== graphics)
|
|
146926
|
+
this._collector.addGraphic(graphics);
|
|
146927
|
+
}
|
|
146852
146928
|
}
|
|
146853
146929
|
static create(context, collector, ref, planes, worldToViewMap) {
|
|
146854
146930
|
const args = ref.createDrawArgs(context);
|
|
@@ -150234,6 +150310,26 @@ class SpatialRefs {
|
|
|
150234
150310
|
for (const modelId of modelIds)
|
|
150235
150311
|
this._refs.get(modelId)?.setDeactivated(deactivated, refs);
|
|
150236
150312
|
}
|
|
150313
|
+
/** For getting the [TileTreeReference]s that are in the modelIds, for planar classification.
|
|
150314
|
+
* @param modelIds modelIds for which to get the TileTreeReferences
|
|
150315
|
+
* @param maskTreeRefs where to store the TileTreeReferences
|
|
150316
|
+
* @internal
|
|
150317
|
+
*/
|
|
150318
|
+
collectMaskRefs(modelIds, maskTreeRefs) {
|
|
150319
|
+
for (const modelId of modelIds) {
|
|
150320
|
+
if (!this._excludedModels?.has(modelId)) {
|
|
150321
|
+
const model = this._view.iModel.models.getLoaded(modelId);
|
|
150322
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(model !== undefined); // Models should be loaded by RealityModelTileTree
|
|
150323
|
+
if (model?.asGeometricModel)
|
|
150324
|
+
maskTreeRefs.push(createMaskTreeReference(this._view, model.asGeometricModel));
|
|
150325
|
+
}
|
|
150326
|
+
}
|
|
150327
|
+
}
|
|
150328
|
+
/** For getting a list of modelIds which do not participate in masking, for planar classification.
|
|
150329
|
+
* For non-batched tile trees this is not needed, so just return undefined.
|
|
150330
|
+
* @internal
|
|
150331
|
+
*/
|
|
150332
|
+
getModelsNotInMask(_maskModels, _useVisible) { return undefined; }
|
|
150237
150333
|
load() {
|
|
150238
150334
|
if (!this._allLoaded) {
|
|
150239
150335
|
this._allLoaded = true;
|
|
@@ -196344,11 +196440,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
196344
196440
|
/* harmony export */ "AnnotatedLineString3d": () => (/* binding */ AnnotatedLineString3d),
|
|
196345
196441
|
/* harmony export */ "LineString3d": () => (/* binding */ LineString3d)
|
|
196346
196442
|
/* harmony export */ });
|
|
196347
|
-
/* harmony import */ var
|
|
196443
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
196348
196444
|
/* harmony import */ var _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../geometry3d/Angle */ "../../core/geometry/lib/esm/geometry3d/Angle.js");
|
|
196349
196445
|
/* harmony import */ var _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../geometry3d/GrowableFloat64Array */ "../../core/geometry/lib/esm/geometry3d/GrowableFloat64Array.js");
|
|
196350
196446
|
/* harmony import */ var _geometry3d_GrowableXYArray__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../geometry3d/GrowableXYArray */ "../../core/geometry/lib/esm/geometry3d/GrowableXYArray.js");
|
|
196351
|
-
/* harmony import */ var
|
|
196447
|
+
/* harmony import */ var _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../geometry3d/GrowableXYZArray */ "../../core/geometry/lib/esm/geometry3d/GrowableXYZArray.js");
|
|
196352
196448
|
/* harmony import */ var _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../geometry3d/Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
|
|
196353
196449
|
/* harmony import */ var _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../geometry3d/Plane3dByOriginAndVectors */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndVectors.js");
|
|
196354
196450
|
/* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
@@ -196358,7 +196454,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
196358
196454
|
/* harmony import */ var _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../geometry3d/Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
196359
196455
|
/* harmony import */ var _CurveExtendMode__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./CurveExtendMode */ "../../core/geometry/lib/esm/curve/CurveExtendMode.js");
|
|
196360
196456
|
/* harmony import */ var _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./CurveLocationDetail */ "../../core/geometry/lib/esm/curve/CurveLocationDetail.js");
|
|
196361
|
-
/* harmony import */ var
|
|
196457
|
+
/* harmony import */ var _CurvePrimitive__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./CurvePrimitive */ "../../core/geometry/lib/esm/curve/CurvePrimitive.js");
|
|
196362
196458
|
/* harmony import */ var _internalContexts_PlaneAltitudeRangeContext__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./internalContexts/PlaneAltitudeRangeContext */ "../../core/geometry/lib/esm/curve/internalContexts/PlaneAltitudeRangeContext.js");
|
|
196363
196459
|
/* harmony import */ var _LineSegment3d__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./LineSegment3d */ "../../core/geometry/lib/esm/curve/LineSegment3d.js");
|
|
196364
196460
|
/* harmony import */ var _OffsetOptions__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./OffsetOptions */ "../../core/geometry/lib/esm/curve/OffsetOptions.js");
|
|
@@ -196383,10 +196479,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
196383
196479
|
|
|
196384
196480
|
|
|
196385
196481
|
/**
|
|
196386
|
-
* Starting with
|
|
196387
|
-
* If the vector
|
|
196388
|
-
*
|
|
196389
|
-
*
|
|
196482
|
+
* Starting with the segment at (baseIndex, baseIndex + 1):
|
|
196483
|
+
* * If the segment vector and vectorA determine a normal, accumulate it (scaled) to normal, and return.
|
|
196484
|
+
* * Otherwise move to next/previous segment if stepDirection is positive/negative and repeat.
|
|
196485
|
+
* * Do nothing if everything is parallel through the end of the array.
|
|
196390
196486
|
*/
|
|
196391
196487
|
function accumulateGoodUnitPerpendicular(points, vectorA, baseIndex, stepDirection, weight, normal, workVector) {
|
|
196392
196488
|
const n = points.length;
|
|
@@ -196396,6 +196492,8 @@ function accumulateGoodUnitPerpendicular(points, vectorA, baseIndex, stepDirecti
|
|
|
196396
196492
|
vectorA.crossProduct(workVector, workVector);
|
|
196397
196493
|
if (workVector.normalizeInPlace()) {
|
|
196398
196494
|
normal.addScaledInPlace(workVector, weight);
|
|
196495
|
+
if (normal.isAlmostEqualXYZ(0, 0, 0, _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallFraction))
|
|
196496
|
+
workVector.scale(-weight, normal); // Concavity changed! Revert to previous
|
|
196399
196497
|
return true;
|
|
196400
196498
|
}
|
|
196401
196499
|
}
|
|
@@ -196408,6 +196506,8 @@ function accumulateGoodUnitPerpendicular(points, vectorA, baseIndex, stepDirecti
|
|
|
196408
196506
|
workVector.crossProduct(vectorA, workVector);
|
|
196409
196507
|
if (workVector.normalizeInPlace()) {
|
|
196410
196508
|
normal.addScaledInPlace(workVector, weight);
|
|
196509
|
+
if (normal.isAlmostEqualXYZ(0, 0, 0, _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallFraction))
|
|
196510
|
+
workVector.scale(-weight, normal); // Concavity changed! Revert to previous
|
|
196411
196511
|
return true;
|
|
196412
196512
|
}
|
|
196413
196513
|
}
|
|
@@ -196426,7 +196526,7 @@ function accumulateGoodUnitPerpendicular(points, vectorA, baseIndex, stepDirecti
|
|
|
196426
196526
|
* * Use `moveSignedDistanceFromFraction` to do true-length evaluations.
|
|
196427
196527
|
* @public
|
|
196428
196528
|
*/
|
|
196429
|
-
class LineString3d extends
|
|
196529
|
+
class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_1__.CurvePrimitive {
|
|
196430
196530
|
/** test if `other` is an instance of `LineString3d` */
|
|
196431
196531
|
isSameGeometryClass(other) {
|
|
196432
196532
|
return other instanceof LineString3d;
|
|
@@ -196483,7 +196583,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
196483
196583
|
if (points)
|
|
196484
196584
|
this._points = points;
|
|
196485
196585
|
else
|
|
196486
|
-
this._points = new
|
|
196586
|
+
this._points = new _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_2__.GrowableXYZArray();
|
|
196487
196587
|
}
|
|
196488
196588
|
/** Clone this linestring and apply the transform to the clone points. */
|
|
196489
196589
|
cloneTransformed(transform) {
|
|
@@ -196514,7 +196614,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
196514
196614
|
if (enforceClosure && points.length > 1) {
|
|
196515
196615
|
const distance = xyz.distanceIndexIndex(0, xyz.length - 1);
|
|
196516
196616
|
if (distance !== undefined && distance !== 0.0) {
|
|
196517
|
-
if (
|
|
196617
|
+
if (_Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(0, distance)) {
|
|
196518
196618
|
xyz.pop(); // nonzero but small distance -- to be replaced by point 0 exactly.
|
|
196519
196619
|
const xyzA = xyz.front();
|
|
196520
196620
|
xyz.push(xyzA);
|
|
@@ -196589,7 +196689,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
196589
196689
|
ensureEmptySurfaceNormals() {
|
|
196590
196690
|
const n = this.numPoints();
|
|
196591
196691
|
if (!this._surfaceNormals) {
|
|
196592
|
-
this._surfaceNormals = new
|
|
196692
|
+
this._surfaceNormals = new _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_2__.GrowableXYZArray(n);
|
|
196593
196693
|
return this._surfaceNormals;
|
|
196594
196694
|
}
|
|
196595
196695
|
this._surfaceNormals.clear();
|
|
@@ -196600,7 +196700,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
196600
196700
|
ensureEmptyDerivatives() {
|
|
196601
196701
|
const n = this.numPoints();
|
|
196602
196702
|
if (!this._derivatives) {
|
|
196603
|
-
this._derivatives = new
|
|
196703
|
+
this._derivatives = new _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_2__.GrowableXYZArray(n);
|
|
196604
196704
|
return this._derivatives;
|
|
196605
196705
|
}
|
|
196606
196706
|
this._derivatives.clear();
|
|
@@ -196664,7 +196764,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
196664
196764
|
*/
|
|
196665
196765
|
addDerivative(vector) {
|
|
196666
196766
|
if (!this._derivatives)
|
|
196667
|
-
this._derivatives = new
|
|
196767
|
+
this._derivatives = new _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_2__.GrowableXYZArray();
|
|
196668
196768
|
this._derivatives.push(vector);
|
|
196669
196769
|
}
|
|
196670
196770
|
/**
|
|
@@ -196673,13 +196773,13 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
196673
196773
|
*/
|
|
196674
196774
|
addSurfaceNormal(vector) {
|
|
196675
196775
|
if (!this._surfaceNormals)
|
|
196676
|
-
this._surfaceNormals = new
|
|
196776
|
+
this._surfaceNormals = new _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_2__.GrowableXYZArray();
|
|
196677
196777
|
this._surfaceNormals.push(vector);
|
|
196678
196778
|
}
|
|
196679
196779
|
/** If the linestring is not already closed, add a closure point. */
|
|
196680
196780
|
addClosurePoint() {
|
|
196681
196781
|
const distance = this._points.distanceIndexIndex(0, this._points.length - 1);
|
|
196682
|
-
if (distance !== undefined && !
|
|
196782
|
+
if (distance !== undefined && !_Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(distance, 0))
|
|
196683
196783
|
this._points.pushWrap(1);
|
|
196684
196784
|
}
|
|
196685
196785
|
/** Eliminate (but do not return!!) the final point of the linestring */
|
|
@@ -196968,7 +197068,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
196968
197068
|
return _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__.Transform.createIdentity(result);
|
|
196969
197069
|
}
|
|
196970
197070
|
if (n === 2)
|
|
196971
|
-
return _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__.Transform.createRefs(this._points.interpolate(0, fraction, 1), _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_10__.Matrix3d.createRigidHeadsUp(this._points.vectorIndexIndex(0, 1),
|
|
197071
|
+
return _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__.Transform.createRefs(this._points.interpolate(0, fraction, 1), _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_10__.Matrix3d.createRigidHeadsUp(this._points.vectorIndexIndex(0, 1), _Geometry__WEBPACK_IMPORTED_MODULE_0__.AxisOrder.XYZ));
|
|
196972
197072
|
/** 3 or more points. */
|
|
196973
197073
|
const numSegment = n - 1;
|
|
196974
197074
|
const df = 1.0 / numSegment;
|
|
@@ -197001,7 +197101,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197001
197101
|
accumulateGoodUnitPerpendicular(this._points, vectorA, baseIndex - 1, -1, (1.0 - localFraction), normal, workVector);
|
|
197002
197102
|
accumulateGoodUnitPerpendicular(this._points, vectorA, baseIndex + 1, 1, (localFraction), normal, workVector);
|
|
197003
197103
|
}
|
|
197004
|
-
const matrix = _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_10__.Matrix3d.createRigidFromColumns(normal, vectorA,
|
|
197104
|
+
const matrix = _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_10__.Matrix3d.createRigidFromColumns(normal, vectorA, _Geometry__WEBPACK_IMPORTED_MODULE_0__.AxisOrder.ZXY);
|
|
197005
197105
|
if (matrix)
|
|
197006
197106
|
return _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__.Transform.createOriginAndMatrix(origin, matrix, result);
|
|
197007
197107
|
return _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__.Transform.createTranslation(origin, result);
|
|
@@ -197136,7 +197236,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197136
197236
|
moveSignedDistanceFromFraction(startFraction, signedDistance, allowExtension, result) {
|
|
197137
197237
|
const numSegments = this._points.length - 1;
|
|
197138
197238
|
const scaledFraction = startFraction * numSegments;
|
|
197139
|
-
let leftPointIndex =
|
|
197239
|
+
let leftPointIndex = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.restrictToInterval(Math.floor(scaledFraction), 0, numSegments - 1); // lower point index on active segment.
|
|
197140
197240
|
const localFraction = scaledFraction - leftPointIndex;
|
|
197141
197241
|
const point0 = this._points.interpolate(leftPointIndex, localFraction, leftPointIndex + 1, LineString3d._workPointA);
|
|
197142
197242
|
const point1 = LineString3d._workPointB;
|
|
@@ -197222,7 +197322,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197222
197322
|
}
|
|
197223
197323
|
/** Test if all points of the linestring are in a plane. */
|
|
197224
197324
|
isInPlane(plane) {
|
|
197225
|
-
return this._points.isCloseToPlane(plane,
|
|
197325
|
+
return this._points.isCloseToPlane(plane, _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistance);
|
|
197226
197326
|
}
|
|
197227
197327
|
/** Push a hit, fixing up the prior entry if needed. */
|
|
197228
197328
|
static pushVertexHit(result, counter, cp, fraction, point) {
|
|
@@ -197261,7 +197361,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197261
197361
|
let segmentFraction = 0;
|
|
197262
197362
|
for (let i = 0; i < this._points.length; i++, pointA.setFrom(pointB), hA = hB) {
|
|
197263
197363
|
this._points.getPoint3dAtUncheckedPointIndex(i, pointB);
|
|
197264
|
-
hB =
|
|
197364
|
+
hB = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.correctSmallMetricDistance(plane.altitude(pointB));
|
|
197265
197365
|
if (hB === 0.0)
|
|
197266
197366
|
LineString3d.pushVertexHit(result, numConsecutiveZero++, this, i / divisor, pointB);
|
|
197267
197367
|
else {
|
|
@@ -197285,7 +197385,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197285
197385
|
isAlmostEqual(other) {
|
|
197286
197386
|
if (!(other instanceof LineString3d))
|
|
197287
197387
|
return false;
|
|
197288
|
-
if (!
|
|
197388
|
+
if (!_geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_2__.GrowableXYZArray.isAlmostEqual(this._points, other._points))
|
|
197289
197389
|
return false;
|
|
197290
197390
|
return true;
|
|
197291
197391
|
}
|
|
@@ -197299,7 +197399,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197299
197399
|
let add = true;
|
|
197300
197400
|
const addFraction = fraction !== undefined && this._fractions !== undefined;
|
|
197301
197401
|
if (n > 0) {
|
|
197302
|
-
if (addFraction &&
|
|
197402
|
+
if (addFraction && _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(fraction, this._fractions.back()))
|
|
197303
197403
|
add = false;
|
|
197304
197404
|
if (point.isAlmostEqual(this._points.getPoint3dAtUncheckedPointIndex(n - 1)))
|
|
197305
197405
|
add = false;
|
|
@@ -197311,7 +197411,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197311
197411
|
}
|
|
197312
197412
|
}
|
|
197313
197413
|
/** Compress out duplicate points (according to point.isAlmostEqual) */
|
|
197314
|
-
removeDuplicatePoints(tolerance =
|
|
197414
|
+
removeDuplicatePoints(tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistance) {
|
|
197315
197415
|
const n = this._points.length;
|
|
197316
197416
|
if (n < 2)
|
|
197317
197417
|
return;
|
|
@@ -197385,8 +197485,8 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197385
197485
|
ls._uvParams = new _geometry3d_GrowableXYArray__WEBPACK_IMPORTED_MODULE_4__.GrowableXYArray(capacity);
|
|
197386
197486
|
}
|
|
197387
197487
|
if (options.needNormals) {
|
|
197388
|
-
ls._derivatives = new
|
|
197389
|
-
ls._surfaceNormals = new
|
|
197488
|
+
ls._derivatives = new _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_2__.GrowableXYZArray(capacity);
|
|
197489
|
+
ls._surfaceNormals = new _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_2__.GrowableXYZArray(capacity);
|
|
197390
197490
|
}
|
|
197391
197491
|
}
|
|
197392
197492
|
return ls;
|
|
@@ -197515,7 +197615,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197515
197615
|
const numStrokeOnSegment = applyOptions ? options.applyMaxEdgeLength(1, segmentLength) : 1;
|
|
197516
197616
|
myData.addToCountAndLength(numStrokeOnSegment, segmentLength);
|
|
197517
197617
|
}
|
|
197518
|
-
|
|
197618
|
+
_CurvePrimitive__WEBPACK_IMPORTED_MODULE_1__.CurvePrimitive.installStrokeCountMap(this, myData, parentStrokeMap);
|
|
197519
197619
|
}
|
|
197520
197620
|
/** Second step of double dispatch: call `handler.handleLineString3d(this)` */
|
|
197521
197621
|
dispatchToGeometryHandler(handler) {
|
|
@@ -197538,7 +197638,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197538
197638
|
let globalFractionB = 1.0;
|
|
197539
197639
|
const capture = (localFraction0, localFraction1) => {
|
|
197540
197640
|
if (announce)
|
|
197541
|
-
announce(
|
|
197641
|
+
announce(_Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.interpolate(globalFractionA, localFraction0, globalFractionB), _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.interpolate(globalFractionA, localFraction1, globalFractionB), this);
|
|
197542
197642
|
};
|
|
197543
197643
|
const pointA = LineString3d._workPointA;
|
|
197544
197644
|
const pointB = LineString3d._workPointB;
|
|
@@ -197601,7 +197701,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197601
197701
|
index0 = 1; // first original vertex is not in clone
|
|
197602
197702
|
}
|
|
197603
197703
|
else if (0 <= fractionA && fractionA <= 1) {
|
|
197604
|
-
index0 =
|
|
197704
|
+
index0 = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallRelative(1 - localA.fraction) ? localA.index + 2 : localA.index + 1;
|
|
197605
197705
|
}
|
|
197606
197706
|
else { // 1 < fractionA
|
|
197607
197707
|
index0 = n; // no original vertices in clone
|
|
@@ -197610,7 +197710,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197610
197710
|
index1 = -1; // no original vertices in clone
|
|
197611
197711
|
}
|
|
197612
197712
|
else if (0 <= fractionB && fractionB <= 1) {
|
|
197613
|
-
index1 =
|
|
197713
|
+
index1 = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallRelative(localB.fraction) ? localB.index - 1 : localB.index;
|
|
197614
197714
|
}
|
|
197615
197715
|
else { // 1 < fractionB
|
|
197616
197716
|
index1 = n - 2; // last original vertex is not in clone
|
|
@@ -197634,7 +197734,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197634
197734
|
}
|
|
197635
197735
|
/** Returns true if first and last points are within metric tolerance. */
|
|
197636
197736
|
get isPhysicallyClosed() {
|
|
197637
|
-
return this._points.length > 0 &&
|
|
197737
|
+
return this._points.length > 0 && _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(this._points.distanceIndexIndex(0, this._points.length - 1));
|
|
197638
197738
|
}
|
|
197639
197739
|
/**
|
|
197640
197740
|
* Evaluate strokes at fractions indicated in a StrokeCountMap.
|
|
@@ -197720,7 +197820,7 @@ class LineString3d extends _CurvePrimitive__WEBPACK_IMPORTED_MODULE_0__.CurvePri
|
|
|
197720
197820
|
for (const seg of this.collectCurvePrimitives(undefined, true, true)) {
|
|
197721
197821
|
const offset = seg.constructOffsetXY(options);
|
|
197722
197822
|
if (offset !== undefined) {
|
|
197723
|
-
if (offset instanceof
|
|
197823
|
+
if (offset instanceof _CurvePrimitive__WEBPACK_IMPORTED_MODULE_1__.CurvePrimitive)
|
|
197724
197824
|
offsets.push(offset);
|
|
197725
197825
|
else if (Array.isArray(offset))
|
|
197726
197826
|
offset.forEach((cp) => offsets.push(cp));
|
|
@@ -197785,7 +197885,7 @@ class MoveByDistanceContext {
|
|
|
197785
197885
|
}
|
|
197786
197886
|
// Return CurveSearchStatus indicating whether the accumulated distance has reached the target.
|
|
197787
197887
|
distanceStatus() {
|
|
197788
|
-
return
|
|
197888
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.distance0, this.targetDistance) ?
|
|
197789
197889
|
_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_12__.CurveSearchStatus.success : _CurveLocationDetail__WEBPACK_IMPORTED_MODULE_12__.CurveSearchStatus.stoppedAtBoundary;
|
|
197790
197890
|
}
|
|
197791
197891
|
/**
|
|
@@ -197804,16 +197904,16 @@ class MoveByDistanceContext {
|
|
|
197804
197904
|
announcePoint(point1, fraction1) {
|
|
197805
197905
|
const a = this.point0.distance(point1);
|
|
197806
197906
|
const distance1 = this.distance0 + a;
|
|
197807
|
-
if (distance1 < this.targetDistance && !
|
|
197907
|
+
if (distance1 < this.targetDistance && !_Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(distance1, this.targetDistance)) {
|
|
197808
197908
|
this.point0.setFromPoint3d(point1);
|
|
197809
197909
|
this.distance0 = distance1;
|
|
197810
197910
|
this.fraction0 = fraction1;
|
|
197811
197911
|
return false;
|
|
197812
197912
|
}
|
|
197813
197913
|
const b = this.targetDistance - this.distance0;
|
|
197814
|
-
const intervalFraction =
|
|
197914
|
+
const intervalFraction = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.safeDivideFraction(b, a, 0.0);
|
|
197815
197915
|
this.point0.interpolate(intervalFraction, point1, this.point0);
|
|
197816
|
-
this.fraction0 =
|
|
197916
|
+
this.fraction0 = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.interpolate(this.fraction0, intervalFraction, fraction1);
|
|
197817
197917
|
this.distance0 = this.targetDistance;
|
|
197818
197918
|
return true;
|
|
197819
197919
|
}
|
|
@@ -197833,14 +197933,14 @@ class MoveByDistanceContext {
|
|
|
197833
197933
|
const d01 = points.distanceIndexIndex(index0, index1);
|
|
197834
197934
|
if (!d01)
|
|
197835
197935
|
return false;
|
|
197836
|
-
const extensionFraction =
|
|
197936
|
+
const extensionFraction = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.conditionalDivideFraction(residual, d01);
|
|
197837
197937
|
if (extensionFraction === undefined)
|
|
197838
197938
|
return false;
|
|
197839
197939
|
// (Remark: indices are swapped and extensionFraction negated to prevent incidental precision
|
|
197840
197940
|
// loss with the alternative call with (index0, 1 + extensionFraction, index1);
|
|
197841
197941
|
points.interpolate(index1, -extensionFraction, index0, this.point0);
|
|
197842
197942
|
this.distance0 = this.targetDistance;
|
|
197843
|
-
this.fraction0 =
|
|
197943
|
+
this.fraction0 = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.interpolate(fraction1, -extensionFraction, fraction0);
|
|
197844
197944
|
return true;
|
|
197845
197945
|
}
|
|
197846
197946
|
}
|
|
@@ -290601,7 +290701,7 @@ class TestContext {
|
|
|
290601
290701
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
290602
290702
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
290603
290703
|
await core_frontend_1.NoRenderApp.startup({
|
|
290604
|
-
applicationVersion: "4.8.0-dev.
|
|
290704
|
+
applicationVersion: "4.8.0-dev.5",
|
|
290605
290705
|
applicationId: this.settings.gprid,
|
|
290606
290706
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
290607
290707
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -314594,7 +314694,7 @@ function __disposeResources(env) {
|
|
|
314594
314694
|
/***/ ((module) => {
|
|
314595
314695
|
|
|
314596
314696
|
"use strict";
|
|
314597
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.8.0-dev.
|
|
314697
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.8.0-dev.5","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && 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 --no-inline-config -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.8.0-dev.5","@itwin/core-bentley":"workspace:^4.8.0-dev.5","@itwin/core-common":"workspace:^4.8.0-dev.5","@itwin/core-geometry":"workspace:^4.8.0-dev.5","@itwin/core-orbitgt":"workspace:^4.8.0-dev.5","@itwin/core-quantity":"workspace:^4.8.0-dev.5"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"^4.0.2","@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.56.0","glob":"^10.3.12","mocha":"^10.2.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^17.0.1","source-map-loader":"^4.0.0","typescript":"~5.3.3","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","meshoptimizer":"~0.20.0","wms-capabilities":"0.4.0"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"}}');
|
|
314598
314698
|
|
|
314599
314699
|
/***/ }),
|
|
314600
314700
|
|