@itwin/ecschema-rpcinterface-tests 4.0.0-dev.59 → 4.0.0-dev.60
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/bundled-tests.js +1333 -1176
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +15 -15
|
@@ -36576,211 +36576,6 @@ ClipStyle.defaults = new ClipStyle(false, CutStyle.defaults, undefined, undefine
|
|
|
36576
36576
|
|
|
36577
36577
|
|
|
36578
36578
|
|
|
36579
|
-
/***/ }),
|
|
36580
|
-
|
|
36581
|
-
/***/ "../../core/common/lib/esm/CloudStorage.js":
|
|
36582
|
-
/*!*************************************************!*\
|
|
36583
|
-
!*** ../../core/common/lib/esm/CloudStorage.js ***!
|
|
36584
|
-
\*************************************************/
|
|
36585
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
36586
|
-
|
|
36587
|
-
"use strict";
|
|
36588
|
-
__webpack_require__.r(__webpack_exports__);
|
|
36589
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
36590
|
-
/* harmony export */ "CloudStorageCache": () => (/* binding */ CloudStorageCache),
|
|
36591
|
-
/* harmony export */ "CloudStorageContainerUrl": () => (/* binding */ CloudStorageContainerUrl),
|
|
36592
|
-
/* harmony export */ "CloudStorageProvider": () => (/* binding */ CloudStorageProvider)
|
|
36593
|
-
/* harmony export */ });
|
|
36594
|
-
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
36595
|
-
/*---------------------------------------------------------------------------------------------
|
|
36596
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
36597
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
36598
|
-
*--------------------------------------------------------------------------------------------*/
|
|
36599
|
-
/** @packageDocumentation
|
|
36600
|
-
* @module CloudStorage
|
|
36601
|
-
*/
|
|
36602
|
-
|
|
36603
|
-
/* eslint-disable deprecation/deprecation */
|
|
36604
|
-
/**
|
|
36605
|
-
* @beta
|
|
36606
|
-
* @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
|
|
36607
|
-
*/
|
|
36608
|
-
var CloudStorageProvider;
|
|
36609
|
-
(function (CloudStorageProvider) {
|
|
36610
|
-
CloudStorageProvider[CloudStorageProvider["Azure"] = 0] = "Azure";
|
|
36611
|
-
CloudStorageProvider[CloudStorageProvider["Amazon"] = 1] = "Amazon";
|
|
36612
|
-
CloudStorageProvider[CloudStorageProvider["AliCloud"] = 2] = "AliCloud";
|
|
36613
|
-
CloudStorageProvider[CloudStorageProvider["External"] = 3] = "External";
|
|
36614
|
-
CloudStorageProvider[CloudStorageProvider["Unknown"] = 4] = "Unknown";
|
|
36615
|
-
})(CloudStorageProvider || (CloudStorageProvider = {}));
|
|
36616
|
-
/**
|
|
36617
|
-
* @beta
|
|
36618
|
-
* @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
|
|
36619
|
-
*/
|
|
36620
|
-
var CloudStorageContainerUrl;
|
|
36621
|
-
(function (CloudStorageContainerUrl) {
|
|
36622
|
-
function empty() {
|
|
36623
|
-
return {
|
|
36624
|
-
descriptor: { name: "" },
|
|
36625
|
-
valid: 0,
|
|
36626
|
-
expires: 0,
|
|
36627
|
-
url: "",
|
|
36628
|
-
};
|
|
36629
|
-
}
|
|
36630
|
-
CloudStorageContainerUrl.empty = empty;
|
|
36631
|
-
})(CloudStorageContainerUrl || (CloudStorageContainerUrl = {}));
|
|
36632
|
-
/**
|
|
36633
|
-
* @beta
|
|
36634
|
-
* @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
|
|
36635
|
-
*/
|
|
36636
|
-
class CloudStorageCache {
|
|
36637
|
-
formContainerKey(id) { return this.formContainerName(id); }
|
|
36638
|
-
supplyUrlBase(_container, _id) { return undefined; }
|
|
36639
|
-
constructor() {
|
|
36640
|
-
this.provider = CloudStorageProvider.Unknown;
|
|
36641
|
-
this._pendingContainerRequests = new Map();
|
|
36642
|
-
this._containers = new Map();
|
|
36643
|
-
}
|
|
36644
|
-
async retrieve(id) {
|
|
36645
|
-
try {
|
|
36646
|
-
const container = await this.getContainer(id);
|
|
36647
|
-
if (!container.url)
|
|
36648
|
-
return undefined;
|
|
36649
|
-
const response = await this.requestResource(container, id);
|
|
36650
|
-
if (response.ok) {
|
|
36651
|
-
const content = await this.instantiateResource(response);
|
|
36652
|
-
return content;
|
|
36653
|
-
}
|
|
36654
|
-
}
|
|
36655
|
-
catch (err) {
|
|
36656
|
-
_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.UnexpectedErrors.handle(err);
|
|
36657
|
-
}
|
|
36658
|
-
return undefined;
|
|
36659
|
-
}
|
|
36660
|
-
async requestResource(container, id) {
|
|
36661
|
-
const base = this.supplyUrlBase(container, id);
|
|
36662
|
-
const url = (undefined === base || "" === base) ? new URL(container.url) : new URL(container.url, base);
|
|
36663
|
-
if (!container.bound) {
|
|
36664
|
-
url.pathname += `/${this.formResourceName(id)}`;
|
|
36665
|
-
}
|
|
36666
|
-
const init = {
|
|
36667
|
-
headers: container.headers,
|
|
36668
|
-
method: "GET",
|
|
36669
|
-
};
|
|
36670
|
-
return fetch(url.toString(), init);
|
|
36671
|
-
}
|
|
36672
|
-
async getContainer(id) {
|
|
36673
|
-
const now = new Date().getTime();
|
|
36674
|
-
const name = this.formContainerName(id);
|
|
36675
|
-
const resource = this.formResourceName(id);
|
|
36676
|
-
const key = this.formContainerKey(id);
|
|
36677
|
-
let container = this._containers.get(key);
|
|
36678
|
-
if (container && container.url && (container.valid > now || container.expires < now)) {
|
|
36679
|
-
container = undefined;
|
|
36680
|
-
this._containers.delete(key);
|
|
36681
|
-
}
|
|
36682
|
-
if (!container) {
|
|
36683
|
-
let request = this._pendingContainerRequests.get(key);
|
|
36684
|
-
if (!request) {
|
|
36685
|
-
request = new Promise(async (resolve, reject) => {
|
|
36686
|
-
try {
|
|
36687
|
-
container = await this.obtainContainerUrl(id, { name, resource });
|
|
36688
|
-
this._containers.set(key, container);
|
|
36689
|
-
this._pendingContainerRequests.delete(key);
|
|
36690
|
-
resolve(container);
|
|
36691
|
-
}
|
|
36692
|
-
catch (err) {
|
|
36693
|
-
this._pendingContainerRequests.delete(key);
|
|
36694
|
-
reject(err);
|
|
36695
|
-
}
|
|
36696
|
-
});
|
|
36697
|
-
this._pendingContainerRequests.set(key, request);
|
|
36698
|
-
}
|
|
36699
|
-
return request;
|
|
36700
|
-
}
|
|
36701
|
-
return container;
|
|
36702
|
-
}
|
|
36703
|
-
}
|
|
36704
|
-
|
|
36705
|
-
|
|
36706
|
-
/***/ }),
|
|
36707
|
-
|
|
36708
|
-
/***/ "../../core/common/lib/esm/CloudStorageTileCache.js":
|
|
36709
|
-
/*!**********************************************************!*\
|
|
36710
|
-
!*** ../../core/common/lib/esm/CloudStorageTileCache.js ***!
|
|
36711
|
-
\**********************************************************/
|
|
36712
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
36713
|
-
|
|
36714
|
-
"use strict";
|
|
36715
|
-
__webpack_require__.r(__webpack_exports__);
|
|
36716
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
36717
|
-
/* harmony export */ "CloudStorageTileCache": () => (/* binding */ CloudStorageTileCache)
|
|
36718
|
-
/* harmony export */ });
|
|
36719
|
-
/* harmony import */ var _CloudStorage__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CloudStorage */ "../../core/common/lib/esm/CloudStorage.js");
|
|
36720
|
-
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
36721
|
-
/*---------------------------------------------------------------------------------------------
|
|
36722
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
36723
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
36724
|
-
*--------------------------------------------------------------------------------------------*/
|
|
36725
|
-
/** @packageDocumentation
|
|
36726
|
-
* @module CloudStorage
|
|
36727
|
-
*/
|
|
36728
|
-
/* eslint-disable deprecation/deprecation */
|
|
36729
|
-
|
|
36730
|
-
|
|
36731
|
-
/**
|
|
36732
|
-
* @beta
|
|
36733
|
-
* @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
|
|
36734
|
-
*/
|
|
36735
|
-
class CloudStorageTileCache extends _CloudStorage__WEBPACK_IMPORTED_MODULE_0__.CloudStorageCache {
|
|
36736
|
-
static getCache() {
|
|
36737
|
-
if (!CloudStorageTileCache._instance) {
|
|
36738
|
-
CloudStorageTileCache._instance = new CloudStorageTileCache();
|
|
36739
|
-
}
|
|
36740
|
-
return CloudStorageTileCache._instance;
|
|
36741
|
-
}
|
|
36742
|
-
supplyExpiryForContainerUrl(_id) {
|
|
36743
|
-
const expiry = new Date();
|
|
36744
|
-
const today = new Date().getDay();
|
|
36745
|
-
const rolloverDay = 6; // saturday
|
|
36746
|
-
expiry.setHours((rolloverDay - today) * 24);
|
|
36747
|
-
expiry.setHours(23);
|
|
36748
|
-
expiry.setMinutes(59);
|
|
36749
|
-
expiry.setSeconds(59);
|
|
36750
|
-
expiry.setMilliseconds(999);
|
|
36751
|
-
return expiry;
|
|
36752
|
-
}
|
|
36753
|
-
constructor() {
|
|
36754
|
-
super();
|
|
36755
|
-
}
|
|
36756
|
-
async obtainContainerUrl(id, descriptor) {
|
|
36757
|
-
const client = _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_1__.IModelTileRpcInterface.getClient();
|
|
36758
|
-
return client.getTileCacheContainerUrl(id.tokenProps, descriptor);
|
|
36759
|
-
}
|
|
36760
|
-
async instantiateResource(response) {
|
|
36761
|
-
const data = await response.arrayBuffer();
|
|
36762
|
-
if (!data.byteLength) {
|
|
36763
|
-
return undefined;
|
|
36764
|
-
}
|
|
36765
|
-
return new Uint8Array(data);
|
|
36766
|
-
}
|
|
36767
|
-
formContainerName(id) {
|
|
36768
|
-
return `${id.tokenProps.iModelId}`;
|
|
36769
|
-
}
|
|
36770
|
-
formResourceName(id) {
|
|
36771
|
-
const changesetId = id.tokenProps.changeset?.id || "first";
|
|
36772
|
-
const version = id.guid ? id.guid : changesetId; // NB: id.guid can be null (backend) OR undefined (frontend) here...
|
|
36773
|
-
return `tiles/${id.treeId}/${version}/${id.contentId}`;
|
|
36774
|
-
}
|
|
36775
|
-
formContainerKey(id) {
|
|
36776
|
-
if (this.provider === _CloudStorage__WEBPACK_IMPORTED_MODULE_0__.CloudStorageProvider.AliCloud) {
|
|
36777
|
-
return this.formContainerName(id) + this.formResourceName(id);
|
|
36778
|
-
}
|
|
36779
|
-
return super.formContainerKey(id);
|
|
36780
|
-
}
|
|
36781
|
-
}
|
|
36782
|
-
|
|
36783
|
-
|
|
36784
36579
|
/***/ }),
|
|
36785
36580
|
|
|
36786
36581
|
/***/ "../../core/common/lib/esm/Code.js":
|
|
@@ -48779,7 +48574,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
48779
48574
|
|
|
48780
48575
|
|
|
48781
48576
|
/** RPC interface management is concerned with coordination of access and configuration for RPC interfaces.
|
|
48782
|
-
* @
|
|
48577
|
+
* @beta
|
|
48783
48578
|
*/
|
|
48784
48579
|
class RpcManager {
|
|
48785
48580
|
/** Initializes an RPC interface class.
|
|
@@ -52002,377 +51797,373 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
52002
51797
|
"use strict";
|
|
52003
51798
|
__webpack_require__.r(__webpack_exports__);
|
|
52004
51799
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
52005
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
52006
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
52007
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
51800
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_34__.AdditionalTransform),
|
|
51801
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__.AffineTransform),
|
|
51802
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.AmbientLight),
|
|
52008
51803
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
52009
51804
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
52010
51805
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
52011
51806
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
52012
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
52013
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
52014
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
52015
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
52016
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
52017
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
51807
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_35__.AreaPattern),
|
|
51808
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_141__.B3dmHeader),
|
|
51809
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.BRepEntity),
|
|
51810
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__.BRepGeometryOperation),
|
|
51811
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BackendError),
|
|
51812
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.BackgroundFill),
|
|
52018
51813
|
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapProvider),
|
|
52019
51814
|
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapSettings),
|
|
52020
51815
|
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapType),
|
|
52021
51816
|
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_5__.Base64EncodedString),
|
|
52022
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
52023
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
52024
|
-
/* harmony export */ "BatchType": () => (/* reexport safe */
|
|
52025
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
52026
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
52027
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
52028
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
52029
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
52030
|
-
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */
|
|
52031
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
52032
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
51817
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_71__.BaseLayerSettings),
|
|
51818
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.BaseMapLayerSettings),
|
|
51819
|
+
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.BatchType),
|
|
51820
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_134__.BentleyCloudRpcConfiguration),
|
|
51821
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_134__.BentleyCloudRpcManager),
|
|
51822
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_135__.BentleyCloudRpcProtocol),
|
|
51823
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BentleyError),
|
|
51824
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BentleyStatus),
|
|
51825
|
+
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_12__.BisCodeSpec),
|
|
51826
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.BlobOptionsBuilder),
|
|
51827
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_36__.BoundingSphere),
|
|
52033
51828
|
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.BriefcaseIdValue),
|
|
52034
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
52035
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
52036
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
51829
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BriefcaseStatus),
|
|
51830
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.CURRENT_INVOCATION),
|
|
51831
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.CURRENT_REQUEST),
|
|
52037
51832
|
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_7__.Camera),
|
|
52038
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
52039
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
52040
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
52041
|
-
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */
|
|
52042
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
52043
|
-
/* harmony export */ "ChangedValueState": () => (/* reexport safe */
|
|
51833
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__.Carto2DDegrees),
|
|
51834
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_37__.Cartographic),
|
|
51835
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_37__.CartographicRange),
|
|
51836
|
+
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ChangeOpCode),
|
|
51837
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ChangeSetStatus),
|
|
51838
|
+
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ChangedValueState),
|
|
52044
51839
|
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_10__.ChangesetType),
|
|
52045
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
51840
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ChannelConstraintError),
|
|
52046
51841
|
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.ClipStyle),
|
|
52047
|
-
/* harmony export */ "
|
|
52048
|
-
/* harmony export */ "
|
|
52049
|
-
/* harmony export */ "
|
|
52050
|
-
/* harmony export */ "
|
|
52051
|
-
/* harmony export */ "
|
|
52052
|
-
/* harmony export */ "
|
|
52053
|
-
/* harmony export */ "
|
|
52054
|
-
/* harmony export */ "
|
|
52055
|
-
/* harmony export */ "
|
|
52056
|
-
/* harmony export */ "
|
|
52057
|
-
/* harmony export */ "
|
|
52058
|
-
/* harmony export */ "
|
|
52059
|
-
/* harmony export */ "
|
|
52060
|
-
/* harmony export */ "
|
|
52061
|
-
/* harmony export */ "
|
|
52062
|
-
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModel),
|
|
52063
|
-
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModelProps),
|
|
52064
|
-
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModels),
|
|
52065
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.CurrentImdlVersion),
|
|
51842
|
+
/* harmony export */ "Code": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_12__.Code),
|
|
51843
|
+
/* harmony export */ "CodeScopeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_12__.CodeScopeSpec),
|
|
51844
|
+
/* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_12__.CodeSpec),
|
|
51845
|
+
/* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_13__.ColorByName),
|
|
51846
|
+
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_14__.ColorDef),
|
|
51847
|
+
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.ColorIndex),
|
|
51848
|
+
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_15__.CommonLoggerCategory),
|
|
51849
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_142__.CompositeTileHeader),
|
|
51850
|
+
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_26__.ConcreteEntityTypes),
|
|
51851
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.ContentFlags),
|
|
51852
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.ContentIdProvider),
|
|
51853
|
+
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.ContextRealityModel),
|
|
51854
|
+
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.ContextRealityModelProps),
|
|
51855
|
+
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.ContextRealityModels),
|
|
51856
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__.CurrentImdlVersion),
|
|
52066
51857
|
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.CutStyle),
|
|
52067
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
52068
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
52069
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
52070
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
52071
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
52072
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
52073
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
52074
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
52075
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
52076
|
-
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */
|
|
52077
|
-
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */
|
|
51858
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbQueryError),
|
|
51859
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbRequestKind),
|
|
51860
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbResponseKind),
|
|
51861
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbResponseStatus),
|
|
51862
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.DbResult),
|
|
51863
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbValueFormat),
|
|
51864
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_86__.DefaultSupportedTypes),
|
|
51865
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_127__.DevToolsRpcInterface),
|
|
51866
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_127__.DevToolsStatsOptions),
|
|
51867
|
+
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_17__.DisplayStyle3dSettings),
|
|
51868
|
+
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_17__.DisplayStyleSettings),
|
|
52078
51869
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.DomainOptions),
|
|
52079
|
-
/* harmony export */ "ECJsNames": () => (/* reexport safe */
|
|
52080
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
52081
|
-
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */
|
|
52082
|
-
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */
|
|
52083
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
52084
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
52085
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
52086
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
52087
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
52088
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
52089
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
52090
|
-
/* harmony export */ "EntityMetaData": () => (/* reexport safe */
|
|
52091
|
-
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */
|
|
52092
|
-
/* harmony export */ "Environment": () => (/* reexport safe */
|
|
52093
|
-
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */
|
|
52094
|
-
/* harmony export */ "Feature": () => (/* reexport safe */
|
|
52095
|
-
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */
|
|
52096
|
-
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */
|
|
52097
|
-
/* harmony export */ "FeatureIndex": () => (/* reexport safe */
|
|
52098
|
-
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */
|
|
52099
|
-
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */
|
|
52100
|
-
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */
|
|
52101
|
-
/* harmony export */ "FeatureTable": () => (/* reexport safe */
|
|
52102
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
52103
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
52104
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
52105
|
-
/* harmony export */ "FontMap": () => (/* reexport safe */
|
|
52106
|
-
/* harmony export */ "FontType": () => (/* reexport safe */
|
|
52107
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
52108
|
-
/* harmony export */ "Frustum": () => (/* reexport safe */
|
|
52109
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
52110
|
-
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */
|
|
52111
|
-
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */
|
|
52112
|
-
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */
|
|
52113
|
-
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */
|
|
52114
|
-
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */
|
|
52115
|
-
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */
|
|
52116
|
-
/* harmony export */ "GeographicCRS": () => (/* reexport safe */
|
|
52117
|
-
/* harmony export */ "GeometryClass": () => (/* reexport safe */
|
|
52118
|
-
/* harmony export */ "GeometryParams": () => (/* reexport safe */
|
|
52119
|
-
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */
|
|
52120
|
-
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */
|
|
52121
|
-
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */
|
|
52122
|
-
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */
|
|
52123
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
51870
|
+
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ECJsNames),
|
|
51871
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_80__.ECSqlReader),
|
|
51872
|
+
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ECSqlSystemProperty),
|
|
51873
|
+
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ECSqlValueType),
|
|
51874
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_108__.Easing),
|
|
51875
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_60__.EcefLocation),
|
|
51876
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.EdgeArgs),
|
|
51877
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__.ElementGeometry),
|
|
51878
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_82__.ElementGeometryChange),
|
|
51879
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__.ElementGeometryOpcode),
|
|
51880
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_70__.EmptyLocalization),
|
|
51881
|
+
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_25__.EntityMetaData),
|
|
51882
|
+
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_26__.EntityReferenceSet),
|
|
51883
|
+
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_27__.Environment),
|
|
51884
|
+
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.ExternalSourceAttachmentRole),
|
|
51885
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.Feature),
|
|
51886
|
+
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__.FeatureAppearance),
|
|
51887
|
+
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__.FeatureAppearanceProvider),
|
|
51888
|
+
/* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.FeatureIndex),
|
|
51889
|
+
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.FeatureIndexType),
|
|
51890
|
+
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_24__.FeatureOverrideType),
|
|
51891
|
+
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__.FeatureOverrides),
|
|
51892
|
+
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.FeatureTable),
|
|
51893
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__.FeatureTableHeader),
|
|
51894
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.FillDisplay),
|
|
51895
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_53__.FillFlags),
|
|
51896
|
+
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_31__.FontMap),
|
|
51897
|
+
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_31__.FontType),
|
|
51898
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.FresnelSettings),
|
|
51899
|
+
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.Frustum),
|
|
51900
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_40__.FrustumPlanes),
|
|
51901
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_33__.GeoCoordStatus),
|
|
51902
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeocentricTransform),
|
|
51903
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeodeticDatum),
|
|
51904
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_42__.GeodeticEllipsoid),
|
|
51905
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeodeticTransform),
|
|
51906
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeodeticTransformPath),
|
|
51907
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.GeographicCRS),
|
|
51908
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.GeometryClass),
|
|
51909
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.GeometryParams),
|
|
51910
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.GeometryStreamBuilder),
|
|
51911
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.GeometryStreamFlags),
|
|
51912
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.GeometryStreamIterator),
|
|
51913
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_51__.GeometrySummaryVerbosity),
|
|
51914
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_144__.GlbHeader),
|
|
52124
51915
|
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.GlobeMode),
|
|
52125
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
52126
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
52127
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
52128
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
52129
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
52130
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
52131
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
52132
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
52133
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
52134
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
52135
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
52136
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
52137
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
52138
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
52139
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
52140
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
52141
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
52142
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
52143
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
52144
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
52145
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
52146
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
52147
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
52148
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
52149
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
52150
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
52151
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
52152
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
52153
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
52154
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
52155
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
52156
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
52157
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
52158
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
52159
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
52160
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
52161
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
52162
|
-
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */
|
|
52163
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
52164
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
52165
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
52166
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
52167
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
52168
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
52169
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
52170
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
52171
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
52172
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
52173
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
52174
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
52175
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
52176
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
52177
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
52178
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
52179
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
52180
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
52181
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
52182
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
52183
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
52184
|
-
/* harmony export */ "ModelFeature": () => (/* reexport safe */
|
|
52185
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
52186
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
52187
|
-
/* harmony export */ "MonochromeMode": () => (/* reexport safe */
|
|
52188
|
-
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */
|
|
52189
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
52190
|
-
/* harmony export */ "NonUniformColor": () => (/* reexport safe */
|
|
52191
|
-
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */
|
|
52192
|
-
/* harmony export */ "Npc": () => (/* reexport safe */
|
|
52193
|
-
/* harmony export */ "NpcCenter": () => (/* reexport safe */
|
|
52194
|
-
/* harmony export */ "NpcCorners": () => (/* reexport safe */
|
|
52195
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
52196
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
52197
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
52198
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
52199
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
52200
|
-
/* harmony export */ "PackedFeature": () => (/* reexport safe */
|
|
52201
|
-
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */
|
|
52202
|
-
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */
|
|
52203
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
52204
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
52205
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
52206
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
52207
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
52208
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
52209
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
52210
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
52211
|
-
/* harmony export */ "PolylineData": () => (/* reexport safe */
|
|
52212
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
52213
|
-
/* harmony export */ "PolylineFlags": () => (/* reexport safe */
|
|
52214
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
52215
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
52216
|
-
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */
|
|
51916
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_144__.GltfV2ChunkTypes),
|
|
51917
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_144__.GltfVersions),
|
|
51918
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_52__.Gradient),
|
|
51919
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_53__.GraphicParams),
|
|
51920
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GridFileDefinition),
|
|
51921
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GridFileTransform),
|
|
51922
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_110__.GridOrientationType),
|
|
51923
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_54__.GroundPlane),
|
|
51924
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_57__.HSLColor),
|
|
51925
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_58__.HSVColor),
|
|
51926
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_58__.HSVConstants),
|
|
51927
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_34__.Helmert2DWithZOffset),
|
|
51928
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.HemisphereLights),
|
|
51929
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_55__.HiddenLine),
|
|
51930
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_56__.Hilite),
|
|
51931
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.HorizontalCRS),
|
|
51932
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.HorizontalCRSExtent),
|
|
51933
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_145__.I3dmHeader),
|
|
51934
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_60__.IModel),
|
|
51935
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.IModelError),
|
|
51936
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_128__.IModelNotFoundResponse),
|
|
51937
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_128__.IModelReadRpcInterface),
|
|
51938
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.IModelStatus),
|
|
51939
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_129__.IModelTileRpcInterface),
|
|
51940
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_62__.IModelVersion),
|
|
51941
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.INSTANCE),
|
|
51942
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageBuffer),
|
|
51943
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageBufferFormat),
|
|
51944
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_44__.ImageGraphic),
|
|
51945
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_44__.ImageGraphicCorners),
|
|
51946
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.ImageMapLayerSettings),
|
|
51947
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageSource),
|
|
51948
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageSourceFormat),
|
|
51949
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__.ImdlFlags),
|
|
51950
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__.ImdlHeader),
|
|
51951
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.InternetConnectivityStatus),
|
|
51952
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_108__.Interpolation),
|
|
51953
|
+
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_67__.IpcAppChannel),
|
|
51954
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_66__.IpcSession),
|
|
51955
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocket),
|
|
51956
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketBackend),
|
|
51957
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketFrontend),
|
|
51958
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketMessage),
|
|
51959
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketMessageType),
|
|
51960
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_65__.IpcWebSocketTransport),
|
|
51961
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.LightSettings),
|
|
51962
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_69__.LinePixels),
|
|
51963
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_45__.LineStyle),
|
|
51964
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_71__.MapImagerySettings),
|
|
51965
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.MapLayerSettings),
|
|
51966
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.MapSubLayerSettings),
|
|
51967
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_117__.MarshalingBinaryMarker),
|
|
51968
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_73__.MassPropertiesOperation),
|
|
51969
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshEdge),
|
|
51970
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshEdges),
|
|
51971
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshPolyline),
|
|
51972
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshPolylineList),
|
|
51973
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_75__.ModelClipGroup),
|
|
51974
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_75__.ModelClipGroups),
|
|
51975
|
+
/* harmony export */ "ModelFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.ModelFeature),
|
|
51976
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_82__.ModelGeometryChanges),
|
|
51977
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.ModelMapLayerSettings),
|
|
51978
|
+
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_17__.MonochromeMode),
|
|
51979
|
+
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.MultiModelPackedFeatureTable),
|
|
51980
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.NoContentError),
|
|
51981
|
+
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.NonUniformColor),
|
|
51982
|
+
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_74__.NormalMapFlags),
|
|
51983
|
+
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.Npc),
|
|
51984
|
+
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.NpcCenter),
|
|
51985
|
+
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.NpcCorners),
|
|
51986
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.OPERATION),
|
|
51987
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_78__.OctEncodedNormal),
|
|
51988
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_78__.OctEncodedNormalPair),
|
|
51989
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.OverriddenBy),
|
|
51990
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.POLICY),
|
|
51991
|
+
/* harmony export */ "PackedFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.PackedFeature),
|
|
51992
|
+
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.PackedFeatureModelTable),
|
|
51993
|
+
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.PackedFeatureTable),
|
|
51994
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_46__.Placement2d),
|
|
51995
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_46__.Placement3d),
|
|
51996
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_83__.PlanProjectionSettings),
|
|
51997
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__.PlanarClipMaskMode),
|
|
51998
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__.PlanarClipMaskPriority),
|
|
51999
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__.PlanarClipMaskSettings),
|
|
52000
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_147__.PntsHeader),
|
|
52001
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_87__.PointCloudDisplaySettings),
|
|
52002
|
+
/* harmony export */ "PolylineData": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineData),
|
|
52003
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineEdgeArgs),
|
|
52004
|
+
/* harmony export */ "PolylineFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineFlags),
|
|
52005
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineTypeFlags),
|
|
52006
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.PositionalVectorTransform),
|
|
52007
|
+
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_25__.PrimitiveTypeCode),
|
|
52217
52008
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.ProfileOptions),
|
|
52218
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
52219
|
-
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */
|
|
52220
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
52221
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
52222
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
52223
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
52224
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
52225
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
52226
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
52227
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
52228
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
52229
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
52230
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
52231
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
52232
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
52233
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
52234
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
52235
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
52236
|
-
/* harmony export */ "Rank": () => (/* reexport safe */
|
|
52237
|
-
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */
|
|
52238
|
-
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */
|
|
52239
|
-
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */
|
|
52240
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
52241
|
-
/* harmony export */ "RelatedElement": () => (/* reexport safe */
|
|
52242
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
52243
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
52244
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
52245
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
52246
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
52247
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
52248
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
52249
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
52250
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
52251
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
52252
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
52253
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
52254
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
52255
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
52256
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
52257
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
52258
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
52259
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
52260
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
52261
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
52262
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
52263
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
52264
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
52265
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
52266
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
52267
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
52268
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
52269
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
52270
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
52271
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
52272
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
52273
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
52274
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
52275
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
52276
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
52277
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
52278
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
52279
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
52280
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
52281
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
52282
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
52283
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
52284
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
52009
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__.Projection),
|
|
52010
|
+
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_25__.PropertyMetaData),
|
|
52011
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_80__.PropertyMetaDataMap),
|
|
52012
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QParams2d),
|
|
52013
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QParams3d),
|
|
52014
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2d),
|
|
52015
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2dBuffer),
|
|
52016
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2dBufferBuilder),
|
|
52017
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2dList),
|
|
52018
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3d),
|
|
52019
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3dBuffer),
|
|
52020
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3dBufferBuilder),
|
|
52021
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3dList),
|
|
52022
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.Quantization),
|
|
52023
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.QueryBinder),
|
|
52024
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.QueryOptionsBuilder),
|
|
52025
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.QueryRowFormat),
|
|
52026
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.REGISTRY),
|
|
52027
|
+
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.Rank),
|
|
52028
|
+
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.RealityDataFormat),
|
|
52029
|
+
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.RealityDataProvider),
|
|
52030
|
+
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.RealityDataSourceKey),
|
|
52031
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_87__.RealityModelDisplaySettings),
|
|
52032
|
+
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.RelatedElement),
|
|
52033
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_89__.RenderMaterial),
|
|
52034
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_111__.RenderMode),
|
|
52035
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_90__.RenderSchedule),
|
|
52036
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_91__.RenderTexture),
|
|
52037
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__.ResponseLike),
|
|
52038
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_92__.RgbColor),
|
|
52039
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcConfiguration),
|
|
52040
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcContentType),
|
|
52041
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__.RpcControlChannel),
|
|
52042
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__.RpcControlResponse),
|
|
52043
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcDefaultConfiguration),
|
|
52044
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcDirectProtocol),
|
|
52045
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcDirectRequest),
|
|
52046
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcEndpoint),
|
|
52047
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_133__.RpcInterface),
|
|
52048
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_115__.RpcInvocation),
|
|
52049
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_93__.RpcManager),
|
|
52050
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_117__.RpcMarshaling),
|
|
52051
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_137__.RpcMultipart),
|
|
52052
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__.RpcNotFoundResponse),
|
|
52053
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_136__.RpcOpenAPIDescription),
|
|
52054
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_118__.RpcOperation),
|
|
52055
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_118__.RpcOperationPolicy),
|
|
52056
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_119__.RpcPendingQueue),
|
|
52057
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__.RpcPendingResponse),
|
|
52058
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_120__.RpcProtocol),
|
|
52059
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcProtocolEvent),
|
|
52060
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_120__.RpcProtocolVersion),
|
|
52061
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushChannel),
|
|
52062
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushConnection),
|
|
52063
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushService),
|
|
52064
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushSubscription),
|
|
52065
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushTransport),
|
|
52066
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.RpcRegistry),
|
|
52067
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__.RpcRequest),
|
|
52068
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcRequestEvent),
|
|
52069
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_120__.RpcRequestFulfillment),
|
|
52070
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcRequestStatus),
|
|
52071
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcResponseCacheControl),
|
|
52072
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcRoutingMap),
|
|
52073
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_124__.RpcRoutingToken),
|
|
52074
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_117__.RpcSerializedValue),
|
|
52075
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_116__.RpcSessionInvocation),
|
|
52285
52076
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SchemaState),
|
|
52286
|
-
/* harmony export */ "SectionType": () => (/* reexport safe */
|
|
52287
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
52288
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
52289
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
52290
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
52291
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
52292
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
52293
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
52294
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
52295
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
52296
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
52297
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
52298
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
52299
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
52300
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
52301
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
52302
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
52303
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
52304
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
52077
|
+
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.SectionType),
|
|
52078
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ServerError),
|
|
52079
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ServerTimeoutError),
|
|
52080
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.SilhouetteEdgeArgs),
|
|
52081
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkyBox),
|
|
52082
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkyBoxImageType),
|
|
52083
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkyCube),
|
|
52084
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkyGradient),
|
|
52085
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkySphere),
|
|
52086
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_130__.SnapshotIModelRpcInterface),
|
|
52087
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.SolarLight),
|
|
52088
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_98__.SolarShadowSettings),
|
|
52089
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifier),
|
|
52090
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifierFlags),
|
|
52091
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifierInsideDisplay),
|
|
52092
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifierOutsideDisplay),
|
|
52093
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifiers),
|
|
52094
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_100__.SubCategoryAppearance),
|
|
52095
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_101__.SubCategoryOverride),
|
|
52305
52096
|
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SyncMode),
|
|
52306
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
52307
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
52308
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
52309
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
52310
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
52311
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
52312
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
52313
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
52314
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
52315
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
52316
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
52317
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
52318
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
52319
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
52320
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
52321
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
52322
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
52323
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
52324
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
52325
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
52326
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
52327
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
52328
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
52329
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
52330
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
52331
|
-
/* harmony export */ "TypeDefinition": () => (/* reexport safe */
|
|
52097
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_102__.TerrainHeightOriginMode),
|
|
52098
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_102__.TerrainSettings),
|
|
52099
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_131__.TestRpcManager),
|
|
52100
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_48__.TextString),
|
|
52101
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_74__.TextureMapUnits),
|
|
52102
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_103__.TextureMapping),
|
|
52103
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_104__.TextureTransparency),
|
|
52104
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicDisplay),
|
|
52105
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicDisplayMode),
|
|
52106
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicDisplaySensor),
|
|
52107
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicDisplaySensorSettings),
|
|
52108
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicGradientColorScheme),
|
|
52109
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicGradientMode),
|
|
52110
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicGradientSettings),
|
|
52111
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_107__.TileContentSource),
|
|
52112
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.TileFormat),
|
|
52113
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.TileHeader),
|
|
52114
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.TileMetadataReader),
|
|
52115
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.TileOptions),
|
|
52116
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.TileReadError),
|
|
52117
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.TileReadStatus),
|
|
52118
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.TreeFlags),
|
|
52119
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_108__.Tween),
|
|
52120
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_108__.Tweens),
|
|
52121
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_109__.TxnAction),
|
|
52122
|
+
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.TypeDefinition),
|
|
52332
52123
|
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_8__.TypeOfChange),
|
|
52333
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
52334
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
52335
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
52336
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
52337
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
52338
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
52339
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
52340
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
52341
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
52342
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
52343
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
52344
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
52345
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
52346
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
52347
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
52348
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
52349
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
52350
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
52351
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
52352
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
52353
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
52354
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
52355
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
52356
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
52357
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
52358
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
52359
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
52360
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
52361
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
52362
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
52363
|
-
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */
|
|
52364
|
-
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */
|
|
52365
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
52366
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
52367
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
52368
|
-
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */
|
|
52369
|
-
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */
|
|
52370
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
52371
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
52372
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
52373
|
-
/* harmony export */ "readElementMeshes": () => (/* reexport safe */
|
|
52374
|
-
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */
|
|
52375
|
-
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */
|
|
52124
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.VerticalCRS),
|
|
52125
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_110__.ViewDetails),
|
|
52126
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_110__.ViewDetails3d),
|
|
52127
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_111__.ViewFlags),
|
|
52128
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.WEB_RPC_CONSTANTS),
|
|
52129
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_140__.WebAppRpcLogging),
|
|
52130
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_138__.WebAppRpcProtocol),
|
|
52131
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_139__.WebAppRpcRequest),
|
|
52132
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_151__.WhiteOnWhiteReversalSettings),
|
|
52133
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_132__.WipRpcInterface),
|
|
52134
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.XyzRotation),
|
|
52135
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__.aggregateLoad),
|
|
52136
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.bisectTileRange2d),
|
|
52137
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.bisectTileRange3d),
|
|
52138
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__.calculateSolarAngles),
|
|
52139
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__.calculateSolarDirection),
|
|
52140
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__.calculateSolarDirectionFromAngles),
|
|
52141
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__.calculateSunriseOrSunset),
|
|
52142
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.compareIModelTileTreeIds),
|
|
52143
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.computeChildTileProps),
|
|
52144
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.computeChildTileRanges),
|
|
52145
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.computeTileChordTolerance),
|
|
52146
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.defaultTileOptions),
|
|
52147
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.getMaximumMajorTileFormatVersion),
|
|
52148
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_67__.getPullChangesIpcChannel),
|
|
52149
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_107__.getTileObjectReference),
|
|
52150
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.iModelTileTreeIdToString),
|
|
52151
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_63__.iTwinChannel),
|
|
52152
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__.initializeRpcRequest),
|
|
52153
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.isKnownTileFormat),
|
|
52154
|
+
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.isPlacement2dProps),
|
|
52155
|
+
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.isPlacement3dProps),
|
|
52156
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.isPowerOfTwo),
|
|
52157
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.isValidImageSourceFormat),
|
|
52158
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_33__.mapToGeoServiceStatus),
|
|
52159
|
+
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.nativeAppChannel),
|
|
52160
|
+
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.nativeAppNotify),
|
|
52161
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.nextHighestPowerOfTwo),
|
|
52162
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.nextPoint3d64FromByteStream),
|
|
52163
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.parseTileTreeIdAndContentId),
|
|
52164
|
+
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_22__.readElementMeshes),
|
|
52165
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.readTileContentDescription),
|
|
52166
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.tileFormatFromNumber)
|
|
52376
52167
|
/* harmony export */ });
|
|
52377
52168
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
52378
52169
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -52386,148 +52177,146 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
52386
52177
|
/* harmony import */ var _ChangedEntities__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./ChangedEntities */ "../../core/common/lib/esm/ChangedEntities.js");
|
|
52387
52178
|
/* harmony import */ var _ChangesetProps__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ChangesetProps */ "../../core/common/lib/esm/ChangesetProps.js");
|
|
52388
52179
|
/* harmony import */ var _ClipStyle__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./ClipStyle */ "../../core/common/lib/esm/ClipStyle.js");
|
|
52389
|
-
/* harmony import */ var
|
|
52390
|
-
/* harmony import */ var
|
|
52391
|
-
/* harmony import */ var
|
|
52392
|
-
/* harmony import */ var
|
|
52393
|
-
/* harmony import */ var
|
|
52394
|
-
/* harmony import */ var
|
|
52395
|
-
/* harmony import */ var
|
|
52396
|
-
/* harmony import */ var
|
|
52397
|
-
/* harmony import */ var
|
|
52398
|
-
/* harmony import */ var
|
|
52399
|
-
/* harmony import */ var
|
|
52400
|
-
/* harmony import */ var
|
|
52401
|
-
/* harmony import */ var
|
|
52402
|
-
/* harmony import */ var
|
|
52403
|
-
/* harmony import */ var
|
|
52404
|
-
/* harmony import */ var
|
|
52405
|
-
/* harmony import */ var
|
|
52406
|
-
/* harmony import */ var
|
|
52407
|
-
/* harmony import */ var
|
|
52408
|
-
/* harmony import */ var
|
|
52409
|
-
/* harmony import */ var
|
|
52410
|
-
/* harmony import */ var
|
|
52411
|
-
/* harmony import */ var
|
|
52412
|
-
/* harmony import */ var
|
|
52413
|
-
/* harmony import */ var
|
|
52414
|
-
/* harmony import */ var
|
|
52415
|
-
/* harmony import */ var
|
|
52416
|
-
/* harmony import */ var
|
|
52417
|
-
/* harmony import */ var
|
|
52418
|
-
/* harmony import */ var
|
|
52419
|
-
/* harmony import */ var
|
|
52420
|
-
/* harmony import */ var
|
|
52421
|
-
/* harmony import */ var
|
|
52422
|
-
/* harmony import */ var
|
|
52423
|
-
/* harmony import */ var
|
|
52424
|
-
/* harmony import */ var
|
|
52425
|
-
/* harmony import */ var
|
|
52426
|
-
/* harmony import */ var
|
|
52427
|
-
/* harmony import */ var
|
|
52428
|
-
/* harmony import */ var
|
|
52429
|
-
/* harmony import */ var
|
|
52430
|
-
/* harmony import */ var
|
|
52431
|
-
/* harmony import */ var
|
|
52432
|
-
/* harmony import */ var
|
|
52433
|
-
/* harmony import */ var
|
|
52434
|
-
/* harmony import */ var
|
|
52435
|
-
/* harmony import */ var
|
|
52436
|
-
/* harmony import */ var
|
|
52437
|
-
/* harmony import */ var
|
|
52438
|
-
/* harmony import */ var
|
|
52439
|
-
/* harmony import */ var
|
|
52440
|
-
/* harmony import */ var
|
|
52441
|
-
/* harmony import */ var
|
|
52442
|
-
/* harmony import */ var
|
|
52443
|
-
/* harmony import */ var
|
|
52444
|
-
/* harmony import */ var
|
|
52445
|
-
/* harmony import */ var
|
|
52446
|
-
/* harmony import */ var
|
|
52447
|
-
/* harmony import */ var
|
|
52448
|
-
/* harmony import */ var
|
|
52449
|
-
/* harmony import */ var
|
|
52450
|
-
/* harmony import */ var
|
|
52451
|
-
/* harmony import */ var
|
|
52452
|
-
/* harmony import */ var
|
|
52453
|
-
/* harmony import */ var
|
|
52454
|
-
/* harmony import */ var
|
|
52455
|
-
/* harmony import */ var
|
|
52456
|
-
/* harmony import */ var
|
|
52457
|
-
/* harmony import */ var
|
|
52458
|
-
/* harmony import */ var
|
|
52459
|
-
/* harmony import */ var
|
|
52460
|
-
/* harmony import */ var
|
|
52461
|
-
/* harmony import */ var
|
|
52462
|
-
/* harmony import */ var
|
|
52463
|
-
/* harmony import */ var
|
|
52464
|
-
/* harmony import */ var
|
|
52465
|
-
/* harmony import */ var
|
|
52466
|
-
/* harmony import */ var
|
|
52467
|
-
/* harmony import */ var
|
|
52468
|
-
/* harmony import */ var
|
|
52469
|
-
/* harmony import */ var
|
|
52470
|
-
/* harmony import */ var
|
|
52471
|
-
/* harmony import */ var
|
|
52472
|
-
/* harmony import */ var
|
|
52473
|
-
/* harmony import */ var
|
|
52474
|
-
/* harmony import */ var
|
|
52475
|
-
/* harmony import */ var
|
|
52476
|
-
/* harmony import */ var
|
|
52477
|
-
/* harmony import */ var
|
|
52478
|
-
/* harmony import */ var
|
|
52479
|
-
/* harmony import */ var
|
|
52480
|
-
/* harmony import */ var
|
|
52481
|
-
/* harmony import */ var
|
|
52482
|
-
/* harmony import */ var
|
|
52483
|
-
/* harmony import */ var
|
|
52484
|
-
/* harmony import */ var
|
|
52485
|
-
/* harmony import */ var
|
|
52486
|
-
/* harmony import */ var
|
|
52487
|
-
/* harmony import */ var
|
|
52488
|
-
/* harmony import */ var
|
|
52489
|
-
/* harmony import */ var
|
|
52490
|
-
/* harmony import */ var
|
|
52491
|
-
/* harmony import */ var
|
|
52492
|
-
/* harmony import */ var
|
|
52493
|
-
/* harmony import */ var
|
|
52494
|
-
/* harmony import */ var
|
|
52495
|
-
/* harmony import */ var
|
|
52496
|
-
/* harmony import */ var
|
|
52497
|
-
/* harmony import */ var
|
|
52498
|
-
/* harmony import */ var
|
|
52499
|
-
/* harmony import */ var
|
|
52500
|
-
/* harmony import */ var
|
|
52501
|
-
/* harmony import */ var
|
|
52502
|
-
/* harmony import */ var
|
|
52503
|
-
/* harmony import */ var
|
|
52504
|
-
/* harmony import */ var
|
|
52505
|
-
/* harmony import */ var
|
|
52506
|
-
/* harmony import */ var
|
|
52507
|
-
/* harmony import */ var
|
|
52508
|
-
/* harmony import */ var
|
|
52509
|
-
/* harmony import */ var
|
|
52510
|
-
/* harmony import */ var
|
|
52511
|
-
/* harmony import */ var
|
|
52512
|
-
/* harmony import */ var
|
|
52513
|
-
/* harmony import */ var
|
|
52514
|
-
/* harmony import */ var
|
|
52515
|
-
/* harmony import */ var
|
|
52516
|
-
/* harmony import */ var
|
|
52517
|
-
/* harmony import */ var
|
|
52518
|
-
/* harmony import */ var
|
|
52519
|
-
/* harmony import */ var
|
|
52520
|
-
/* harmony import */ var
|
|
52521
|
-
/* harmony import */ var
|
|
52522
|
-
/* harmony import */ var
|
|
52523
|
-
/* harmony import */ var
|
|
52524
|
-
/* harmony import */ var
|
|
52525
|
-
/* harmony import */ var
|
|
52526
|
-
/* harmony import */ var
|
|
52527
|
-
/* harmony import */ var
|
|
52528
|
-
/* harmony import */ var
|
|
52529
|
-
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
52530
|
-
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
52180
|
+
/* harmony import */ var _Code__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./Code */ "../../core/common/lib/esm/Code.js");
|
|
52181
|
+
/* harmony import */ var _ColorByName__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./ColorByName */ "../../core/common/lib/esm/ColorByName.js");
|
|
52182
|
+
/* harmony import */ var _ColorDef__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./ColorDef */ "../../core/common/lib/esm/ColorDef.js");
|
|
52183
|
+
/* harmony import */ var _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./CommonLoggerCategory */ "../../core/common/lib/esm/CommonLoggerCategory.js");
|
|
52184
|
+
/* harmony import */ var _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ContextRealityModel */ "../../core/common/lib/esm/ContextRealityModel.js");
|
|
52185
|
+
/* harmony import */ var _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./DisplayStyleSettings */ "../../core/common/lib/esm/DisplayStyleSettings.js");
|
|
52186
|
+
/* harmony import */ var _domains_FunctionalElementProps__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./domains/FunctionalElementProps */ "../../core/common/lib/esm/domains/FunctionalElementProps.js");
|
|
52187
|
+
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
52188
|
+
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
52189
|
+
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
52190
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
52191
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
52192
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
52193
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
52194
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
52195
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
52196
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
52197
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
52198
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
52199
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
52200
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
52201
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
52202
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
52203
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
52204
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
52205
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
52206
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
52207
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
52208
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
52209
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
52210
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
52211
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
52212
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
52213
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
52214
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
52215
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
52216
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
52217
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
52218
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
52219
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
52220
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
52221
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
52222
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
52223
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
52224
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
52225
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
52226
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
52227
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
52228
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
52229
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
52230
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
52231
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
52232
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
52233
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
52234
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
52235
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
52236
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
52237
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
52238
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
52239
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
52240
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
52241
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
52242
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
52243
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
52244
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
52245
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
52246
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
52247
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
52248
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
52249
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
52250
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
52251
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
52252
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
52253
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
52254
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
52255
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
52256
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
52257
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
52258
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
52259
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
52260
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
52261
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
52262
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
52263
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
52264
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
52265
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
52266
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
52267
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
52268
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
52269
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
52270
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
52271
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
52272
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
52273
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
52274
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
52275
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
52276
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
52277
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
52278
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
52279
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
52280
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
52281
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
52282
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
52283
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
52284
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
52285
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
52286
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
52287
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
52288
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
52289
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
52290
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
52291
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
52292
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
52293
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
52294
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
52295
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
52296
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
52297
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
52298
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
52299
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
52300
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
52301
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
52302
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
52303
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
52304
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
52305
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
52306
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
52307
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
52308
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
52309
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
52310
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
52311
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
52312
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
52313
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
52314
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
52315
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
52316
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
52317
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
52318
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
52319
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
52531
52320
|
/*---------------------------------------------------------------------------------------------
|
|
52532
52321
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
52533
52322
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -52681,8 +52470,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
52681
52470
|
|
|
52682
52471
|
|
|
52683
52472
|
|
|
52684
|
-
|
|
52685
|
-
|
|
52686
52473
|
|
|
52687
52474
|
|
|
52688
52475
|
|
|
@@ -61923,28 +61710,14 @@ class IModelTileRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
61923
61710
|
NOTE: Any add/remove/change to the methods below requires an update of the interface version.
|
|
61924
61711
|
NOTE: Please consult the README in this folder for the semantic versioning rules.
|
|
61925
61712
|
===========================================================================================*/
|
|
61926
|
-
/**
|
|
61927
|
-
* @returns undefined if the backend does not support caching
|
|
61713
|
+
/** Get storage config required to download tiles from the tile cache.
|
|
61714
|
+
* @returns undefined if the backend does not support caching. In that case, tiles must be requested using [[generateTileContent]].
|
|
61928
61715
|
* @beta
|
|
61929
61716
|
*/
|
|
61930
61717
|
async getTileCacheConfig(_tokenProps) {
|
|
61931
61718
|
const response = await this.forward(arguments);
|
|
61932
61719
|
return response && { ...response, expiration: new Date(response.expiration) };
|
|
61933
61720
|
}
|
|
61934
|
-
/**
|
|
61935
|
-
* Returns connection information for external tile cache or an empty `CloudStorageContainerUrl` if no external tile cache is configured on the backend.
|
|
61936
|
-
* @beta
|
|
61937
|
-
* @deprecated in 3.x. Use [[getTileCacheConfig]] instead.
|
|
61938
|
-
*/
|
|
61939
|
-
async getTileCacheContainerUrl(_tokenProps, _id) {
|
|
61940
|
-
return this.forward(arguments);
|
|
61941
|
-
}
|
|
61942
|
-
/** Returns true if an external tile cache is configured on the backend.
|
|
61943
|
-
* @internal @deprecated in 3.x. Use [[getTileCacheConfig]] instead.
|
|
61944
|
-
*/
|
|
61945
|
-
async isUsingExternalTileCache() {
|
|
61946
|
-
return this.forward(arguments);
|
|
61947
|
-
}
|
|
61948
61721
|
/** @internal */
|
|
61949
61722
|
async requestTileTreeProps(_tokenProps, _id) { return this.forward(arguments); }
|
|
61950
61723
|
/** Ask the backend to generate content for the specified tile. This function, unlike the deprecated `requestTileContent`, does not check the cloud storage tile cache -
|
|
@@ -61985,10 +61758,6 @@ class IModelTileRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
61985
61758
|
IModelTileRpcInterface.interfaceName = "IModelTileRpcInterface";
|
|
61986
61759
|
/** The semantic version of the interface. */
|
|
61987
61760
|
IModelTileRpcInterface.interfaceVersion = "3.2.0";
|
|
61988
|
-
__decorate([
|
|
61989
|
-
_core_RpcOperation__WEBPACK_IMPORTED_MODULE_1__.RpcOperation.allowResponseCaching(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable) // eslint-disable-line deprecation/deprecation
|
|
61990
|
-
// eslint-disable-next-line deprecation/deprecation
|
|
61991
|
-
], IModelTileRpcInterface.prototype, "getTileCacheContainerUrl", null);
|
|
61992
61761
|
__decorate([
|
|
61993
61762
|
_core_RpcOperation__WEBPACK_IMPORTED_MODULE_1__.RpcOperation.allowResponseCaching(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable) // eslint-disable-line deprecation/deprecation
|
|
61994
61763
|
], IModelTileRpcInterface.prototype, "requestTileTreeProps", null);
|
|
@@ -62205,7 +61974,7 @@ var RpcRoutingMap;
|
|
|
62205
61974
|
})(RpcRoutingMap || (RpcRoutingMap = {}));
|
|
62206
61975
|
/** A RpcConfiguration specifies how calls on an RPC interface will be marshalled, plus other operating parameters.
|
|
62207
61976
|
* RpcConfiguration is the base class for specific configurations.
|
|
62208
|
-
* @
|
|
61977
|
+
* @beta
|
|
62209
61978
|
*/
|
|
62210
61979
|
class RpcConfiguration {
|
|
62211
61980
|
constructor() {
|
|
@@ -62224,7 +61993,7 @@ class RpcConfiguration {
|
|
|
62224
61993
|
*/
|
|
62225
61994
|
this.controlChannel = _RpcControl__WEBPACK_IMPORTED_MODULE_1__.RpcControlChannel.obtain(this);
|
|
62226
61995
|
}
|
|
62227
|
-
/** Sets the configuration supplier for an RPC interface class. */
|
|
61996
|
+
/** @internal Sets the configuration supplier for an RPC interface class. */
|
|
62228
61997
|
static assign(definition, supplier) {
|
|
62229
61998
|
const map = definition.prototype.configurationSupplier;
|
|
62230
61999
|
if (!map || typeof (map.configurations) === "undefined") {
|
|
@@ -62313,7 +62082,7 @@ RpcConfiguration.strictMode = false;
|
|
|
62313
62082
|
* @note The parameter token is always replaced by the url token (unless RpcOperationPolicy.allowTokenMismatch is set).
|
|
62314
62083
|
*/
|
|
62315
62084
|
RpcConfiguration.throwOnTokenMismatch = false;
|
|
62316
|
-
/** Enables passing of application-specific context with each RPC request. */
|
|
62085
|
+
/** @internal Enables passing of application-specific context with each RPC request. */
|
|
62317
62086
|
RpcConfiguration.requestContext = {
|
|
62318
62087
|
getId: (_request) => "",
|
|
62319
62088
|
serialize: async (request) => ({
|
|
@@ -64421,7 +64190,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
64421
64190
|
* @module RpcInterface
|
|
64422
64191
|
*/
|
|
64423
64192
|
/* eslint-disable deprecation/deprecation */
|
|
64424
|
-
/** @
|
|
64193
|
+
/** @beta */
|
|
64425
64194
|
class RpcRoutingToken {
|
|
64426
64195
|
static generate(debugLabel = "") {
|
|
64427
64196
|
return new RpcRoutingToken(++this._next, debugLabel);
|
|
@@ -64547,7 +64316,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
64547
64316
|
|
|
64548
64317
|
|
|
64549
64318
|
/** Operating parameters for Bentley cloud RPC interface deployments.
|
|
64550
|
-
* @
|
|
64319
|
+
* @beta
|
|
64551
64320
|
*/
|
|
64552
64321
|
class BentleyCloudRpcConfiguration extends _core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_1__.RpcConfiguration {
|
|
64553
64322
|
}
|
|
@@ -64559,14 +64328,14 @@ BentleyCloudRpcConfiguration.accessControl = {
|
|
|
64559
64328
|
};
|
|
64560
64329
|
|
|
64561
64330
|
/** Coordinates usage of RPC interfaces for Bentley cloud deployments.
|
|
64562
|
-
* @
|
|
64331
|
+
* @beta
|
|
64563
64332
|
*/
|
|
64564
64333
|
class BentleyCloudRpcManager extends _RpcManager__WEBPACK_IMPORTED_MODULE_0__.RpcManager {
|
|
64565
|
-
/** Initializes BentleyCloudRpcManager for the frontend of an application. */
|
|
64334
|
+
/** @beta Initializes BentleyCloudRpcManager for the frontend of an application. */
|
|
64566
64335
|
static initializeClient(params, interfaces, routing = _core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_5__.RpcRoutingToken["default"]) {
|
|
64567
64336
|
return BentleyCloudRpcManager.performInitialization(params, interfaces, routing);
|
|
64568
64337
|
}
|
|
64569
|
-
/** Initializes BentleyCloudRpcManager for the backend of an application. */
|
|
64338
|
+
/** @beta Initializes BentleyCloudRpcManager for the backend of an application. */
|
|
64570
64339
|
static initializeImpl(params, interfaces) {
|
|
64571
64340
|
return BentleyCloudRpcManager.performInitialization(params, interfaces);
|
|
64572
64341
|
}
|
|
@@ -64590,6 +64359,9 @@ class BentleyCloudRpcManager extends _RpcManager__WEBPACK_IMPORTED_MODULE_0__.Rp
|
|
|
64590
64359
|
_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_1__.RpcConfiguration.assignWithRouting(def, routing, config);
|
|
64591
64360
|
}
|
|
64592
64361
|
const instance = _core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_1__.RpcConfiguration.obtain(config);
|
|
64362
|
+
if (params.pathPrefix) {
|
|
64363
|
+
instance.protocol.pathPrefix = params.pathPrefix;
|
|
64364
|
+
}
|
|
64593
64365
|
_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_1__.RpcConfiguration.initializeInterfaces(instance);
|
|
64594
64366
|
if (params.pendingRequestListener) {
|
|
64595
64367
|
const listener = params.pendingRequestListener;
|
|
@@ -88508,7 +88280,7 @@ class SnapshotConnection extends IModelConnection {
|
|
|
88508
88280
|
* @param modelIds the Id or Ids of the [GeometricModel]($backend)s for which to query the ranges.
|
|
88509
88281
|
* @returns An array containing the range of each model of each unique model Id, omitting the range for any Id which did no identify a GeometricModel.
|
|
88510
88282
|
* @note The contents of the returned array do not follow a deterministic order.
|
|
88511
|
-
* @throws [IModelError]($common) if exactly one model Id is specified and that Id does not identify a
|
|
88283
|
+
* @throws [IModelError]($common) if exactly one model Id is specified and that Id does not identify a GeometricModel.
|
|
88512
88284
|
* @see [[queryExtents]] for a similar function that does not throw and produces a deterministically-ordered result.
|
|
88513
88285
|
*/
|
|
88514
88286
|
async queryModelRanges(modelIds) {
|
|
@@ -173750,6 +173522,19 @@ class Geometry {
|
|
|
173750
173522
|
return outPositive;
|
|
173751
173523
|
return outZero;
|
|
173752
173524
|
}
|
|
173525
|
+
/**
|
|
173526
|
+
* Examine the value (particularly sign) of x.
|
|
173527
|
+
* * If x is negative, return -1
|
|
173528
|
+
* * If x is true zero, return 0
|
|
173529
|
+
* * If x is positive, return 1
|
|
173530
|
+
*/
|
|
173531
|
+
static split3Way01(x, tolerance = Geometry.smallMetricDistance) {
|
|
173532
|
+
if (x > tolerance)
|
|
173533
|
+
return 1;
|
|
173534
|
+
if (x < -tolerance)
|
|
173535
|
+
return -1;
|
|
173536
|
+
return 0;
|
|
173537
|
+
}
|
|
173753
173538
|
/** Return the largest signed value among a, b */
|
|
173754
173539
|
static maxXY(a, b) {
|
|
173755
173540
|
let q = a;
|
|
@@ -180722,18 +180507,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
180722
180507
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
180723
180508
|
/* harmony export */ "ClipPlane": () => (/* binding */ ClipPlane)
|
|
180724
180509
|
/* harmony export */ });
|
|
180725
|
-
/* harmony import */ var
|
|
180726
|
-
/* harmony import */ var
|
|
180727
|
-
/* harmony import */ var
|
|
180728
|
-
/* harmony import */ var
|
|
180729
|
-
/* harmony import */ var
|
|
180730
|
-
/* harmony import */ var
|
|
180731
|
-
/* harmony import */ var
|
|
180732
|
-
/* harmony import */ var
|
|
180733
|
-
/* harmony import */ var
|
|
180734
|
-
/* harmony import */ var
|
|
180735
|
-
/* harmony import */ var
|
|
180736
|
-
/* harmony import */ var
|
|
180510
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
180511
|
+
/* harmony import */ var _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../geometry3d/GrowableFloat64Array */ "../../core/geometry/lib/esm/geometry3d/GrowableFloat64Array.js");
|
|
180512
|
+
/* harmony import */ var _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../geometry3d/GrowableXYZArray */ "../../core/geometry/lib/esm/geometry3d/GrowableXYZArray.js");
|
|
180513
|
+
/* harmony import */ var _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../geometry3d/Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
|
|
180514
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../geometry3d/Plane3dByOriginAndUnitNormal */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndUnitNormal.js");
|
|
180515
|
+
/* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
180516
|
+
/* harmony import */ var _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../geometry3d/PolygonOps */ "../../core/geometry/lib/esm/geometry3d/PolygonOps.js");
|
|
180517
|
+
/* harmony import */ var _geometry3d_Range__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../geometry3d/Range */ "../../core/geometry/lib/esm/geometry3d/Range.js");
|
|
180518
|
+
/* harmony import */ var _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../geometry3d/Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
180519
|
+
/* harmony import */ var _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../geometry4d/Point4d */ "../../core/geometry/lib/esm/geometry4d/Point4d.js");
|
|
180520
|
+
/* harmony import */ var _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../numerics/Polynomials */ "../../core/geometry/lib/esm/numerics/Polynomials.js");
|
|
180521
|
+
/* harmony import */ var _ClipUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./ClipUtils */ "../../core/geometry/lib/esm/clipping/ClipUtils.js");
|
|
180522
|
+
/* harmony import */ var _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../geometry3d/Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
180737
180523
|
/*---------------------------------------------------------------------------------------------
|
|
180738
180524
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
180739
180525
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -180750,6 +180536,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
180750
180536
|
|
|
180751
180537
|
|
|
180752
180538
|
|
|
180539
|
+
|
|
180753
180540
|
/** A ClipPlane is a single plane represented as
|
|
180754
180541
|
* * An inward unit normal (u,v,w)
|
|
180755
180542
|
* * A signedDistance
|
|
@@ -180763,8 +180550,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
180763
180550
|
* * Given a point and inward normal, the signedDistance is (point DOT normal)
|
|
180764
180551
|
* @public
|
|
180765
180552
|
*/
|
|
180766
|
-
class ClipPlane {
|
|
180553
|
+
class ClipPlane extends _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
|
|
180767
180554
|
constructor(normal, distance, invisible, interior) {
|
|
180555
|
+
super();
|
|
180768
180556
|
this._invisible = invisible;
|
|
180769
180557
|
this._interior = interior;
|
|
180770
180558
|
this._inwardNormal = normal;
|
|
@@ -180781,7 +180569,7 @@ class ClipPlane {
|
|
|
180781
180569
|
* @param other clip plane to compare
|
|
180782
180570
|
*/
|
|
180783
180571
|
isAlmostEqual(other) {
|
|
180784
|
-
return
|
|
180572
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this._distanceFromOrigin, other._distanceFromOrigin)
|
|
180785
180573
|
&& this._inwardNormal.isAlmostEqual(other._inwardNormal)
|
|
180786
180574
|
&& this._interior === other._interior
|
|
180787
180575
|
&& this._invisible === other._invisible;
|
|
@@ -180845,6 +180633,18 @@ class ClipPlane {
|
|
|
180845
180633
|
}
|
|
180846
180634
|
return undefined;
|
|
180847
180635
|
}
|
|
180636
|
+
/** Create a clip plane
|
|
180637
|
+
* @param origin any point on the plane.
|
|
180638
|
+
* @param vectorA any vector in the plane
|
|
180639
|
+
* @param vectorB any vector in the plane
|
|
180640
|
+
* * returns undefined if the vectors are not independent.
|
|
180641
|
+
* * The stored inward normal is vectorB.crossProduct(vectorA).
|
|
180642
|
+
* * That is, the vectors are considered as a right-handed pair when viewed from the outside.
|
|
180643
|
+
*/
|
|
180644
|
+
static createOriginAndVectors(origin, vectorA, vectorB, invisible = false, interior = false, result) {
|
|
180645
|
+
const normalized = vectorB.crossProduct(vectorA);
|
|
180646
|
+
return this.createNormalAndPoint(normalized, origin, invisible, interior, result);
|
|
180647
|
+
}
|
|
180848
180648
|
/** Create a ClipPlane
|
|
180849
180649
|
* * "normal" (normalX, normalY, nz) is the inward normal of the plane.
|
|
180850
180650
|
* * The given (normalX,normalY,normalZ)
|
|
@@ -180852,8 +180652,8 @@ class ClipPlane {
|
|
|
180852
180652
|
* * The stored distance for the plane is the dot product of the point with the normal (i.e. treat the point's xyz as a vector from the origin.)
|
|
180853
180653
|
*/
|
|
180854
180654
|
static createNormalAndPointXYZXYZ(normalX, normalY, normalZ, originX, originY, originZ, invisible = false, interior = false, result) {
|
|
180855
|
-
const q =
|
|
180856
|
-
const r =
|
|
180655
|
+
const q = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseXYZ(normalX, normalY, normalZ);
|
|
180656
|
+
const r = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideFraction(1, q);
|
|
180857
180657
|
if (r !== undefined) {
|
|
180858
180658
|
if (result) {
|
|
180859
180659
|
result._inwardNormal.set(normalX * r, normalY * r, normalZ * r);
|
|
@@ -180862,7 +180662,7 @@ class ClipPlane {
|
|
|
180862
180662
|
result._interior = interior;
|
|
180863
180663
|
return result;
|
|
180864
180664
|
}
|
|
180865
|
-
const normal =
|
|
180665
|
+
const normal = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(normalX * r, normalY * r, normalZ * r);
|
|
180866
180666
|
return new ClipPlane(normal, normal.dotProductXYZ(originX, originY, originZ), invisible, interior);
|
|
180867
180667
|
}
|
|
180868
180668
|
return undefined;
|
|
@@ -180885,8 +180685,8 @@ class ClipPlane {
|
|
|
180885
180685
|
/** parse json object to ClipPlane instance */
|
|
180886
180686
|
static fromJSON(json, result) {
|
|
180887
180687
|
if (json && json.normal && undefined !== json.dist && Number.isFinite(json.dist))
|
|
180888
|
-
return ClipPlane.createNormalAndDistance(
|
|
180889
|
-
return ClipPlane.createNormalAndDistance(
|
|
180688
|
+
return ClipPlane.createNormalAndDistance(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.fromJSON(json.normal), json.dist, !!json.invisible, !!json.interior);
|
|
180689
|
+
return ClipPlane.createNormalAndDistance(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.unitZ(), 0, false, false, result);
|
|
180890
180690
|
}
|
|
180891
180691
|
/** Set both the invisible and interior flags. */
|
|
180892
180692
|
setFlags(invisible, interior) {
|
|
@@ -180918,11 +180718,11 @@ class ClipPlane {
|
|
|
180918
180718
|
* @param result optional preallocated plane
|
|
180919
180719
|
*/
|
|
180920
180720
|
static createEdgeAndUpVector(point0, point1, upVector, tiltAngle, result) {
|
|
180921
|
-
const edgeVector =
|
|
180721
|
+
const edgeVector = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createFrom(point1.minus(point0));
|
|
180922
180722
|
let normal = (upVector.crossProduct(edgeVector)).normalize();
|
|
180923
180723
|
if (normal) {
|
|
180924
180724
|
if (tiltAngle !== undefined && !tiltAngle.isAlmostZero) {
|
|
180925
|
-
const tiltNormal =
|
|
180725
|
+
const tiltNormal = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createRotateVectorAroundVector(normal, edgeVector, tiltAngle);
|
|
180926
180726
|
if (tiltNormal) {
|
|
180927
180727
|
normal = tiltNormal.clone();
|
|
180928
180728
|
}
|
|
@@ -180936,7 +180736,7 @@ class ClipPlane {
|
|
|
180936
180736
|
* Create a plane perpendicular to the edge between the xy parts of point0 and point1
|
|
180937
180737
|
*/
|
|
180938
180738
|
static createEdgeXY(point0, point1, result) {
|
|
180939
|
-
const normal =
|
|
180739
|
+
const normal = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(point0.y - point1.y, point1.x - point0.x);
|
|
180940
180740
|
if (normal.normalizeInPlace())
|
|
180941
180741
|
return ClipPlane.createNormalAndPoint(normal, point0, false, false, result);
|
|
180942
180742
|
return undefined;
|
|
@@ -180949,7 +180749,7 @@ class ClipPlane {
|
|
|
180949
180749
|
getPlane3d() {
|
|
180950
180750
|
const d = this._distanceFromOrigin;
|
|
180951
180751
|
// Normal should be normalized, will not return undefined
|
|
180952
|
-
return
|
|
180752
|
+
return _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_3__.Plane3dByOriginAndUnitNormal.create(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this._inwardNormal.x * d, this._inwardNormal.y * d, this._inwardNormal.z * d), this._inwardNormal);
|
|
180953
180753
|
}
|
|
180954
180754
|
/**
|
|
180955
180755
|
* Return the Point4d d form of the plane.
|
|
@@ -180957,7 +180757,7 @@ class ClipPlane {
|
|
|
180957
180757
|
* * The homogeneous weight is the negated ClipPlane distance.
|
|
180958
180758
|
*/
|
|
180959
180759
|
getPlane4d() {
|
|
180960
|
-
return
|
|
180760
|
+
return _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_4__.Point4d.create(this._inwardNormal.x, this._inwardNormal.y, this._inwardNormal.z, -this._distanceFromOrigin);
|
|
180961
180761
|
}
|
|
180962
180762
|
/**
|
|
180963
180763
|
* Set the plane from DPoint4d style plane.
|
|
@@ -181026,7 +180826,7 @@ class ClipPlane {
|
|
|
181026
180826
|
* @param spacePoint point to test.
|
|
181027
180827
|
* @param tolerance tolerance for considering "near plane" to be "on plane"
|
|
181028
180828
|
*/
|
|
181029
|
-
isPointOnOrInside(spacePoint, tolerance =
|
|
180829
|
+
isPointOnOrInside(spacePoint, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance) {
|
|
181030
180830
|
let value = this.altitude(spacePoint);
|
|
181031
180831
|
if (tolerance) {
|
|
181032
180832
|
value += tolerance;
|
|
@@ -181038,7 +180838,7 @@ class ClipPlane {
|
|
|
181038
180838
|
* @param spacePoint point to test.
|
|
181039
180839
|
* @param tolerance tolerance for considering "near plane" to be "on plane"
|
|
181040
180840
|
*/
|
|
181041
|
-
isPointInside(point, tolerance =
|
|
180841
|
+
isPointInside(point, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance) {
|
|
181042
180842
|
let value = this.altitude(point);
|
|
181043
180843
|
if (tolerance) {
|
|
181044
180844
|
value -= tolerance;
|
|
@@ -181050,7 +180850,7 @@ class ClipPlane {
|
|
|
181050
180850
|
* @param spacePoint point to test.
|
|
181051
180851
|
* @param tolerance tolerance for considering "near plane" to be "on plane"
|
|
181052
180852
|
*/
|
|
181053
|
-
isPointOn(point, tolerance =
|
|
180853
|
+
isPointOn(point, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance) {
|
|
181054
180854
|
return Math.abs(this.altitude(point)) <= tolerance;
|
|
181055
180855
|
}
|
|
181056
180856
|
/**
|
|
@@ -181063,7 +180863,7 @@ class ClipPlane {
|
|
|
181063
180863
|
const alpha = this.altitude(arc.center);
|
|
181064
180864
|
const beta = this.velocity(arcVectors.vector0);
|
|
181065
180865
|
const gamma = this.velocity(arcVectors.vector90);
|
|
181066
|
-
|
|
180866
|
+
_numerics_Polynomials__WEBPACK_IMPORTED_MODULE_5__.AnalyticRoots.appendImplicitLineUnitCircleIntersections(alpha, beta, gamma, undefined, undefined, intersectionRadians);
|
|
181067
180867
|
}
|
|
181068
180868
|
/** Announce fractional intervals of arc clip.
|
|
181069
180869
|
* * Each call to `announce(fraction0, fraction1, arc)` announces one interval that is inside the clip plane.
|
|
@@ -181073,7 +180873,7 @@ class ClipPlane {
|
|
|
181073
180873
|
breaks.clear();
|
|
181074
180874
|
this.appendIntersectionRadians(arc, breaks);
|
|
181075
180875
|
arc.sweep.radiansArrayToPositivePeriodicFractions(breaks);
|
|
181076
|
-
return
|
|
180876
|
+
return _ClipUtils__WEBPACK_IMPORTED_MODULE_6__.ClipUtilities.selectIntervals01(arc, breaks, this, announce);
|
|
181077
180877
|
}
|
|
181078
180878
|
/**
|
|
181079
180879
|
* * Compute intersection of (unbounded) segment with the plane.
|
|
@@ -181133,8 +180933,8 @@ class ClipPlane {
|
|
|
181133
180933
|
* @param work work buffer
|
|
181134
180934
|
* @param tolerance tolerance for "on plane" decision.
|
|
181135
180935
|
*/
|
|
181136
|
-
clipConvexPolygonInPlace(xyz, work, inside = true, tolerance =
|
|
181137
|
-
return
|
|
180936
|
+
clipConvexPolygonInPlace(xyz, work, inside = true, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance) {
|
|
180937
|
+
return _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_7__.IndexedXYZCollectionPolygonOps.clipConvexPolygonInPlace(this, xyz, work, inside, tolerance);
|
|
181138
180938
|
}
|
|
181139
180939
|
/**
|
|
181140
180940
|
* Multiply the ClipPlane's DPoint4d by matrix.
|
|
@@ -181169,7 +180969,7 @@ class ClipPlane {
|
|
|
181169
180969
|
const h0 = -this.altitude(pointA);
|
|
181170
180970
|
const h1 = -this.altitude(pointB);
|
|
181171
180971
|
const delta = h1 - h0;
|
|
181172
|
-
const f =
|
|
180972
|
+
const f = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideFraction(-h0, delta);
|
|
181173
180973
|
if (f === undefined) { // The segment is parallel to the plane.
|
|
181174
180974
|
if (h0 <= 0.0) {
|
|
181175
180975
|
if (announce)
|
|
@@ -181201,9 +181001,9 @@ class ClipPlane {
|
|
|
181201
181001
|
*/
|
|
181202
181002
|
getFrame() {
|
|
181203
181003
|
const d = this._distanceFromOrigin;
|
|
181204
|
-
const origin =
|
|
181205
|
-
const matrix =
|
|
181206
|
-
return
|
|
181004
|
+
const origin = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this._inwardNormal.x * d, this._inwardNormal.y * d, this._inwardNormal.z * d);
|
|
181005
|
+
const matrix = _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_8__.Matrix3d.createRigidHeadsUp(this._inwardNormal, _Geometry__WEBPACK_IMPORTED_MODULE_1__.AxisOrder.ZXY);
|
|
181006
|
+
return _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__.Transform.createOriginAndMatrix(origin, matrix);
|
|
181207
181007
|
}
|
|
181208
181008
|
/**
|
|
181209
181009
|
* Return the intersection of the plane with a range cube.
|
|
@@ -181216,17 +181016,17 @@ class ClipPlane {
|
|
|
181216
181016
|
const corners = range.corners();
|
|
181217
181017
|
const frameOnPlane = this.getFrame();
|
|
181218
181018
|
frameOnPlane.multiplyInversePoint3dArrayInPlace(corners);
|
|
181219
|
-
const localRange =
|
|
181019
|
+
const localRange = _geometry3d_Range__WEBPACK_IMPORTED_MODULE_10__.Range3d.createArray(corners);
|
|
181220
181020
|
if (localRange.low.z * localRange.high.z > 0.0)
|
|
181221
181021
|
return undefined;
|
|
181222
181022
|
// oversized polygon on local z= 0
|
|
181223
|
-
const xyzOut = new
|
|
181023
|
+
const xyzOut = new _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_11__.GrowableXYZArray();
|
|
181224
181024
|
xyzOut.pushXYZ(localRange.low.x, localRange.low.y, 0);
|
|
181225
181025
|
xyzOut.pushXYZ(localRange.high.x, localRange.low.y, 0);
|
|
181226
181026
|
xyzOut.pushXYZ(localRange.high.x, localRange.high.y, 0);
|
|
181227
181027
|
xyzOut.pushXYZ(localRange.low.x, localRange.high.y, 0);
|
|
181228
181028
|
xyzOut.multiplyTransformInPlace(frameOnPlane);
|
|
181229
|
-
|
|
181029
|
+
_geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_7__.IndexedXYZCollectionPolygonOps.intersectRangeConvexPolygonInPlace(range, xyzOut);
|
|
181230
181030
|
if (xyzOut.length === 0)
|
|
181231
181031
|
return undefined;
|
|
181232
181032
|
if (addClosurePoint)
|
|
@@ -181241,15 +181041,22 @@ class ClipPlane {
|
|
|
181241
181041
|
* @param arrayCache cache for reusable GrowableXYZArray.
|
|
181242
181042
|
*/
|
|
181243
181043
|
appendPolygonClip(xyz, insideFragments, outsideFragments, arrayCache) {
|
|
181244
|
-
const perpendicularRange =
|
|
181044
|
+
const perpendicularRange = _geometry3d_Range__WEBPACK_IMPORTED_MODULE_10__.Range1d.createNull();
|
|
181245
181045
|
const newInside = arrayCache.grabFromCache();
|
|
181246
181046
|
const newOutside = arrayCache.grabFromCache();
|
|
181247
|
-
|
|
181248
|
-
|
|
181249
|
-
|
|
181047
|
+
_geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_7__.IndexedXYZCollectionPolygonOps.splitConvexPolygonInsideOutsidePlane(this, xyz, newInside, newOutside, perpendicularRange);
|
|
181048
|
+
_ClipUtils__WEBPACK_IMPORTED_MODULE_6__.ClipUtilities.captureOrDrop(newInside, 3, insideFragments, arrayCache);
|
|
181049
|
+
_ClipUtils__WEBPACK_IMPORTED_MODULE_6__.ClipUtilities.captureOrDrop(newOutside, 3, outsideFragments, arrayCache);
|
|
181050
|
+
}
|
|
181051
|
+
/**
|
|
181052
|
+
* Project a point in space to the plane.
|
|
181053
|
+
*/
|
|
181054
|
+
projectPointToPlane(spacePoint, result) {
|
|
181055
|
+
const d = -this.altitude(spacePoint);
|
|
181056
|
+
return spacePoint.plusXYZ(d * this._inwardNormal.x, d * this._inwardNormal.y, d * this._inwardNormal.z, result);
|
|
181250
181057
|
}
|
|
181251
181058
|
}
|
|
181252
|
-
ClipPlane._clipArcFractionArray = new
|
|
181059
|
+
ClipPlane._clipArcFractionArray = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_12__.GrowableFloat64Array();
|
|
181253
181060
|
|
|
181254
181061
|
|
|
181255
181062
|
|
|
@@ -184561,235 +184368,236 @@ class LineStringOffsetClipperContext {
|
|
|
184561
184368
|
"use strict";
|
|
184562
184369
|
__webpack_require__.r(__webpack_exports__);
|
|
184563
184370
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
184564
|
-
/* harmony export */ "AbstractNewtonIterator": () => (/* reexport safe */
|
|
184565
|
-
/* harmony export */ "AkimaCurve3d": () => (/* reexport safe */
|
|
184566
|
-
/* harmony export */ "AkimaCurve3dOptions": () => (/* reexport safe */
|
|
184567
|
-
/* harmony export */ "AnalyticRoots": () => (/* reexport safe */
|
|
184371
|
+
/* harmony export */ "AbstractNewtonIterator": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.AbstractNewtonIterator),
|
|
184372
|
+
/* harmony export */ "AkimaCurve3d": () => (/* reexport safe */ _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__.AkimaCurve3d),
|
|
184373
|
+
/* harmony export */ "AkimaCurve3dOptions": () => (/* reexport safe */ _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__.AkimaCurve3dOptions),
|
|
184374
|
+
/* harmony export */ "AnalyticRoots": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.AnalyticRoots),
|
|
184568
184375
|
/* harmony export */ "Angle": () => (/* reexport safe */ _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_0__.Angle),
|
|
184569
184376
|
/* harmony export */ "AngleSweep": () => (/* reexport safe */ _geometry3d_AngleSweep__WEBPACK_IMPORTED_MODULE_1__.AngleSweep),
|
|
184570
|
-
/* harmony export */ "AnnotatedLineString3d": () => (/* reexport safe */
|
|
184571
|
-
/* harmony export */ "Arc3d": () => (/* reexport safe */
|
|
184572
|
-
/* harmony export */ "AuxChannel": () => (/* reexport safe */
|
|
184573
|
-
/* harmony export */ "AuxChannelData": () => (/* reexport safe */
|
|
184574
|
-
/* harmony export */ "AuxChannelDataType": () => (/* reexport safe */
|
|
184575
|
-
/* harmony export */ "AxisIndex": () => (/* reexport safe */
|
|
184576
|
-
/* harmony export */ "AxisOrder": () => (/* reexport safe */
|
|
184577
|
-
/* harmony export */ "AxisScaleSelect": () => (/* reexport safe */
|
|
184578
|
-
/* harmony export */ "BSpline1dNd": () => (/* reexport safe */
|
|
184579
|
-
/* harmony export */ "BSpline2dNd": () => (/* reexport safe */
|
|
184580
|
-
/* harmony export */ "BSplineCurve3d": () => (/* reexport safe */
|
|
184581
|
-
/* harmony export */ "BSplineCurve3dBase": () => (/* reexport safe */
|
|
184582
|
-
/* harmony export */ "BSplineCurve3dH": () => (/* reexport safe */
|
|
184583
|
-
/* harmony export */ "BSplineCurveOps": () => (/* reexport safe */
|
|
184584
|
-
/* harmony export */ "BSplineSurface3d": () => (/* reexport safe */
|
|
184585
|
-
/* harmony export */ "BSplineSurface3dH": () => (/* reexport safe */
|
|
184586
|
-
/* harmony export */ "BSplineWrapMode": () => (/* reexport safe */
|
|
184587
|
-
/* harmony export */ "BagOfCurves": () => (/* reexport safe */
|
|
184377
|
+
/* harmony export */ "AnnotatedLineString3d": () => (/* reexport safe */ _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__.AnnotatedLineString3d),
|
|
184378
|
+
/* harmony export */ "Arc3d": () => (/* reexport safe */ _curve_Arc3d__WEBPACK_IMPORTED_MODULE_59__.Arc3d),
|
|
184379
|
+
/* harmony export */ "AuxChannel": () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannel),
|
|
184380
|
+
/* harmony export */ "AuxChannelData": () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannelData),
|
|
184381
|
+
/* harmony export */ "AuxChannelDataType": () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannelDataType),
|
|
184382
|
+
/* harmony export */ "AxisIndex": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.AxisIndex),
|
|
184383
|
+
/* harmony export */ "AxisOrder": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.AxisOrder),
|
|
184384
|
+
/* harmony export */ "AxisScaleSelect": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.AxisScaleSelect),
|
|
184385
|
+
/* harmony export */ "BSpline1dNd": () => (/* reexport safe */ _bspline_BSpline1dNd__WEBPACK_IMPORTED_MODULE_105__.BSpline1dNd),
|
|
184386
|
+
/* harmony export */ "BSpline2dNd": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSpline2dNd),
|
|
184387
|
+
/* harmony export */ "BSplineCurve3d": () => (/* reexport safe */ _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__.BSplineCurve3d),
|
|
184388
|
+
/* harmony export */ "BSplineCurve3dBase": () => (/* reexport safe */ _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__.BSplineCurve3dBase),
|
|
184389
|
+
/* harmony export */ "BSplineCurve3dH": () => (/* reexport safe */ _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_106__.BSplineCurve3dH),
|
|
184390
|
+
/* harmony export */ "BSplineCurveOps": () => (/* reexport safe */ _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_104__.BSplineCurveOps),
|
|
184391
|
+
/* harmony export */ "BSplineSurface3d": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSplineSurface3d),
|
|
184392
|
+
/* harmony export */ "BSplineSurface3dH": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSplineSurface3dH),
|
|
184393
|
+
/* harmony export */ "BSplineWrapMode": () => (/* reexport safe */ _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__.BSplineWrapMode),
|
|
184394
|
+
/* harmony export */ "BagOfCurves": () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__.BagOfCurves),
|
|
184588
184395
|
/* harmony export */ "BarycentricTriangle": () => (/* reexport safe */ _geometry3d_BarycentricTriangle__WEBPACK_IMPORTED_MODULE_3__.BarycentricTriangle),
|
|
184589
|
-
/* harmony export */ "BentleyGeometryFlatBuffer": () => (/* reexport safe */
|
|
184590
|
-
/* harmony export */ "Bezier1dNd": () => (/* reexport safe */
|
|
184591
|
-
/* harmony export */ "BezierBezierIntersectionXYRRToRRD": () => (/* reexport safe */
|
|
184592
|
-
/* harmony export */ "BezierCoffs": () => (/* reexport safe */
|
|
184593
|
-
/* harmony export */ "BezierCurve3d": () => (/* reexport safe */
|
|
184594
|
-
/* harmony export */ "BezierCurve3dH": () => (/* reexport safe */
|
|
184595
|
-
/* harmony export */ "BezierCurveBase": () => (/* reexport safe */
|
|
184596
|
-
/* harmony export */ "BezierPolynomialAlgebra": () => (/* reexport safe */
|
|
184396
|
+
/* harmony export */ "BentleyGeometryFlatBuffer": () => (/* reexport safe */ _serialization_BentleyGeometryFlatBuffer__WEBPACK_IMPORTED_MODULE_126__.BentleyGeometryFlatBuffer),
|
|
184397
|
+
/* harmony export */ "Bezier1dNd": () => (/* reexport safe */ _bspline_Bezier1dNd__WEBPACK_IMPORTED_MODULE_99__.Bezier1dNd),
|
|
184398
|
+
/* harmony export */ "BezierBezierIntersectionXYRRToRRD": () => (/* reexport safe */ _curve_CurveCurveIntersectXY__WEBPACK_IMPORTED_MODULE_66__.BezierBezierIntersectionXYRRToRRD),
|
|
184399
|
+
/* harmony export */ "BezierCoffs": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.BezierCoffs),
|
|
184400
|
+
/* harmony export */ "BezierCurve3d": () => (/* reexport safe */ _bspline_BezierCurve3d__WEBPACK_IMPORTED_MODULE_101__.BezierCurve3d),
|
|
184401
|
+
/* harmony export */ "BezierCurve3dH": () => (/* reexport safe */ _bspline_BezierCurve3dH__WEBPACK_IMPORTED_MODULE_102__.BezierCurve3dH),
|
|
184402
|
+
/* harmony export */ "BezierCurveBase": () => (/* reexport safe */ _bspline_BezierCurveBase__WEBPACK_IMPORTED_MODULE_100__.BezierCurveBase),
|
|
184403
|
+
/* harmony export */ "BezierPolynomialAlgebra": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.BezierPolynomialAlgebra),
|
|
184597
184404
|
/* harmony export */ "BilinearPatch": () => (/* reexport safe */ _geometry3d_BilinearPatch__WEBPACK_IMPORTED_MODULE_4__.BilinearPatch),
|
|
184598
|
-
/* harmony export */ "BilinearPolynomial": () => (/* reexport safe */
|
|
184599
|
-
/* harmony export */ "BooleanClipFactory": () => (/* reexport safe */
|
|
184600
|
-
/* harmony export */ "Box": () => (/* reexport safe */
|
|
184601
|
-
/* harmony export */ "BoxTopology": () => (/* reexport safe */
|
|
184602
|
-
/* harmony export */ "ClipMaskXYZRangePlanes": () => (/* reexport safe */
|
|
184603
|
-
/* harmony export */ "ClipPlane": () => (/* reexport safe */
|
|
184604
|
-
/* harmony export */ "ClipPlaneContainment": () => (/* reexport safe */
|
|
184605
|
-
/* harmony export */ "ClipPrimitive": () => (/* reexport safe */
|
|
184606
|
-
/* harmony export */ "ClipShape": () => (/* reexport safe */
|
|
184607
|
-
/* harmony export */ "ClipStatus": () => (/* reexport safe */
|
|
184608
|
-
/* harmony export */ "ClipStepAction": () => (/* reexport safe */
|
|
184609
|
-
/* harmony export */ "ClipUtilities": () => (/* reexport safe */
|
|
184610
|
-
/* harmony export */ "ClipVector": () => (/* reexport safe */
|
|
184611
|
-
/* harmony export */ "ClippedPolyfaceBuilders": () => (/* reexport safe */
|
|
184612
|
-
/* harmony export */ "ClusterableArray": () => (/* reexport safe */
|
|
184613
|
-
/* harmony export */ "Complex": () => (/* reexport safe */
|
|
184614
|
-
/* harmony export */ "Cone": () => (/* reexport safe */
|
|
184615
|
-
/* harmony export */ "ConsolidateAdjacentCurvePrimitivesOptions": () => (/* reexport safe */
|
|
184616
|
-
/* harmony export */ "Constant": () => (/* reexport safe */
|
|
184617
|
-
/* harmony export */ "ConstructCurveBetweenCurves": () => (/* reexport safe */
|
|
184618
|
-
/* harmony export */ "ConvexClipPlaneSet": () => (/* reexport safe */
|
|
184619
|
-
/* harmony export */ "ConvexPolygon2d": () => (/* reexport safe */
|
|
184620
|
-
/* harmony export */ "CoordinateXYZ": () => (/* reexport safe */
|
|
184621
|
-
/* harmony export */ "CurveChain": () => (/* reexport safe */
|
|
184622
|
-
/* harmony export */ "CurveChainWireOffsetContext": () => (/* reexport safe */
|
|
184623
|
-
/* harmony export */ "CurveChainWithDistanceIndex": () => (/* reexport safe */
|
|
184624
|
-
/* harmony export */ "CurveCollection": () => (/* reexport safe */
|
|
184625
|
-
/* harmony export */ "CurveCurve": () => (/* reexport safe */
|
|
184626
|
-
/* harmony export */ "CurveCurveApproachType": () => (/* reexport safe */
|
|
184627
|
-
/* harmony export */ "CurveCurveIntersectXY": () => (/* reexport safe */
|
|
184628
|
-
/* harmony export */ "CurveCurveIntersectXYZ": () => (/* reexport safe */
|
|
184629
|
-
/* harmony export */ "CurveExtendMode": () => (/* reexport safe */
|
|
184630
|
-
/* harmony export */ "CurveExtendOptions": () => (/* reexport safe */
|
|
184631
|
-
/* harmony export */ "CurveFactory": () => (/* reexport safe */
|
|
184632
|
-
/* harmony export */ "CurveIntervalRole": () => (/* reexport safe */
|
|
184633
|
-
/* harmony export */ "CurveLocationDetail": () => (/* reexport safe */
|
|
184634
|
-
/* harmony export */ "CurveLocationDetailArrayPair": () => (/* reexport safe */
|
|
184635
|
-
/* harmony export */ "CurveLocationDetailPair": () => (/* reexport safe */
|
|
184636
|
-
/* harmony export */ "CurvePrimitive": () => (/* reexport safe */
|
|
184637
|
-
/* harmony export */ "CurveSearchStatus": () => (/* reexport safe */
|
|
184638
|
-
/* harmony export */ "CutLoop": () => (/* reexport safe */
|
|
184639
|
-
/* harmony export */ "CutLoopMergeContext": () => (/* reexport safe */
|
|
184640
|
-
/* harmony export */ "DeepCompare": () => (/* reexport safe */
|
|
184641
|
-
/* harmony export */ "Degree2PowerPolynomial": () => (/* reexport safe */
|
|
184642
|
-
/* harmony export */ "Degree3PowerPolynomial": () => (/* reexport safe */
|
|
184643
|
-
/* harmony export */ "Degree4PowerPolynomial": () => (/* reexport safe */
|
|
184644
|
-
/* harmony export */ "DirectSpiral3d": () => (/* reexport safe */
|
|
184645
|
-
/* harmony export */ "DuplicateFacetClusterSelector": () => (/* reexport safe */
|
|
184405
|
+
/* harmony export */ "BilinearPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.BilinearPolynomial),
|
|
184406
|
+
/* harmony export */ "BooleanClipFactory": () => (/* reexport safe */ _clipping_BooleanClipFactory__WEBPACK_IMPORTED_MODULE_37__.BooleanClipFactory),
|
|
184407
|
+
/* harmony export */ "Box": () => (/* reexport safe */ _solid_Box__WEBPACK_IMPORTED_MODULE_89__.Box),
|
|
184408
|
+
/* harmony export */ "BoxTopology": () => (/* reexport safe */ _polyface_BoxTopology__WEBPACK_IMPORTED_MODULE_111__.BoxTopology),
|
|
184409
|
+
/* harmony export */ "ClipMaskXYZRangePlanes": () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_41__.ClipMaskXYZRangePlanes),
|
|
184410
|
+
/* harmony export */ "ClipPlane": () => (/* reexport safe */ _clipping_ClipPlane__WEBPACK_IMPORTED_MODULE_38__.ClipPlane),
|
|
184411
|
+
/* harmony export */ "ClipPlaneContainment": () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__.ClipPlaneContainment),
|
|
184412
|
+
/* harmony export */ "ClipPrimitive": () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_41__.ClipPrimitive),
|
|
184413
|
+
/* harmony export */ "ClipShape": () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_41__.ClipShape),
|
|
184414
|
+
/* harmony export */ "ClipStatus": () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__.ClipStatus),
|
|
184415
|
+
/* harmony export */ "ClipStepAction": () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__.ClipStepAction),
|
|
184416
|
+
/* harmony export */ "ClipUtilities": () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__.ClipUtilities),
|
|
184417
|
+
/* harmony export */ "ClipVector": () => (/* reexport safe */ _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_42__.ClipVector),
|
|
184418
|
+
/* harmony export */ "ClippedPolyfaceBuilders": () => (/* reexport safe */ _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_118__.ClippedPolyfaceBuilders),
|
|
184419
|
+
/* harmony export */ "ClusterableArray": () => (/* reexport safe */ _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_51__.ClusterableArray),
|
|
184420
|
+
/* harmony export */ "Complex": () => (/* reexport safe */ _numerics_Complex__WEBPACK_IMPORTED_MODULE_53__.Complex),
|
|
184421
|
+
/* harmony export */ "Cone": () => (/* reexport safe */ _solid_Cone__WEBPACK_IMPORTED_MODULE_90__.Cone),
|
|
184422
|
+
/* harmony export */ "ConsolidateAdjacentCurvePrimitivesOptions": () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__.ConsolidateAdjacentCurvePrimitivesOptions),
|
|
184423
|
+
/* harmony export */ "Constant": () => (/* reexport safe */ _Constant__WEBPACK_IMPORTED_MODULE_36__.Constant),
|
|
184424
|
+
/* harmony export */ "ConstructCurveBetweenCurves": () => (/* reexport safe */ _curve_ConstructCurveBetweenCurves__WEBPACK_IMPORTED_MODULE_60__.ConstructCurveBetweenCurves),
|
|
184425
|
+
/* harmony export */ "ConvexClipPlaneSet": () => (/* reexport safe */ _clipping_ConvexClipPlaneSet__WEBPACK_IMPORTED_MODULE_39__.ConvexClipPlaneSet),
|
|
184426
|
+
/* harmony export */ "ConvexPolygon2d": () => (/* reexport safe */ _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_44__.ConvexPolygon2d),
|
|
184427
|
+
/* harmony export */ "CoordinateXYZ": () => (/* reexport safe */ _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_61__.CoordinateXYZ),
|
|
184428
|
+
/* harmony export */ "CurveChain": () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__.CurveChain),
|
|
184429
|
+
/* harmony export */ "CurveChainWireOffsetContext": () => (/* reexport safe */ _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__.CurveChainWireOffsetContext),
|
|
184430
|
+
/* harmony export */ "CurveChainWithDistanceIndex": () => (/* reexport safe */ _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_62__.CurveChainWithDistanceIndex),
|
|
184431
|
+
/* harmony export */ "CurveCollection": () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__.CurveCollection),
|
|
184432
|
+
/* harmony export */ "CurveCurve": () => (/* reexport safe */ _curve_CurveCurve__WEBPACK_IMPORTED_MODULE_65__.CurveCurve),
|
|
184433
|
+
/* harmony export */ "CurveCurveApproachType": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveCurveApproachType),
|
|
184434
|
+
/* harmony export */ "CurveCurveIntersectXY": () => (/* reexport safe */ _curve_CurveCurveIntersectXY__WEBPACK_IMPORTED_MODULE_66__.CurveCurveIntersectXY),
|
|
184435
|
+
/* harmony export */ "CurveCurveIntersectXYZ": () => (/* reexport safe */ _curve_CurveCurveIntersectXYZ__WEBPACK_IMPORTED_MODULE_67__.CurveCurveIntersectXYZ),
|
|
184436
|
+
/* harmony export */ "CurveExtendMode": () => (/* reexport safe */ _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_63__.CurveExtendMode),
|
|
184437
|
+
/* harmony export */ "CurveExtendOptions": () => (/* reexport safe */ _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_63__.CurveExtendOptions),
|
|
184438
|
+
/* harmony export */ "CurveFactory": () => (/* reexport safe */ _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_69__.CurveFactory),
|
|
184439
|
+
/* harmony export */ "CurveIntervalRole": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveIntervalRole),
|
|
184440
|
+
/* harmony export */ "CurveLocationDetail": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveLocationDetail),
|
|
184441
|
+
/* harmony export */ "CurveLocationDetailArrayPair": () => (/* reexport safe */ _curve_CurveCurveIntersectXY__WEBPACK_IMPORTED_MODULE_66__.CurveLocationDetailArrayPair),
|
|
184442
|
+
/* harmony export */ "CurveLocationDetailPair": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveLocationDetailPair),
|
|
184443
|
+
/* harmony export */ "CurvePrimitive": () => (/* reexport safe */ _curve_CurvePrimitive__WEBPACK_IMPORTED_MODULE_70__.CurvePrimitive),
|
|
184444
|
+
/* harmony export */ "CurveSearchStatus": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveSearchStatus),
|
|
184445
|
+
/* harmony export */ "CutLoop": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.CutLoop),
|
|
184446
|
+
/* harmony export */ "CutLoopMergeContext": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.CutLoopMergeContext),
|
|
184447
|
+
/* harmony export */ "DeepCompare": () => (/* reexport safe */ _serialization_DeepCompare__WEBPACK_IMPORTED_MODULE_124__.DeepCompare),
|
|
184448
|
+
/* harmony export */ "Degree2PowerPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.Degree2PowerPolynomial),
|
|
184449
|
+
/* harmony export */ "Degree3PowerPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.Degree3PowerPolynomial),
|
|
184450
|
+
/* harmony export */ "Degree4PowerPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.Degree4PowerPolynomial),
|
|
184451
|
+
/* harmony export */ "DirectSpiral3d": () => (/* reexport safe */ _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_86__.DirectSpiral3d),
|
|
184452
|
+
/* harmony export */ "DuplicateFacetClusterSelector": () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_117__.DuplicateFacetClusterSelector),
|
|
184646
184453
|
/* harmony export */ "Ellipsoid": () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.Ellipsoid),
|
|
184647
184454
|
/* harmony export */ "EllipsoidPatch": () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.EllipsoidPatch),
|
|
184648
|
-
/* harmony export */ "FacetFaceData": () => (/* reexport safe */
|
|
184455
|
+
/* harmony export */ "FacetFaceData": () => (/* reexport safe */ _polyface_FacetFaceData__WEBPACK_IMPORTED_MODULE_112__.FacetFaceData),
|
|
184649
184456
|
/* harmony export */ "FrameBuilder": () => (/* reexport safe */ _geometry3d_FrameBuilder__WEBPACK_IMPORTED_MODULE_6__.FrameBuilder),
|
|
184650
|
-
/* harmony export */ "GaussMapper": () => (/* reexport safe */
|
|
184457
|
+
/* harmony export */ "GaussMapper": () => (/* reexport safe */ _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__.GaussMapper),
|
|
184651
184458
|
/* harmony export */ "GeodesicPathPoint": () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.GeodesicPathPoint),
|
|
184652
184459
|
/* harmony export */ "GeodesicPathSolver": () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.GeodesicPathSolver),
|
|
184653
|
-
/* harmony export */ "Geometry": () => (/* reexport safe */
|
|
184460
|
+
/* harmony export */ "Geometry": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.Geometry),
|
|
184654
184461
|
/* harmony export */ "GeometryHandler": () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.GeometryHandler),
|
|
184655
|
-
/* harmony export */ "GeometryQuery": () => (/* reexport safe */
|
|
184462
|
+
/* harmony export */ "GeometryQuery": () => (/* reexport safe */ _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_72__.GeometryQuery),
|
|
184656
184463
|
/* harmony export */ "GrowableBlockedArray": () => (/* reexport safe */ _geometry3d_GrowableBlockedArray__WEBPACK_IMPORTED_MODULE_9__.GrowableBlockedArray),
|
|
184657
184464
|
/* harmony export */ "GrowableFloat64Array": () => (/* reexport safe */ _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_10__.GrowableFloat64Array),
|
|
184658
184465
|
/* harmony export */ "GrowableXYArray": () => (/* reexport safe */ _geometry3d_GrowableXYArray__WEBPACK_IMPORTED_MODULE_11__.GrowableXYArray),
|
|
184659
184466
|
/* harmony export */ "GrowableXYZArray": () => (/* reexport safe */ _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_12__.GrowableXYZArray),
|
|
184660
|
-
/* harmony export */ "HalfEdge": () => (/* reexport safe */
|
|
184661
|
-
/* harmony export */ "HalfEdgeGraph": () => (/* reexport safe */
|
|
184662
|
-
/* harmony export */ "HalfEdgeMask": () => (/* reexport safe */
|
|
184663
|
-
/* harmony export */ "IModelJson": () => (/* reexport safe */
|
|
184664
|
-
/* harmony export */ "ImplicitLineXY": () => (/* reexport safe */
|
|
184467
|
+
/* harmony export */ "HalfEdge": () => (/* reexport safe */ _topology_Graph__WEBPACK_IMPORTED_MODULE_120__.HalfEdge),
|
|
184468
|
+
/* harmony export */ "HalfEdgeGraph": () => (/* reexport safe */ _topology_Graph__WEBPACK_IMPORTED_MODULE_120__.HalfEdgeGraph),
|
|
184469
|
+
/* harmony export */ "HalfEdgeMask": () => (/* reexport safe */ _topology_Graph__WEBPACK_IMPORTED_MODULE_120__.HalfEdgeMask),
|
|
184470
|
+
/* harmony export */ "IModelJson": () => (/* reexport safe */ _serialization_IModelJsonSchema__WEBPACK_IMPORTED_MODULE_123__.IModelJson),
|
|
184471
|
+
/* harmony export */ "ImplicitLineXY": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.ImplicitLineXY),
|
|
184665
184472
|
/* harmony export */ "IndexedCollectionInterval": () => (/* reexport safe */ _geometry3d_IndexedCollectionInterval__WEBPACK_IMPORTED_MODULE_13__.IndexedCollectionInterval),
|
|
184666
|
-
/* harmony export */ "IndexedPolyface": () => (/* reexport safe */
|
|
184667
|
-
/* harmony export */ "IndexedPolyfaceSubsetVisitor": () => (/* reexport safe */
|
|
184668
|
-
/* harmony export */ "IndexedPolyfaceVisitor": () => (/* reexport safe */
|
|
184473
|
+
/* harmony export */ "IndexedPolyface": () => (/* reexport safe */ _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__.IndexedPolyface),
|
|
184474
|
+
/* harmony export */ "IndexedPolyfaceSubsetVisitor": () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_114__.IndexedPolyfaceSubsetVisitor),
|
|
184475
|
+
/* harmony export */ "IndexedPolyfaceVisitor": () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_114__.IndexedPolyfaceVisitor),
|
|
184669
184476
|
/* harmony export */ "IndexedReadWriteXYZCollection": () => (/* reexport safe */ _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__.IndexedReadWriteXYZCollection),
|
|
184670
184477
|
/* harmony export */ "IndexedXYCollection": () => (/* reexport safe */ _geometry3d_IndexedXYCollection__WEBPACK_IMPORTED_MODULE_14__.IndexedXYCollection),
|
|
184671
184478
|
/* harmony export */ "IndexedXYZCollection": () => (/* reexport safe */ _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__.IndexedXYZCollection),
|
|
184672
184479
|
/* harmony export */ "IndexedXYZCollectionInterval": () => (/* reexport safe */ _geometry3d_IndexedCollectionInterval__WEBPACK_IMPORTED_MODULE_13__.IndexedXYZCollectionInterval),
|
|
184673
|
-
/* harmony export */ "IndexedXYZCollectionPolygonOps": () => (/* reexport safe */
|
|
184674
|
-
/* harmony export */ "IntegratedSpiral3d": () => (/* reexport safe */
|
|
184675
|
-
/* harmony export */ "InterpolationCurve3d": () => (/* reexport safe */
|
|
184676
|
-
/* harmony export */ "InterpolationCurve3dOptions": () => (/* reexport safe */
|
|
184480
|
+
/* harmony export */ "IndexedXYZCollectionPolygonOps": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.IndexedXYZCollectionPolygonOps),
|
|
184481
|
+
/* harmony export */ "IntegratedSpiral3d": () => (/* reexport safe */ _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_85__.IntegratedSpiral3d),
|
|
184482
|
+
/* harmony export */ "InterpolationCurve3d": () => (/* reexport safe */ _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__.InterpolationCurve3d),
|
|
184483
|
+
/* harmony export */ "InterpolationCurve3dOptions": () => (/* reexport safe */ _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__.InterpolationCurve3dOptions),
|
|
184677
184484
|
/* harmony export */ "InverseMatrixState": () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.InverseMatrixState),
|
|
184678
|
-
/* harmony export */ "JointOptions": () => (/* reexport safe */
|
|
184679
|
-
/* harmony export */ "KnotVector": () => (/* reexport safe */
|
|
184680
|
-
/* harmony export */ "LineSegment3d": () => (/* reexport safe */
|
|
184681
|
-
/* harmony export */ "LineString3d": () => (/* reexport safe */
|
|
184682
|
-
/* harmony export */ "LinearSweep": () => (/* reexport safe */
|
|
184485
|
+
/* harmony export */ "JointOptions": () => (/* reexport safe */ _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__.JointOptions),
|
|
184486
|
+
/* harmony export */ "KnotVector": () => (/* reexport safe */ _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__.KnotVector),
|
|
184487
|
+
/* harmony export */ "LineSegment3d": () => (/* reexport safe */ _curve_LineSegment3d__WEBPACK_IMPORTED_MODULE_73__.LineSegment3d),
|
|
184488
|
+
/* harmony export */ "LineString3d": () => (/* reexport safe */ _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__.LineString3d),
|
|
184489
|
+
/* harmony export */ "LinearSweep": () => (/* reexport safe */ _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_91__.LinearSweep),
|
|
184683
184490
|
/* harmony export */ "LongitudeLatitudeNumber": () => (/* reexport safe */ _geometry3d_LongitudeLatitudeAltitude__WEBPACK_IMPORTED_MODULE_2__.LongitudeLatitudeNumber),
|
|
184684
|
-
/* harmony export */ "Loop": () => (/* reexport safe */
|
|
184685
|
-
/* harmony export */ "LoopCurveLoopCurve": () => (/* reexport safe */
|
|
184686
|
-
/* harmony export */ "Map4d": () => (/* reexport safe */
|
|
184491
|
+
/* harmony export */ "Loop": () => (/* reexport safe */ _curve_Loop__WEBPACK_IMPORTED_MODULE_75__.Loop),
|
|
184492
|
+
/* harmony export */ "LoopCurveLoopCurve": () => (/* reexport safe */ _curve_Loop__WEBPACK_IMPORTED_MODULE_75__.LoopCurveLoopCurve),
|
|
184493
|
+
/* harmony export */ "Map4d": () => (/* reexport safe */ _geometry4d_Map4d__WEBPACK_IMPORTED_MODULE_48__.Map4d),
|
|
184687
184494
|
/* harmony export */ "Matrix3d": () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.Matrix3d),
|
|
184688
|
-
/* harmony export */ "Matrix4d": () => (/* reexport safe */
|
|
184689
|
-
/* harmony export */ "MomentData": () => (/* reexport safe */
|
|
184690
|
-
/* harmony export */ "Newton1dUnbounded": () => (/* reexport safe */
|
|
184691
|
-
/* harmony export */ "Newton1dUnboundedApproximateDerivative": () => (/* reexport safe */
|
|
184692
|
-
/* harmony export */ "Newton2dUnboundedWithDerivative": () => (/* reexport safe */
|
|
184693
|
-
/* harmony export */ "NewtonEvaluatorRRtoRRD": () => (/* reexport safe */
|
|
184694
|
-
/* harmony export */ "NewtonEvaluatorRtoR": () => (/* reexport safe */
|
|
184695
|
-
/* harmony export */ "NewtonEvaluatorRtoRD": () => (/* reexport safe */
|
|
184495
|
+
/* harmony export */ "Matrix4d": () => (/* reexport safe */ _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_47__.Matrix4d),
|
|
184496
|
+
/* harmony export */ "MomentData": () => (/* reexport safe */ _geometry4d_MomentData__WEBPACK_IMPORTED_MODULE_49__.MomentData),
|
|
184497
|
+
/* harmony export */ "Newton1dUnbounded": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.Newton1dUnbounded),
|
|
184498
|
+
/* harmony export */ "Newton1dUnboundedApproximateDerivative": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.Newton1dUnboundedApproximateDerivative),
|
|
184499
|
+
/* harmony export */ "Newton2dUnboundedWithDerivative": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.Newton2dUnboundedWithDerivative),
|
|
184500
|
+
/* harmony export */ "NewtonEvaluatorRRtoRRD": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.NewtonEvaluatorRRtoRRD),
|
|
184501
|
+
/* harmony export */ "NewtonEvaluatorRtoR": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.NewtonEvaluatorRtoR),
|
|
184502
|
+
/* harmony export */ "NewtonEvaluatorRtoRD": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.NewtonEvaluatorRtoRD),
|
|
184696
184503
|
/* harmony export */ "NullGeometryHandler": () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.NullGeometryHandler),
|
|
184697
|
-
/* harmony export */ "NumberArray": () => (/* reexport safe */
|
|
184698
|
-
/* harmony export */ "OffsetMeshOptions": () => (/* reexport safe */
|
|
184699
|
-
/* harmony export */ "OffsetOptions": () => (/* reexport safe */
|
|
184700
|
-
/* harmony export */ "Order2Bezier": () => (/* reexport safe */
|
|
184701
|
-
/* harmony export */ "Order3Bezier": () => (/* reexport safe */
|
|
184702
|
-
/* harmony export */ "Order4Bezier": () => (/* reexport safe */
|
|
184703
|
-
/* harmony export */ "Order5Bezier": () => (/* reexport safe */
|
|
184504
|
+
/* harmony export */ "NumberArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.NumberArray),
|
|
184505
|
+
/* harmony export */ "OffsetMeshOptions": () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_117__.OffsetMeshOptions),
|
|
184506
|
+
/* harmony export */ "OffsetOptions": () => (/* reexport safe */ _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__.OffsetOptions),
|
|
184507
|
+
/* harmony export */ "Order2Bezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.Order2Bezier),
|
|
184508
|
+
/* harmony export */ "Order3Bezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.Order3Bezier),
|
|
184509
|
+
/* harmony export */ "Order4Bezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.Order4Bezier),
|
|
184510
|
+
/* harmony export */ "Order5Bezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.Order5Bezier),
|
|
184704
184511
|
/* harmony export */ "OrderedRotationAngles": () => (/* reexport safe */ _geometry3d_OrderedRotationAngles__WEBPACK_IMPORTED_MODULE_17__.OrderedRotationAngles),
|
|
184705
184512
|
/* harmony export */ "PackedMatrix3dOps": () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.PackedMatrix3dOps),
|
|
184706
|
-
/* harmony export */ "ParityRegion": () => (/* reexport safe */
|
|
184707
|
-
/* harmony export */ "PascalCoefficients": () => (/* reexport safe */
|
|
184708
|
-
/* harmony export */ "Path": () => (/* reexport safe */
|
|
184709
|
-
/* harmony export */ "PathFragment": () => (/* reexport safe */
|
|
184710
|
-
/* harmony export */ "
|
|
184711
|
-
/* harmony export */ "
|
|
184712
|
-
/* harmony export */ "
|
|
184713
|
-
/* harmony export */ "
|
|
184714
|
-
/* harmony export */ "
|
|
184715
|
-
/* harmony export */ "
|
|
184716
|
-
/* harmony export */ "
|
|
184717
|
-
/* harmony export */ "
|
|
184718
|
-
/* harmony export */ "
|
|
184719
|
-
/* harmony export */ "
|
|
184720
|
-
/* harmony export */ "
|
|
184721
|
-
/* harmony export */ "
|
|
184722
|
-
/* harmony export */ "
|
|
184723
|
-
/* harmony export */ "
|
|
184724
|
-
/* harmony export */ "
|
|
184725
|
-
/* harmony export */ "
|
|
184726
|
-
/* harmony export */ "
|
|
184727
|
-
/* harmony export */ "
|
|
184728
|
-
/* harmony export */ "
|
|
184729
|
-
/* harmony export */ "
|
|
184730
|
-
/* harmony export */ "
|
|
184731
|
-
/* harmony export */ "
|
|
184732
|
-
/* harmony export */ "
|
|
184733
|
-
/* harmony export */ "
|
|
184734
|
-
/* harmony export */ "
|
|
184735
|
-
/* harmony export */ "
|
|
184736
|
-
/* harmony export */ "
|
|
184737
|
-
/* harmony export */ "
|
|
184738
|
-
/* harmony export */ "
|
|
184739
|
-
/* harmony export */ "
|
|
184740
|
-
/* harmony export */ "
|
|
184741
|
-
/* harmony export */ "
|
|
184742
|
-
/* harmony export */ "
|
|
184743
|
-
/* harmony export */ "
|
|
184513
|
+
/* harmony export */ "ParityRegion": () => (/* reexport safe */ _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_76__.ParityRegion),
|
|
184514
|
+
/* harmony export */ "PascalCoefficients": () => (/* reexport safe */ _numerics_PascalCoefficients__WEBPACK_IMPORTED_MODULE_54__.PascalCoefficients),
|
|
184515
|
+
/* harmony export */ "Path": () => (/* reexport safe */ _curve_Path__WEBPACK_IMPORTED_MODULE_77__.Path),
|
|
184516
|
+
/* harmony export */ "PathFragment": () => (/* reexport safe */ _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_62__.PathFragment),
|
|
184517
|
+
/* harmony export */ "Plane3d": () => (/* reexport safe */ _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_18__.Plane3d),
|
|
184518
|
+
/* harmony export */ "Plane3dByOriginAndUnitNormal": () => (/* reexport safe */ _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_19__.Plane3dByOriginAndUnitNormal),
|
|
184519
|
+
/* harmony export */ "Plane3dByOriginAndVectors": () => (/* reexport safe */ _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_20__.Plane3dByOriginAndVectors),
|
|
184520
|
+
/* harmony export */ "PlaneByOriginAndVectors4d": () => (/* reexport safe */ _geometry4d_PlaneByOriginAndVectors4d__WEBPACK_IMPORTED_MODULE_45__.PlaneByOriginAndVectors4d),
|
|
184521
|
+
/* harmony export */ "Point2d": () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.Point2d),
|
|
184522
|
+
/* harmony export */ "Point2dArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point2dArray),
|
|
184523
|
+
/* harmony export */ "Point2dArrayCarrier": () => (/* reexport safe */ _geometry3d_Point2dArrayCarrier__WEBPACK_IMPORTED_MODULE_21__.Point2dArrayCarrier),
|
|
184524
|
+
/* harmony export */ "Point3d": () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.Point3d),
|
|
184525
|
+
/* harmony export */ "Point3dArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point3dArray),
|
|
184526
|
+
/* harmony export */ "Point3dArrayCarrier": () => (/* reexport safe */ _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_25__.Point3dArrayCarrier),
|
|
184527
|
+
/* harmony export */ "Point3dArrayPolygonOps": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.Point3dArrayPolygonOps),
|
|
184528
|
+
/* harmony export */ "Point4d": () => (/* reexport safe */ _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_46__.Point4d),
|
|
184529
|
+
/* harmony export */ "Point4dArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point4dArray),
|
|
184530
|
+
/* harmony export */ "PointString3d": () => (/* reexport safe */ _curve_PointString3d__WEBPACK_IMPORTED_MODULE_81__.PointString3d),
|
|
184531
|
+
/* harmony export */ "Polyface": () => (/* reexport safe */ _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__.Polyface),
|
|
184532
|
+
/* harmony export */ "PolyfaceAuxData": () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.PolyfaceAuxData),
|
|
184533
|
+
/* harmony export */ "PolyfaceBuilder": () => (/* reexport safe */ _polyface_PolyfaceBuilder__WEBPACK_IMPORTED_MODULE_115__.PolyfaceBuilder),
|
|
184534
|
+
/* harmony export */ "PolyfaceClip": () => (/* reexport safe */ _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_118__.PolyfaceClip),
|
|
184535
|
+
/* harmony export */ "PolyfaceData": () => (/* reexport safe */ _polyface_PolyfaceData__WEBPACK_IMPORTED_MODULE_116__.PolyfaceData),
|
|
184536
|
+
/* harmony export */ "PolyfaceQuery": () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_117__.PolyfaceQuery),
|
|
184537
|
+
/* harmony export */ "PolygonLocation": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.PolygonLocation),
|
|
184538
|
+
/* harmony export */ "PolygonLocationDetail": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonLocationDetail),
|
|
184539
|
+
/* harmony export */ "PolygonOps": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonOps),
|
|
184540
|
+
/* harmony export */ "PolygonWireOffsetContext": () => (/* reexport safe */ _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__.PolygonWireOffsetContext),
|
|
184541
|
+
/* harmony export */ "PolylineOps": () => (/* reexport safe */ _geometry3d_PolylineOps__WEBPACK_IMPORTED_MODULE_26__.PolylineOps),
|
|
184542
|
+
/* harmony export */ "PowerPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.PowerPolynomial),
|
|
184543
|
+
/* harmony export */ "ProxyCurve": () => (/* reexport safe */ _curve_ProxyCurve__WEBPACK_IMPORTED_MODULE_82__.ProxyCurve),
|
|
184544
|
+
/* harmony export */ "Quadrature": () => (/* reexport safe */ _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__.Quadrature),
|
|
184545
|
+
/* harmony export */ "Range1d": () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range1d),
|
|
184546
|
+
/* harmony export */ "Range1dArray": () => (/* reexport safe */ _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__.Range1dArray),
|
|
184547
|
+
/* harmony export */ "Range2d": () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range2d),
|
|
184548
|
+
/* harmony export */ "Range3d": () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range3d),
|
|
184549
|
+
/* harmony export */ "RangeBase": () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.RangeBase),
|
|
184550
|
+
/* harmony export */ "Ray2d": () => (/* reexport safe */ _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_44__.Ray2d),
|
|
184551
|
+
/* harmony export */ "Ray3d": () => (/* reexport safe */ _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_29__.Ray3d),
|
|
184744
184552
|
/* harmony export */ "RecurseToCurvesGeometryHandler": () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.RecurseToCurvesGeometryHandler),
|
|
184745
|
-
/* harmony export */ "RecursiveCurveProcessor": () => (/* reexport safe */
|
|
184746
|
-
/* harmony export */ "RecursiveCurveProcessorWithStack": () => (/* reexport safe */
|
|
184747
|
-
/* harmony export */ "RegionBinaryOpType": () => (/* reexport safe */
|
|
184748
|
-
/* harmony export */ "RegionMomentsXY": () => (/* reexport safe */
|
|
184749
|
-
/* harmony export */ "RegionOps": () => (/* reexport safe */
|
|
184750
|
-
/* harmony export */ "RotationalSweep": () => (/* reexport safe */
|
|
184751
|
-
/* harmony export */ "RuledSweep": () => (/* reexport safe */
|
|
184752
|
-
/* harmony export */ "Sample": () => (/* reexport safe */
|
|
184753
|
-
/* harmony export */ "Segment1d": () => (/* reexport safe */
|
|
184754
|
-
/* harmony export */ "SimpleNewton": () => (/* reexport safe */
|
|
184755
|
-
/* harmony export */ "SineCosinePolynomial": () => (/* reexport safe */
|
|
184756
|
-
/* harmony export */ "SmallSystem": () => (/* reexport safe */
|
|
184553
|
+
/* harmony export */ "RecursiveCurveProcessor": () => (/* reexport safe */ _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__.RecursiveCurveProcessor),
|
|
184554
|
+
/* harmony export */ "RecursiveCurveProcessorWithStack": () => (/* reexport safe */ _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__.RecursiveCurveProcessorWithStack),
|
|
184555
|
+
/* harmony export */ "RegionBinaryOpType": () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_79__.RegionBinaryOpType),
|
|
184556
|
+
/* harmony export */ "RegionMomentsXY": () => (/* reexport safe */ _curve_RegionMomentsXY__WEBPACK_IMPORTED_MODULE_78__.RegionMomentsXY),
|
|
184557
|
+
/* harmony export */ "RegionOps": () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_79__.RegionOps),
|
|
184558
|
+
/* harmony export */ "RotationalSweep": () => (/* reexport safe */ _solid_RotationalSweep__WEBPACK_IMPORTED_MODULE_92__.RotationalSweep),
|
|
184559
|
+
/* harmony export */ "RuledSweep": () => (/* reexport safe */ _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_93__.RuledSweep),
|
|
184560
|
+
/* harmony export */ "Sample": () => (/* reexport safe */ _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_125__.Sample),
|
|
184561
|
+
/* harmony export */ "Segment1d": () => (/* reexport safe */ _geometry3d_Segment1d__WEBPACK_IMPORTED_MODULE_30__.Segment1d),
|
|
184562
|
+
/* harmony export */ "SimpleNewton": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.SimpleNewton),
|
|
184563
|
+
/* harmony export */ "SineCosinePolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.SineCosinePolynomial),
|
|
184564
|
+
/* harmony export */ "SmallSystem": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.SmallSystem),
|
|
184757
184565
|
/* harmony export */ "SmoothTransformBetweenFrusta": () => (/* reexport safe */ _geometry3d_FrustumAnimation__WEBPACK_IMPORTED_MODULE_7__.SmoothTransformBetweenFrusta),
|
|
184758
|
-
/* harmony export */ "SolidPrimitive": () => (/* reexport safe */
|
|
184759
|
-
/* harmony export */ "SpacePolygonTriangulation": () => (/* reexport safe */
|
|
184760
|
-
/* harmony export */ "Sphere": () => (/* reexport safe */
|
|
184761
|
-
/* harmony export */ "SphereImplicit": () => (/* reexport safe */
|
|
184762
|
-
/* harmony export */ "StandardViewIndex": () => (/* reexport safe */
|
|
184763
|
-
/* harmony export */ "SteppedIndexFunctionFactory": () => (/* reexport safe */
|
|
184764
|
-
/* harmony export */ "StringifiedClipVector": () => (/* reexport safe */
|
|
184765
|
-
/* harmony export */ "StrokeCountMap": () => (/* reexport safe */
|
|
184766
|
-
/* harmony export */ "StrokeOptions": () => (/* reexport safe */
|
|
184767
|
-
/* harmony export */ "SweepContour": () => (/* reexport safe */
|
|
184768
|
-
/* harmony export */ "TaggedNumericConstants": () => (/* reexport safe */
|
|
184769
|
-
/* harmony export */ "TaggedNumericData": () => (/* reexport safe */
|
|
184770
|
-
/* harmony export */ "TorusImplicit": () => (/* reexport safe */
|
|
184771
|
-
/* harmony export */ "TorusPipe": () => (/* reexport safe */
|
|
184772
|
-
/* harmony export */ "Transform": () => (/* reexport safe */
|
|
184773
|
-
/* harmony export */ "TransitionSpiral3d": () => (/* reexport safe */
|
|
184774
|
-
/* harmony export */ "TriDiagonalSystem": () => (/* reexport safe */
|
|
184566
|
+
/* harmony export */ "SolidPrimitive": () => (/* reexport safe */ _solid_SolidPrimitive__WEBPACK_IMPORTED_MODULE_94__.SolidPrimitive),
|
|
184567
|
+
/* harmony export */ "SpacePolygonTriangulation": () => (/* reexport safe */ _topology_SpaceTriangulation__WEBPACK_IMPORTED_MODULE_122__.SpacePolygonTriangulation),
|
|
184568
|
+
/* harmony export */ "Sphere": () => (/* reexport safe */ _solid_Sphere__WEBPACK_IMPORTED_MODULE_95__.Sphere),
|
|
184569
|
+
/* harmony export */ "SphereImplicit": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.SphereImplicit),
|
|
184570
|
+
/* harmony export */ "StandardViewIndex": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.StandardViewIndex),
|
|
184571
|
+
/* harmony export */ "SteppedIndexFunctionFactory": () => (/* reexport safe */ _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_125__.SteppedIndexFunctionFactory),
|
|
184572
|
+
/* harmony export */ "StringifiedClipVector": () => (/* reexport safe */ _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_42__.StringifiedClipVector),
|
|
184573
|
+
/* harmony export */ "StrokeCountMap": () => (/* reexport safe */ _curve_Query_StrokeCountMap__WEBPACK_IMPORTED_MODULE_88__.StrokeCountMap),
|
|
184574
|
+
/* harmony export */ "StrokeOptions": () => (/* reexport safe */ _curve_StrokeOptions__WEBPACK_IMPORTED_MODULE_83__.StrokeOptions),
|
|
184575
|
+
/* harmony export */ "SweepContour": () => (/* reexport safe */ _solid_SweepContour__WEBPACK_IMPORTED_MODULE_96__.SweepContour),
|
|
184576
|
+
/* harmony export */ "TaggedNumericConstants": () => (/* reexport safe */ _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_119__.TaggedNumericConstants),
|
|
184577
|
+
/* harmony export */ "TaggedNumericData": () => (/* reexport safe */ _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_119__.TaggedNumericData),
|
|
184578
|
+
/* harmony export */ "TorusImplicit": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.TorusImplicit),
|
|
184579
|
+
/* harmony export */ "TorusPipe": () => (/* reexport safe */ _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_97__.TorusPipe),
|
|
184580
|
+
/* harmony export */ "Transform": () => (/* reexport safe */ _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_31__.Transform),
|
|
184581
|
+
/* harmony export */ "TransitionSpiral3d": () => (/* reexport safe */ _curve_spiral_TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_84__.TransitionSpiral3d),
|
|
184582
|
+
/* harmony export */ "TriDiagonalSystem": () => (/* reexport safe */ _numerics_TriDiagonalSystem__WEBPACK_IMPORTED_MODULE_58__.TriDiagonalSystem),
|
|
184775
184583
|
/* harmony export */ "TriangleLocationDetail": () => (/* reexport safe */ _geometry3d_BarycentricTriangle__WEBPACK_IMPORTED_MODULE_3__.TriangleLocationDetail),
|
|
184776
|
-
/* harmony export */ "Triangulator": () => (/* reexport safe */
|
|
184777
|
-
/* harmony export */ "TrigPolynomial": () => (/* reexport safe */
|
|
184778
|
-
/* harmony export */ "UVSelect": () => (/* reexport safe */
|
|
184779
|
-
/* harmony export */ "UVSurfaceOps": () => (/* reexport safe */
|
|
184780
|
-
/* harmony export */ "UnionOfConvexClipPlaneSets": () => (/* reexport safe */
|
|
184781
|
-
/* harmony export */ "UnionRegion": () => (/* reexport safe */
|
|
184782
|
-
/* harmony export */ "UnivariateBezier": () => (/* reexport safe */
|
|
184783
|
-
/* harmony export */ "Vector2d": () => (/* reexport safe */
|
|
184784
|
-
/* harmony export */ "Vector3d": () => (/* reexport safe */
|
|
184785
|
-
/* harmony export */ "Vector3dArray": () => (/* reexport safe */
|
|
184786
|
-
/* harmony export */ "WeightStyle": () => (/* reexport safe */
|
|
184787
|
-
/* harmony export */ "XY": () => (/* reexport safe */
|
|
184788
|
-
/* harmony export */ "XYAndZ": () => (/* reexport safe */
|
|
184789
|
-
/* harmony export */ "XYZ": () => (/* reexport safe */
|
|
184790
|
-
/* harmony export */ "YawPitchRollAngles": () => (/* reexport safe */
|
|
184791
|
-
/* harmony export */ "compareRange1dLexicalLowHigh": () => (/* reexport safe */
|
|
184792
|
-
/* harmony export */ "interpolateColor": () => (/* reexport safe */
|
|
184584
|
+
/* harmony export */ "Triangulator": () => (/* reexport safe */ _topology_Triangulation__WEBPACK_IMPORTED_MODULE_121__.Triangulator),
|
|
184585
|
+
/* harmony export */ "TrigPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.TrigPolynomial),
|
|
184586
|
+
/* harmony export */ "UVSelect": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.UVSelect),
|
|
184587
|
+
/* harmony export */ "UVSurfaceOps": () => (/* reexport safe */ _geometry3d_UVSurfaceOps__WEBPACK_IMPORTED_MODULE_32__.UVSurfaceOps),
|
|
184588
|
+
/* harmony export */ "UnionOfConvexClipPlaneSets": () => (/* reexport safe */ _clipping_UnionOfConvexClipPlaneSets__WEBPACK_IMPORTED_MODULE_40__.UnionOfConvexClipPlaneSets),
|
|
184589
|
+
/* harmony export */ "UnionRegion": () => (/* reexport safe */ _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_87__.UnionRegion),
|
|
184590
|
+
/* harmony export */ "UnivariateBezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.UnivariateBezier),
|
|
184591
|
+
/* harmony export */ "Vector2d": () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.Vector2d),
|
|
184592
|
+
/* harmony export */ "Vector3d": () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.Vector3d),
|
|
184593
|
+
/* harmony export */ "Vector3dArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Vector3dArray),
|
|
184594
|
+
/* harmony export */ "WeightStyle": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.WeightStyle),
|
|
184595
|
+
/* harmony export */ "XY": () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.XY),
|
|
184596
|
+
/* harmony export */ "XYAndZ": () => (/* reexport safe */ _geometry3d_XYZProps__WEBPACK_IMPORTED_MODULE_33__.XYAndZ),
|
|
184597
|
+
/* harmony export */ "XYZ": () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.XYZ),
|
|
184598
|
+
/* harmony export */ "YawPitchRollAngles": () => (/* reexport safe */ _geometry3d_YawPitchRollAngles__WEBPACK_IMPORTED_MODULE_34__.YawPitchRollAngles),
|
|
184599
|
+
/* harmony export */ "compareRange1dLexicalLowHigh": () => (/* reexport safe */ _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__.compareRange1dLexicalLowHigh),
|
|
184600
|
+
/* harmony export */ "interpolateColor": () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_114__.interpolateColor)
|
|
184793
184601
|
/* harmony export */ });
|
|
184794
184602
|
/* harmony import */ var _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./geometry3d/Angle */ "../../core/geometry/lib/esm/geometry3d/Angle.js");
|
|
184795
184603
|
/* harmony import */ var _geometry3d_AngleSweep__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./geometry3d/AngleSweep */ "../../core/geometry/lib/esm/geometry3d/AngleSweep.js");
|
|
@@ -184809,114 +184617,115 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
184809
184617
|
/* harmony import */ var _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./geometry3d/IndexedXYZCollection */ "../../core/geometry/lib/esm/geometry3d/IndexedXYZCollection.js");
|
|
184810
184618
|
/* harmony import */ var _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./geometry3d/Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
|
|
184811
184619
|
/* harmony import */ var _geometry3d_OrderedRotationAngles__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./geometry3d/OrderedRotationAngles */ "../../core/geometry/lib/esm/geometry3d/OrderedRotationAngles.js");
|
|
184812
|
-
/* harmony import */ var
|
|
184813
|
-
/* harmony import */ var
|
|
184814
|
-
/* harmony import */ var
|
|
184815
|
-
/* harmony import */ var
|
|
184816
|
-
/* harmony import */ var
|
|
184817
|
-
/* harmony import */ var
|
|
184818
|
-
/* harmony import */ var
|
|
184819
|
-
/* harmony import */ var
|
|
184820
|
-
/* harmony import */ var
|
|
184821
|
-
/* harmony import */ var
|
|
184822
|
-
/* harmony import */ var
|
|
184823
|
-
/* harmony import */ var
|
|
184824
|
-
/* harmony import */ var
|
|
184825
|
-
/* harmony import */ var
|
|
184826
|
-
/* harmony import */ var
|
|
184827
|
-
/* harmony import */ var
|
|
184828
|
-
/* harmony import */ var
|
|
184829
|
-
/* harmony import */ var
|
|
184830
|
-
/* harmony import */ var
|
|
184831
|
-
/* harmony import */ var
|
|
184832
|
-
/* harmony import */ var
|
|
184833
|
-
/* harmony import */ var
|
|
184834
|
-
/* harmony import */ var
|
|
184835
|
-
/* harmony import */ var
|
|
184836
|
-
/* harmony import */ var
|
|
184837
|
-
/* harmony import */ var
|
|
184838
|
-
/* harmony import */ var
|
|
184839
|
-
/* harmony import */ var
|
|
184840
|
-
/* harmony import */ var
|
|
184841
|
-
/* harmony import */ var
|
|
184842
|
-
/* harmony import */ var
|
|
184843
|
-
/* harmony import */ var
|
|
184844
|
-
/* harmony import */ var
|
|
184845
|
-
/* harmony import */ var
|
|
184846
|
-
/* harmony import */ var
|
|
184847
|
-
/* harmony import */ var
|
|
184848
|
-
/* harmony import */ var
|
|
184849
|
-
/* harmony import */ var
|
|
184850
|
-
/* harmony import */ var
|
|
184851
|
-
/* harmony import */ var
|
|
184852
|
-
/* harmony import */ var
|
|
184853
|
-
/* harmony import */ var
|
|
184854
|
-
/* harmony import */ var
|
|
184855
|
-
/* harmony import */ var
|
|
184856
|
-
/* harmony import */ var
|
|
184857
|
-
/* harmony import */ var
|
|
184858
|
-
/* harmony import */ var
|
|
184859
|
-
/* harmony import */ var
|
|
184860
|
-
/* harmony import */ var
|
|
184861
|
-
/* harmony import */ var
|
|
184862
|
-
/* harmony import */ var
|
|
184863
|
-
/* harmony import */ var
|
|
184864
|
-
/* harmony import */ var
|
|
184865
|
-
/* harmony import */ var
|
|
184866
|
-
/* harmony import */ var
|
|
184867
|
-
/* harmony import */ var
|
|
184868
|
-
/* harmony import */ var
|
|
184869
|
-
/* harmony import */ var
|
|
184870
|
-
/* harmony import */ var
|
|
184871
|
-
/* harmony import */ var
|
|
184872
|
-
/* harmony import */ var
|
|
184873
|
-
/* harmony import */ var
|
|
184874
|
-
/* harmony import */ var
|
|
184875
|
-
/* harmony import */ var
|
|
184876
|
-
/* harmony import */ var
|
|
184877
|
-
/* harmony import */ var
|
|
184878
|
-
/* harmony import */ var
|
|
184879
|
-
/* harmony import */ var
|
|
184880
|
-
/* harmony import */ var
|
|
184881
|
-
/* harmony import */ var
|
|
184882
|
-
/* harmony import */ var
|
|
184883
|
-
/* harmony import */ var
|
|
184884
|
-
/* harmony import */ var
|
|
184885
|
-
/* harmony import */ var
|
|
184886
|
-
/* harmony import */ var
|
|
184887
|
-
/* harmony import */ var
|
|
184888
|
-
/* harmony import */ var
|
|
184889
|
-
/* harmony import */ var
|
|
184890
|
-
/* harmony import */ var
|
|
184891
|
-
/* harmony import */ var
|
|
184892
|
-
/* harmony import */ var
|
|
184893
|
-
/* harmony import */ var
|
|
184894
|
-
/* harmony import */ var
|
|
184895
|
-
/* harmony import */ var
|
|
184896
|
-
/* harmony import */ var
|
|
184897
|
-
/* harmony import */ var
|
|
184898
|
-
/* harmony import */ var
|
|
184899
|
-
/* harmony import */ var
|
|
184900
|
-
/* harmony import */ var
|
|
184901
|
-
/* harmony import */ var
|
|
184902
|
-
/* harmony import */ var
|
|
184903
|
-
/* harmony import */ var
|
|
184904
|
-
/* harmony import */ var
|
|
184905
|
-
/* harmony import */ var
|
|
184906
|
-
/* harmony import */ var
|
|
184907
|
-
/* harmony import */ var
|
|
184908
|
-
/* harmony import */ var
|
|
184909
|
-
/* harmony import */ var
|
|
184910
|
-
/* harmony import */ var
|
|
184911
|
-
/* harmony import */ var
|
|
184912
|
-
/* harmony import */ var
|
|
184913
|
-
/* harmony import */ var
|
|
184914
|
-
/* harmony import */ var
|
|
184915
|
-
/* harmony import */ var
|
|
184916
|
-
/* harmony import */ var
|
|
184917
|
-
/* harmony import */ var
|
|
184918
|
-
/* harmony import */ var
|
|
184919
|
-
/* harmony import */ var
|
|
184620
|
+
/* harmony import */ var _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./geometry3d/Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
184621
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./geometry3d/Plane3dByOriginAndUnitNormal */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndUnitNormal.js");
|
|
184622
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./geometry3d/Plane3dByOriginAndVectors */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndVectors.js");
|
|
184623
|
+
/* harmony import */ var _geometry3d_Point2dArrayCarrier__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./geometry3d/Point2dArrayCarrier */ "../../core/geometry/lib/esm/geometry3d/Point2dArrayCarrier.js");
|
|
184624
|
+
/* harmony import */ var _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./geometry3d/Point2dVector2d */ "../../core/geometry/lib/esm/geometry3d/Point2dVector2d.js");
|
|
184625
|
+
/* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
184626
|
+
/* harmony import */ var _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./geometry3d/PointHelpers */ "../../core/geometry/lib/esm/geometry3d/PointHelpers.js");
|
|
184627
|
+
/* harmony import */ var _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./geometry3d/Point3dArrayCarrier */ "../../core/geometry/lib/esm/geometry3d/Point3dArrayCarrier.js");
|
|
184628
|
+
/* harmony import */ var _geometry3d_PolylineOps__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./geometry3d/PolylineOps */ "../../core/geometry/lib/esm/geometry3d/PolylineOps.js");
|
|
184629
|
+
/* harmony import */ var _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./geometry3d/PolygonOps */ "../../core/geometry/lib/esm/geometry3d/PolygonOps.js");
|
|
184630
|
+
/* harmony import */ var _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./geometry3d/Range */ "../../core/geometry/lib/esm/geometry3d/Range.js");
|
|
184631
|
+
/* harmony import */ var _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./geometry3d/Ray3d */ "../../core/geometry/lib/esm/geometry3d/Ray3d.js");
|
|
184632
|
+
/* harmony import */ var _geometry3d_Segment1d__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./geometry3d/Segment1d */ "../../core/geometry/lib/esm/geometry3d/Segment1d.js");
|
|
184633
|
+
/* harmony import */ var _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./geometry3d/Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
184634
|
+
/* harmony import */ var _geometry3d_UVSurfaceOps__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./geometry3d/UVSurfaceOps */ "../../core/geometry/lib/esm/geometry3d/UVSurfaceOps.js");
|
|
184635
|
+
/* harmony import */ var _geometry3d_XYZProps__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./geometry3d/XYZProps */ "../../core/geometry/lib/esm/geometry3d/XYZProps.js");
|
|
184636
|
+
/* harmony import */ var _geometry3d_YawPitchRollAngles__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./geometry3d/YawPitchRollAngles */ "../../core/geometry/lib/esm/geometry3d/YawPitchRollAngles.js");
|
|
184637
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
184638
|
+
/* harmony import */ var _Constant__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./Constant */ "../../core/geometry/lib/esm/Constant.js");
|
|
184639
|
+
/* harmony import */ var _clipping_BooleanClipFactory__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./clipping/BooleanClipFactory */ "../../core/geometry/lib/esm/clipping/BooleanClipFactory.js");
|
|
184640
|
+
/* harmony import */ var _clipping_ClipPlane__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./clipping/ClipPlane */ "../../core/geometry/lib/esm/clipping/ClipPlane.js");
|
|
184641
|
+
/* harmony import */ var _clipping_ConvexClipPlaneSet__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./clipping/ConvexClipPlaneSet */ "../../core/geometry/lib/esm/clipping/ConvexClipPlaneSet.js");
|
|
184642
|
+
/* harmony import */ var _clipping_UnionOfConvexClipPlaneSets__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./clipping/UnionOfConvexClipPlaneSets */ "../../core/geometry/lib/esm/clipping/UnionOfConvexClipPlaneSets.js");
|
|
184643
|
+
/* harmony import */ var _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./clipping/ClipPrimitive */ "../../core/geometry/lib/esm/clipping/ClipPrimitive.js");
|
|
184644
|
+
/* harmony import */ var _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./clipping/ClipVector */ "../../core/geometry/lib/esm/clipping/ClipVector.js");
|
|
184645
|
+
/* harmony import */ var _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./clipping/ClipUtils */ "../../core/geometry/lib/esm/clipping/ClipUtils.js");
|
|
184646
|
+
/* harmony import */ var _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./numerics/ConvexPolygon2d */ "../../core/geometry/lib/esm/numerics/ConvexPolygon2d.js");
|
|
184647
|
+
/* harmony import */ var _geometry4d_PlaneByOriginAndVectors4d__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry4d/PlaneByOriginAndVectors4d */ "../../core/geometry/lib/esm/geometry4d/PlaneByOriginAndVectors4d.js");
|
|
184648
|
+
/* harmony import */ var _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry4d/Point4d */ "../../core/geometry/lib/esm/geometry4d/Point4d.js");
|
|
184649
|
+
/* harmony import */ var _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry4d/Matrix4d */ "../../core/geometry/lib/esm/geometry4d/Matrix4d.js");
|
|
184650
|
+
/* harmony import */ var _geometry4d_Map4d__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry4d/Map4d */ "../../core/geometry/lib/esm/geometry4d/Map4d.js");
|
|
184651
|
+
/* harmony import */ var _geometry4d_MomentData__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry4d/MomentData */ "../../core/geometry/lib/esm/geometry4d/MomentData.js");
|
|
184652
|
+
/* harmony import */ var _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./numerics/BezierPolynomials */ "../../core/geometry/lib/esm/numerics/BezierPolynomials.js");
|
|
184653
|
+
/* harmony import */ var _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./numerics/ClusterableArray */ "../../core/geometry/lib/esm/numerics/ClusterableArray.js");
|
|
184654
|
+
/* harmony import */ var _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./numerics/Newton */ "../../core/geometry/lib/esm/numerics/Newton.js");
|
|
184655
|
+
/* harmony import */ var _numerics_Complex__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./numerics/Complex */ "../../core/geometry/lib/esm/numerics/Complex.js");
|
|
184656
|
+
/* harmony import */ var _numerics_PascalCoefficients__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./numerics/PascalCoefficients */ "../../core/geometry/lib/esm/numerics/PascalCoefficients.js");
|
|
184657
|
+
/* harmony import */ var _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./numerics/Polynomials */ "../../core/geometry/lib/esm/numerics/Polynomials.js");
|
|
184658
|
+
/* harmony import */ var _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./numerics/Quadrature */ "../../core/geometry/lib/esm/numerics/Quadrature.js");
|
|
184659
|
+
/* harmony import */ var _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./numerics/Range1dArray */ "../../core/geometry/lib/esm/numerics/Range1dArray.js");
|
|
184660
|
+
/* harmony import */ var _numerics_TriDiagonalSystem__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./numerics/TriDiagonalSystem */ "../../core/geometry/lib/esm/numerics/TriDiagonalSystem.js");
|
|
184661
|
+
/* harmony import */ var _curve_Arc3d__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./curve/Arc3d */ "../../core/geometry/lib/esm/curve/Arc3d.js");
|
|
184662
|
+
/* harmony import */ var _curve_ConstructCurveBetweenCurves__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./curve/ConstructCurveBetweenCurves */ "../../core/geometry/lib/esm/curve/ConstructCurveBetweenCurves.js");
|
|
184663
|
+
/* harmony import */ var _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./curve/CoordinateXYZ */ "../../core/geometry/lib/esm/curve/CoordinateXYZ.js");
|
|
184664
|
+
/* harmony import */ var _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./curve/CurveChainWithDistanceIndex */ "../../core/geometry/lib/esm/curve/CurveChainWithDistanceIndex.js");
|
|
184665
|
+
/* harmony import */ var _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./curve/CurveExtendMode */ "../../core/geometry/lib/esm/curve/CurveExtendMode.js");
|
|
184666
|
+
/* harmony import */ var _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./curve/CurveCollection */ "../../core/geometry/lib/esm/curve/CurveCollection.js");
|
|
184667
|
+
/* harmony import */ var _curve_CurveCurve__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./curve/CurveCurve */ "../../core/geometry/lib/esm/curve/CurveCurve.js");
|
|
184668
|
+
/* harmony import */ var _curve_CurveCurveIntersectXY__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./curve/CurveCurveIntersectXY */ "../../core/geometry/lib/esm/curve/CurveCurveIntersectXY.js");
|
|
184669
|
+
/* harmony import */ var _curve_CurveCurveIntersectXYZ__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./curve/CurveCurveIntersectXYZ */ "../../core/geometry/lib/esm/curve/CurveCurveIntersectXYZ.js");
|
|
184670
|
+
/* harmony import */ var _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./curve/CurveLocationDetail */ "../../core/geometry/lib/esm/curve/CurveLocationDetail.js");
|
|
184671
|
+
/* harmony import */ var _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./curve/CurveFactory */ "../../core/geometry/lib/esm/curve/CurveFactory.js");
|
|
184672
|
+
/* harmony import */ var _curve_CurvePrimitive__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./curve/CurvePrimitive */ "../../core/geometry/lib/esm/curve/CurvePrimitive.js");
|
|
184673
|
+
/* harmony import */ var _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./curve/CurveProcessor */ "../../core/geometry/lib/esm/curve/CurveProcessor.js");
|
|
184674
|
+
/* harmony import */ var _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./curve/GeometryQuery */ "../../core/geometry/lib/esm/curve/GeometryQuery.js");
|
|
184675
|
+
/* harmony import */ var _curve_LineSegment3d__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./curve/LineSegment3d */ "../../core/geometry/lib/esm/curve/LineSegment3d.js");
|
|
184676
|
+
/* harmony import */ var _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./curve/LineString3d */ "../../core/geometry/lib/esm/curve/LineString3d.js");
|
|
184677
|
+
/* harmony import */ var _curve_Loop__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./curve/Loop */ "../../core/geometry/lib/esm/curve/Loop.js");
|
|
184678
|
+
/* harmony import */ var _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./curve/ParityRegion */ "../../core/geometry/lib/esm/curve/ParityRegion.js");
|
|
184679
|
+
/* harmony import */ var _curve_Path__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./curve/Path */ "../../core/geometry/lib/esm/curve/Path.js");
|
|
184680
|
+
/* harmony import */ var _curve_RegionMomentsXY__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./curve/RegionMomentsXY */ "../../core/geometry/lib/esm/curve/RegionMomentsXY.js");
|
|
184681
|
+
/* harmony import */ var _curve_RegionOps__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./curve/RegionOps */ "../../core/geometry/lib/esm/curve/RegionOps.js");
|
|
184682
|
+
/* harmony import */ var _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./curve/internalContexts/PolygonOffsetContext */ "../../core/geometry/lib/esm/curve/internalContexts/PolygonOffsetContext.js");
|
|
184683
|
+
/* harmony import */ var _curve_PointString3d__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./curve/PointString3d */ "../../core/geometry/lib/esm/curve/PointString3d.js");
|
|
184684
|
+
/* harmony import */ var _curve_ProxyCurve__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./curve/ProxyCurve */ "../../core/geometry/lib/esm/curve/ProxyCurve.js");
|
|
184685
|
+
/* harmony import */ var _curve_StrokeOptions__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./curve/StrokeOptions */ "../../core/geometry/lib/esm/curve/StrokeOptions.js");
|
|
184686
|
+
/* harmony import */ var _curve_spiral_TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./curve/spiral/TransitionSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/TransitionSpiral3d.js");
|
|
184687
|
+
/* harmony import */ var _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./curve/spiral/IntegratedSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/IntegratedSpiral3d.js");
|
|
184688
|
+
/* harmony import */ var _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./curve/spiral/DirectSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/DirectSpiral3d.js");
|
|
184689
|
+
/* harmony import */ var _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./curve/UnionRegion */ "../../core/geometry/lib/esm/curve/UnionRegion.js");
|
|
184690
|
+
/* harmony import */ var _curve_Query_StrokeCountMap__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./curve/Query/StrokeCountMap */ "../../core/geometry/lib/esm/curve/Query/StrokeCountMap.js");
|
|
184691
|
+
/* harmony import */ var _solid_Box__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./solid/Box */ "../../core/geometry/lib/esm/solid/Box.js");
|
|
184692
|
+
/* harmony import */ var _solid_Cone__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./solid/Cone */ "../../core/geometry/lib/esm/solid/Cone.js");
|
|
184693
|
+
/* harmony import */ var _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./solid/LinearSweep */ "../../core/geometry/lib/esm/solid/LinearSweep.js");
|
|
184694
|
+
/* harmony import */ var _solid_RotationalSweep__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./solid/RotationalSweep */ "../../core/geometry/lib/esm/solid/RotationalSweep.js");
|
|
184695
|
+
/* harmony import */ var _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./solid/RuledSweep */ "../../core/geometry/lib/esm/solid/RuledSweep.js");
|
|
184696
|
+
/* harmony import */ var _solid_SolidPrimitive__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./solid/SolidPrimitive */ "../../core/geometry/lib/esm/solid/SolidPrimitive.js");
|
|
184697
|
+
/* harmony import */ var _solid_Sphere__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./solid/Sphere */ "../../core/geometry/lib/esm/solid/Sphere.js");
|
|
184698
|
+
/* harmony import */ var _solid_SweepContour__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./solid/SweepContour */ "../../core/geometry/lib/esm/solid/SweepContour.js");
|
|
184699
|
+
/* harmony import */ var _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./solid/TorusPipe */ "../../core/geometry/lib/esm/solid/TorusPipe.js");
|
|
184700
|
+
/* harmony import */ var _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./bspline/AkimaCurve3d */ "../../core/geometry/lib/esm/bspline/AkimaCurve3d.js");
|
|
184701
|
+
/* harmony import */ var _bspline_Bezier1dNd__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./bspline/Bezier1dNd */ "../../core/geometry/lib/esm/bspline/Bezier1dNd.js");
|
|
184702
|
+
/* harmony import */ var _bspline_BezierCurveBase__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./bspline/BezierCurveBase */ "../../core/geometry/lib/esm/bspline/BezierCurveBase.js");
|
|
184703
|
+
/* harmony import */ var _bspline_BezierCurve3d__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./bspline/BezierCurve3d */ "../../core/geometry/lib/esm/bspline/BezierCurve3d.js");
|
|
184704
|
+
/* harmony import */ var _bspline_BezierCurve3dH__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./bspline/BezierCurve3dH */ "../../core/geometry/lib/esm/bspline/BezierCurve3dH.js");
|
|
184705
|
+
/* harmony import */ var _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./bspline/BSplineCurve */ "../../core/geometry/lib/esm/bspline/BSplineCurve.js");
|
|
184706
|
+
/* harmony import */ var _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./bspline/BSplineCurveOps */ "../../core/geometry/lib/esm/bspline/BSplineCurveOps.js");
|
|
184707
|
+
/* harmony import */ var _bspline_BSpline1dNd__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./bspline/BSpline1dNd */ "../../core/geometry/lib/esm/bspline/BSpline1dNd.js");
|
|
184708
|
+
/* harmony import */ var _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./bspline/BSplineCurve3dH */ "../../core/geometry/lib/esm/bspline/BSplineCurve3dH.js");
|
|
184709
|
+
/* harmony import */ var _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./bspline/BSplineSurface */ "../../core/geometry/lib/esm/bspline/BSplineSurface.js");
|
|
184710
|
+
/* harmony import */ var _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./bspline/InterpolationCurve3d */ "../../core/geometry/lib/esm/bspline/InterpolationCurve3d.js");
|
|
184711
|
+
/* harmony import */ var _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./bspline/KnotVector */ "../../core/geometry/lib/esm/bspline/KnotVector.js");
|
|
184712
|
+
/* harmony import */ var _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./polyface/AuxData */ "../../core/geometry/lib/esm/polyface/AuxData.js");
|
|
184713
|
+
/* harmony import */ var _polyface_BoxTopology__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./polyface/BoxTopology */ "../../core/geometry/lib/esm/polyface/BoxTopology.js");
|
|
184714
|
+
/* harmony import */ var _polyface_FacetFaceData__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./polyface/FacetFaceData */ "../../core/geometry/lib/esm/polyface/FacetFaceData.js");
|
|
184715
|
+
/* harmony import */ var _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./polyface/Polyface */ "../../core/geometry/lib/esm/polyface/Polyface.js");
|
|
184716
|
+
/* harmony import */ var _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./polyface/IndexedPolyfaceVisitor */ "../../core/geometry/lib/esm/polyface/IndexedPolyfaceVisitor.js");
|
|
184717
|
+
/* harmony import */ var _polyface_PolyfaceBuilder__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./polyface/PolyfaceBuilder */ "../../core/geometry/lib/esm/polyface/PolyfaceBuilder.js");
|
|
184718
|
+
/* harmony import */ var _polyface_PolyfaceData__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./polyface/PolyfaceData */ "../../core/geometry/lib/esm/polyface/PolyfaceData.js");
|
|
184719
|
+
/* harmony import */ var _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./polyface/PolyfaceQuery */ "../../core/geometry/lib/esm/polyface/PolyfaceQuery.js");
|
|
184720
|
+
/* harmony import */ var _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./polyface/PolyfaceClip */ "../../core/geometry/lib/esm/polyface/PolyfaceClip.js");
|
|
184721
|
+
/* harmony import */ var _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./polyface/TaggedNumericData */ "../../core/geometry/lib/esm/polyface/TaggedNumericData.js");
|
|
184722
|
+
/* harmony import */ var _topology_Graph__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./topology/Graph */ "../../core/geometry/lib/esm/topology/Graph.js");
|
|
184723
|
+
/* harmony import */ var _topology_Triangulation__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./topology/Triangulation */ "../../core/geometry/lib/esm/topology/Triangulation.js");
|
|
184724
|
+
/* harmony import */ var _topology_SpaceTriangulation__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./topology/SpaceTriangulation */ "../../core/geometry/lib/esm/topology/SpaceTriangulation.js");
|
|
184725
|
+
/* harmony import */ var _serialization_IModelJsonSchema__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./serialization/IModelJsonSchema */ "../../core/geometry/lib/esm/serialization/IModelJsonSchema.js");
|
|
184726
|
+
/* harmony import */ var _serialization_DeepCompare__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./serialization/DeepCompare */ "../../core/geometry/lib/esm/serialization/DeepCompare.js");
|
|
184727
|
+
/* harmony import */ var _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./serialization/GeometrySamples */ "../../core/geometry/lib/esm/serialization/GeometrySamples.js");
|
|
184728
|
+
/* harmony import */ var _serialization_BentleyGeometryFlatBuffer__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./serialization/BentleyGeometryFlatBuffer */ "../../core/geometry/lib/esm/serialization/BentleyGeometryFlatBuffer.js");
|
|
184920
184729
|
/*---------------------------------------------------------------------------------------------
|
|
184921
184730
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
184922
184731
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -184946,6 +184755,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
184946
184755
|
* * Transform -- an origin and axes.
|
|
184947
184756
|
* * Range1d, Range2d, Range3d -- subsets of 1d, 2d, and 3d space bounded by low and high values.
|
|
184948
184757
|
* * Ray3d -- a ray defined by origin and direction vector
|
|
184758
|
+
* * Plane3d -- an abstract base class extended by Plane3dByOriginAndNormal, Plane3dByOriginAndUnitNormal, Point4d, and ClipPlane
|
|
184949
184759
|
* * Plane3dByOriginAndUnitNormal -- a plane defined by an origin and a single vector which is perpendicular to the plane
|
|
184950
184760
|
* * plane3dByOriginAndVectors -- a plane defined by an origin and two vectors in the plane.
|
|
184951
184761
|
* * Angles
|
|
@@ -185164,6 +184974,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
185164
184974
|
|
|
185165
184975
|
|
|
185166
184976
|
|
|
184977
|
+
|
|
185167
184978
|
|
|
185168
184979
|
|
|
185169
184980
|
/***/ }),
|
|
@@ -212108,6 +211919,113 @@ OrderedRotationAngles._sTreatVectorsAsColumns = false;
|
|
|
212108
211919
|
|
|
212109
211920
|
|
|
212110
211921
|
|
|
211922
|
+
/***/ }),
|
|
211923
|
+
|
|
211924
|
+
/***/ "../../core/geometry/lib/esm/geometry3d/Plane3d.js":
|
|
211925
|
+
/*!*********************************************************!*\
|
|
211926
|
+
!*** ../../core/geometry/lib/esm/geometry3d/Plane3d.js ***!
|
|
211927
|
+
\*********************************************************/
|
|
211928
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
211929
|
+
|
|
211930
|
+
"use strict";
|
|
211931
|
+
__webpack_require__.r(__webpack_exports__);
|
|
211932
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
211933
|
+
/* harmony export */ "Plane3d": () => (/* binding */ Plane3d)
|
|
211934
|
+
/* harmony export */ });
|
|
211935
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
211936
|
+
/* harmony import */ var _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
211937
|
+
/*---------------------------------------------------------------------------------------------
|
|
211938
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
211939
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
211940
|
+
*--------------------------------------------------------------------------------------------*/
|
|
211941
|
+
/** @packageDocumentation
|
|
211942
|
+
* @module CartesianGeometry
|
|
211943
|
+
*/
|
|
211944
|
+
|
|
211945
|
+
|
|
211946
|
+
/**
|
|
211947
|
+
* Plane3d is the abstract base class for multiple 3d plane representations:
|
|
211948
|
+
* * [[Plane3dByOriginAndUnitNormal]] -- plane defined by origin and normal, with no preferred in-plane directions
|
|
211949
|
+
* * [[Plane3dByOriginAndVectors]] -- plane defined by origin and 2 vectors in the plane, with normal implied by the vectors' cross product
|
|
211950
|
+
* * [[Point4d]] -- homogeneous form of xyzw plane.
|
|
211951
|
+
* * [[ClipPlane]] -- implicit plane with additional markup as used by compound clip structures such as [[ConvexClipPlaneSet]] and [[UnionOfConvexClipPlaneSets]]
|
|
211952
|
+
*
|
|
211953
|
+
* As an abstract base class, Plane3d demands that its derived classes implement queries to answer questions
|
|
211954
|
+
* about the plane's normal and the altitude of points above or below the plane. (Altitude is measured perpendicular to the plane.)
|
|
211955
|
+
* These abstract methods are:
|
|
211956
|
+
* * altitude(Point3d), altitudeXYZ(x,y,z), and altitudeXYZW(Point4d) -- evaluate altitude
|
|
211957
|
+
* * normalX(), normalY(), normalZ() -- return components of the plane's normal vector.
|
|
211958
|
+
* * velocity(Vector3d), velocityXYZ(x,y,z) -- return dot product of the input vector with the plane normal.
|
|
211959
|
+
* * projectPointToPlane (spacePoint: Point3d) -- return projection of spacePoint into the plane.
|
|
211960
|
+
*
|
|
211961
|
+
* The Plane3d base class also provides implementations of several queries which it can implement by calling the abstract queries.
|
|
211962
|
+
* * Derived classes may choose to override these default implementations using private knowledge of what they have stored.
|
|
211963
|
+
* * isPointInPlane(spacePoint, tolerance?) -- test if spacePoint is in the plane with tolerance. Default tolerance is small metric distance
|
|
211964
|
+
* * classifyAltitude (spacePoint, tolerance?), classifyAltitudeXYZ (x,y,z,tolerance?) -- return -1,0,1 indicating if spacePoint's altitude
|
|
211965
|
+
* is negative, near zero, or positive.
|
|
211966
|
+
*
|
|
211967
|
+
* Notes about scaling and signs in methods that compute altitudes, normal components and velocities:
|
|
211968
|
+
* * The term "altitude" indicates a _signed_ distance from the plane.
|
|
211969
|
+
* * altitude zero is _on_ the plane
|
|
211970
|
+
* * positive altitudes are on one side
|
|
211971
|
+
* * negatives are on the other.
|
|
211972
|
+
* * Altitude values and normal components are not strictly required to be true cartesian distance. If the calling code happens to use "distance scaled by 1000X" it
|
|
211973
|
+
* understands that it can be OK for its plane implementation to have that scaling.
|
|
211974
|
+
* * By convention, derived classes whose definitions (normals and vectors in plane) are simple cartesian are expected
|
|
211975
|
+
* to return true distances. This applies to:
|
|
211976
|
+
* * [[Plane3dByOriginAndUnitNormal]] and [[ClipPlane]]
|
|
211977
|
+
* * These maintain a stored unit normal so the altitude calculations are inherently true cartesian distance.
|
|
211978
|
+
* * [[Plane3dByOriginAndVectors]] -- this is a bit expensive because
|
|
211979
|
+
* * the normal is the cross product of the defining vectors.
|
|
211980
|
+
* * that cross product is not typically unit
|
|
211981
|
+
* * normalization adds to the cost of computing off-plane distances
|
|
211982
|
+
* * Since a main purpose of using this class is often to navigate a skewed, non-unit grid, occasional off-plane queries are not likely to be important.
|
|
211983
|
+
* * "4 dimensional" (homogeneous coordinate planes) ([[Point4d]] and [[PlaneByOriginAndVectors4d]])
|
|
211984
|
+
* * typically do _not_ force their coefficients to any distance-based normalization
|
|
211985
|
+
* * are typically used for calculations in spaces with skewing effects do to perspective, and true distances are not required.
|
|
211986
|
+
* * In all classes, the `weightedAltitude` method is free to be scaled distance.
|
|
211987
|
+
* @public
|
|
211988
|
+
*/
|
|
211989
|
+
class Plane3d {
|
|
211990
|
+
/** Returns true if spacePoint is within distance tolerance of the plane. */
|
|
211991
|
+
isPointInPlane(spacePoint, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistance) {
|
|
211992
|
+
return Math.abs(this.altitude(spacePoint)) <= tolerance;
|
|
211993
|
+
}
|
|
211994
|
+
/** return a value -1, 0, 1 giving a signed indicator of whether the toleranced altitude of the point is
|
|
211995
|
+
* negative, near zero, or positive.
|
|
211996
|
+
*
|
|
211997
|
+
*/
|
|
211998
|
+
classifyAltitude(point, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistance) {
|
|
211999
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.split3Way01(this.altitude(point), tolerance);
|
|
212000
|
+
}
|
|
212001
|
+
/** return a value -1, 0, 1 giving a signed indicator of whether the toleranced altitude of x,y,z is
|
|
212002
|
+
* negative, near zero, or positive.
|
|
212003
|
+
*
|
|
212004
|
+
*/
|
|
212005
|
+
classifyAltitudeXYZ(x, y, z, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistance) {
|
|
212006
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.split3Way01(this.altitudeXYZ(x, y, z), tolerance);
|
|
212007
|
+
}
|
|
212008
|
+
/**
|
|
212009
|
+
* Return the unit normal for the plane.
|
|
212010
|
+
* * The abstract base class implementation assembles the normal from normalX, normalY, normalZ calls.
|
|
212011
|
+
* * Derived classes should (but are not required to) override for maximum efficiency if the separate normal calls cause repeated normalization.
|
|
212012
|
+
* @param result
|
|
212013
|
+
*/
|
|
212014
|
+
getUnitNormal(result) {
|
|
212015
|
+
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.createNormalized(this.normalX(), this.normalY(), this.normalZ(), result);
|
|
212016
|
+
}
|
|
212017
|
+
/**
|
|
212018
|
+
* Return any point on the plane.
|
|
212019
|
+
* * Default implementation projects the origin (0,0,0) to the plane.
|
|
212020
|
+
* * Classes that have a preferred origin for their plane should override.
|
|
212021
|
+
* * Classes with a purely implicit equation of their plane can accept the default implementation
|
|
212022
|
+
* */
|
|
212023
|
+
getAnyPointOnPlane(result) {
|
|
212024
|
+
return this.projectPointToPlane(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(0, 0, 0), result);
|
|
212025
|
+
}
|
|
212026
|
+
}
|
|
212027
|
+
|
|
212028
|
+
|
|
212111
212029
|
/***/ }),
|
|
212112
212030
|
|
|
212113
212031
|
/***/ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndUnitNormal.js":
|
|
@@ -212121,10 +212039,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
212121
212039
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
212122
212040
|
/* harmony export */ "Plane3dByOriginAndUnitNormal": () => (/* binding */ Plane3dByOriginAndUnitNormal)
|
|
212123
212041
|
/* harmony export */ });
|
|
212124
|
-
/* harmony import */ var
|
|
212125
|
-
/* harmony import */ var
|
|
212126
|
-
/* harmony import */ var
|
|
212127
|
-
/* harmony import */ var
|
|
212042
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
212043
|
+
/* harmony import */ var _Plane3d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
212044
|
+
/* harmony import */ var _Matrix3d__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
|
|
212045
|
+
/* harmony import */ var _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
212046
|
+
/* harmony import */ var _Transform__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
212128
212047
|
/*---------------------------------------------------------------------------------------------
|
|
212129
212048
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
212130
212049
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -212136,21 +212055,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
212136
212055
|
|
|
212137
212056
|
|
|
212138
212057
|
|
|
212058
|
+
|
|
212139
212059
|
/**
|
|
212140
212060
|
* A plane defined by
|
|
212141
212061
|
* * Any point on the plane.
|
|
212142
212062
|
* * a unit normal.
|
|
212143
212063
|
* @public
|
|
212144
212064
|
*/
|
|
212145
|
-
class Plane3dByOriginAndUnitNormal {
|
|
212065
|
+
class Plane3dByOriginAndUnitNormal extends _Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
|
|
212146
212066
|
// constructor captures references !!!
|
|
212147
212067
|
constructor(origin, normal) {
|
|
212068
|
+
super();
|
|
212148
212069
|
this._origin = origin;
|
|
212149
212070
|
this._normal = normal;
|
|
212150
212071
|
}
|
|
212151
212072
|
// This is private because it does not check validity of the unit vector.
|
|
212152
212073
|
static _create(x, y, z, u, v, w) {
|
|
212153
|
-
return new Plane3dByOriginAndUnitNormal(
|
|
212074
|
+
return new Plane3dByOriginAndUnitNormal(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(x, y, z), _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.create(u, v, w));
|
|
212154
212075
|
}
|
|
212155
212076
|
/**
|
|
212156
212077
|
* Create a plane parallel to the XY plane
|
|
@@ -212193,20 +212114,33 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
212193
212114
|
}
|
|
212194
212115
|
return new Plane3dByOriginAndUnitNormal(origin.clone(), normalized);
|
|
212195
212116
|
}
|
|
212117
|
+
/** create a new Plane3dByOriginAndUnitNormal from a variety of plane types.
|
|
212118
|
+
* * The inputs are NOT captured.
|
|
212119
|
+
* * Returns undefined if the normal vector is all zeros.
|
|
212120
|
+
*/
|
|
212121
|
+
static createFrom(source, result) {
|
|
212122
|
+
if (source instanceof Plane3dByOriginAndUnitNormal)
|
|
212123
|
+
return source.clone(result);
|
|
212124
|
+
const normal = source.getUnitNormal();
|
|
212125
|
+
if (normal === undefined)
|
|
212126
|
+
return undefined;
|
|
212127
|
+
const origin = source.getAnyPointOnPlane();
|
|
212128
|
+
return this.create(origin, normal, result);
|
|
212129
|
+
}
|
|
212196
212130
|
/** create a new Plane3dByOriginAndUnitNormal with direct coordinates of origin and normal.
|
|
212197
212131
|
* * Returns undefined if the normal vector is all zeros.
|
|
212198
212132
|
* * If unable to normalize return undefined. (And if result is given it is left unchanged)
|
|
212199
212133
|
*/
|
|
212200
212134
|
static createXYZUVW(ax, ay, az, ux, uy, uz, result) {
|
|
212201
|
-
const magU =
|
|
212202
|
-
if (magU <
|
|
212135
|
+
const magU = _Geometry__WEBPACK_IMPORTED_MODULE_2__.Geometry.hypotenuseXYZ(ux, uy, uz);
|
|
212136
|
+
if (magU < _Geometry__WEBPACK_IMPORTED_MODULE_2__.Geometry.smallMetricDistance)
|
|
212203
212137
|
return undefined;
|
|
212204
212138
|
if (result) {
|
|
212205
212139
|
result._origin.set(ax, ay, az);
|
|
212206
212140
|
result._normal.set(ux / magU, uy / magU, uz / magU);
|
|
212207
212141
|
return result;
|
|
212208
212142
|
}
|
|
212209
|
-
return new Plane3dByOriginAndUnitNormal(
|
|
212143
|
+
return new Plane3dByOriginAndUnitNormal(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(ax, ay, az), _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.create(ux / magU, uy / magU, uz / magU));
|
|
212210
212144
|
}
|
|
212211
212145
|
/** create a new Plane3dByOriginAndUnitNormal with unit normal (a) in the xy plane (b) perpendicular to the line defined by xy parts of origin to target.
|
|
212212
212146
|
* * origin and normal both have z = 0.
|
|
@@ -212227,7 +212161,7 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
212227
212161
|
result._normal.set(normalAngleFromX.cos(), normalAngleFromX.sin(), 0.0);
|
|
212228
212162
|
return result;
|
|
212229
212163
|
}
|
|
212230
|
-
return new Plane3dByOriginAndUnitNormal(
|
|
212164
|
+
return new Plane3dByOriginAndUnitNormal(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(x, y, 0), _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.create(normalAngleFromX.cos(), normalAngleFromX.sin()));
|
|
212231
212165
|
}
|
|
212232
212166
|
/** Create a plane defined by two points and an in-plane vector.
|
|
212233
212167
|
* @param pointA any point in the plane
|
|
@@ -212240,6 +212174,28 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
212240
212174
|
return new Plane3dByOriginAndUnitNormal(pointA, cross);
|
|
212241
212175
|
return undefined;
|
|
212242
212176
|
}
|
|
212177
|
+
/** Create a plane defined by three points.
|
|
212178
|
+
* @param pointA any point in the plane. This will be the origin.
|
|
212179
|
+
* @param pointB any other point in the plane
|
|
212180
|
+
* @param pointC any third point in the plane but not on the line of pointA and pointB
|
|
212181
|
+
*/
|
|
212182
|
+
static createOriginAndTargets(pointA, pointB, pointC) {
|
|
212183
|
+
const cross = pointA.crossProductToPoints(pointB, pointC);
|
|
212184
|
+
if (cross.tryNormalizeInPlace())
|
|
212185
|
+
return new Plane3dByOriginAndUnitNormal(pointA, cross);
|
|
212186
|
+
return undefined;
|
|
212187
|
+
}
|
|
212188
|
+
/** Create a plane defined by a point and two vectors in the plane
|
|
212189
|
+
* @param pointA any point in the plane
|
|
212190
|
+
* @param vectorB any vector in the plane
|
|
212191
|
+
* @param vectorC any vector in the plane but not parallel to vectorB
|
|
212192
|
+
*/
|
|
212193
|
+
static createOriginAndVectors(pointA, vectorB, vectorC) {
|
|
212194
|
+
const cross = vectorB.crossProduct(vectorC);
|
|
212195
|
+
if (cross.tryNormalizeInPlace())
|
|
212196
|
+
return new Plane3dByOriginAndUnitNormal(pointA, cross);
|
|
212197
|
+
return undefined;
|
|
212198
|
+
}
|
|
212243
212199
|
/** test for (toleranced) equality with `other` */
|
|
212244
212200
|
isAlmostEqual(other) {
|
|
212245
212201
|
return this._origin.isAlmostEqual(other._origin) && this._normal.isAlmostEqual(other._normal);
|
|
@@ -212278,16 +212234,16 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
212278
212234
|
* * x,y axes in plane.
|
|
212279
212235
|
*/
|
|
212280
212236
|
getLocalToWorld() {
|
|
212281
|
-
const axes =
|
|
212282
|
-
return
|
|
212237
|
+
const axes = _Matrix3d__WEBPACK_IMPORTED_MODULE_3__.Matrix3d.createRigidHeadsUp(this._normal, _Geometry__WEBPACK_IMPORTED_MODULE_2__.AxisOrder.ZXY);
|
|
212238
|
+
return _Transform__WEBPACK_IMPORTED_MODULE_4__.Transform.createRefs(this._origin.clone(), axes);
|
|
212283
212239
|
}
|
|
212284
212240
|
/** Return a (singular) transform which projects points to this plane.
|
|
212285
212241
|
*/
|
|
212286
212242
|
getProjectionToPlane() {
|
|
212287
|
-
const axes =
|
|
212243
|
+
const axes = _Matrix3d__WEBPACK_IMPORTED_MODULE_3__.Matrix3d.createIdentity();
|
|
212288
212244
|
axes.addScaledOuterProductInPlace(this._normal, this._normal, -1.0);
|
|
212289
212245
|
axes.markSingular();
|
|
212290
|
-
return
|
|
212246
|
+
return _Transform__WEBPACK_IMPORTED_MODULE_4__.Transform.createFixedPointAndMatrix(this._origin, axes);
|
|
212291
212247
|
}
|
|
212292
212248
|
/** Copy coordinates from the given origin and normal. */
|
|
212293
212249
|
set(origin, normal) {
|
|
@@ -212341,11 +212297,23 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
212341
212297
|
* Return the z component of the normal used to evaluate altitude.
|
|
212342
212298
|
*/
|
|
212343
212299
|
normalZ() { return this._normal.z; }
|
|
212344
|
-
/**
|
|
212300
|
+
/**
|
|
212301
|
+
* Return (a clone of) the unit normal.
|
|
212302
|
+
*/
|
|
212303
|
+
getUnitNormal(result) {
|
|
212304
|
+
return this._normal.clone(result);
|
|
212305
|
+
}
|
|
212306
|
+
/**
|
|
212307
|
+
* Return (a clone of) the origin.
|
|
212308
|
+
*/
|
|
212309
|
+
getAnyPointOnPlane(result) {
|
|
212310
|
+
return this._origin.clone(result);
|
|
212311
|
+
}
|
|
212312
|
+
/** Return the signed altitude of weighted spacePoint above or below the plane. (Below is negative) */
|
|
212345
212313
|
weightedAltitude(spacePoint) {
|
|
212346
212314
|
return this._normal.dotProductStart3dEnd4d(this._origin, spacePoint);
|
|
212347
212315
|
}
|
|
212348
|
-
/** return
|
|
212316
|
+
/** return any point at specified (signed) altitude. */
|
|
212349
212317
|
altitudeToPoint(altitude, result) {
|
|
212350
212318
|
return this._origin.plusScaled(this._normal, altitude, result);
|
|
212351
212319
|
}
|
|
@@ -212369,8 +212337,13 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
212369
212337
|
projectPointToPlane(spacePoint, result) {
|
|
212370
212338
|
return spacePoint.plusScaled(this._normal, -this._normal.dotProductStartEnd(this._origin, spacePoint), result);
|
|
212371
212339
|
}
|
|
212372
|
-
/** Returns true
|
|
212373
|
-
|
|
212340
|
+
/** Returns true if spacePoint is within distance tolerance of the plane.
|
|
212341
|
+
* * This logic is identical to the [[Plane3d]] method but avoids a level of function call.
|
|
212342
|
+
*/
|
|
212343
|
+
isPointInPlane(spacePoint, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_2__.Geometry.smallMetricDistance) {
|
|
212344
|
+
const altitude = this._normal.dotProductStartEnd(this._origin, spacePoint);
|
|
212345
|
+
return Math.abs(altitude) <= tolerance;
|
|
212346
|
+
}
|
|
212374
212347
|
}
|
|
212375
212348
|
|
|
212376
212349
|
|
|
@@ -212387,10 +212360,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
212387
212360
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
212388
212361
|
/* harmony export */ "Plane3dByOriginAndVectors": () => (/* binding */ Plane3dByOriginAndVectors)
|
|
212389
212362
|
/* harmony export */ });
|
|
212390
|
-
/* harmony import */ var
|
|
212391
|
-
/* harmony import */ var
|
|
212392
|
-
/* harmony import */ var
|
|
212393
|
-
/* harmony import */ var
|
|
212363
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
212364
|
+
/* harmony import */ var _Plane3d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
212365
|
+
/* harmony import */ var _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
212366
|
+
/* harmony import */ var _Ray3d__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Ray3d */ "../../core/geometry/lib/esm/geometry3d/Ray3d.js");
|
|
212367
|
+
/* harmony import */ var _Transform__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
212368
|
+
/* harmony import */ var _Matrix3d__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
|
|
212394
212369
|
/*---------------------------------------------------------------------------------------------
|
|
212395
212370
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
212396
212371
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -212402,21 +212377,29 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
212402
212377
|
|
|
212403
212378
|
|
|
212404
212379
|
|
|
212380
|
+
|
|
212381
|
+
|
|
212405
212382
|
/**
|
|
212406
212383
|
* A Plane3dByOriginAndVectors is an origin and a pair of vectors.
|
|
212407
212384
|
* This defines a plane with a (possibly skewed) uv coordinate grid
|
|
212408
212385
|
* * The grid directions (`vectorU` and `vectorV`)
|
|
212409
212386
|
* * are NOT required to be unit vectors.
|
|
212410
212387
|
* * are NOT required to be perpendicular vectors.
|
|
212388
|
+
* * The skewed, non-uniform scaling of the grid directions is the primary focus of this class.
|
|
212389
|
+
* * Queries of altitude, velocity, normalX, normalY, and normalZ use the NORMALIZED cross product of vectorU and vectorV as plane normal.
|
|
212390
|
+
* * Hence these are cartesian distances.
|
|
212391
|
+
* * If numerous calls to these are expected, the repeated normalization may be a performance issue.
|
|
212392
|
+
* * Using a [[Plane3dByOriginAndUnitNormal]] or the rigid transform returned by [[toRigidFrame]] would provide better performance.
|
|
212411
212393
|
* @public
|
|
212412
212394
|
*/
|
|
212413
|
-
class Plane3dByOriginAndVectors {
|
|
212395
|
+
class Plane3dByOriginAndVectors extends _Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
|
|
212414
212396
|
constructor(origin, vectorU, vectorV) {
|
|
212397
|
+
super();
|
|
212415
212398
|
this.origin = origin;
|
|
212416
212399
|
this.vectorU = vectorU;
|
|
212417
212400
|
this.vectorV = vectorV;
|
|
212418
212401
|
}
|
|
212419
|
-
/** create a new plane from origin and vectors. */
|
|
212402
|
+
/** create a new plane from origin and 2 in-plane vectors. */
|
|
212420
212403
|
static createOriginAndVectors(origin, vectorU, vectorV, result) {
|
|
212421
212404
|
if (result) {
|
|
212422
212405
|
result.origin.setFrom(origin);
|
|
@@ -212427,9 +212410,29 @@ class Plane3dByOriginAndVectors {
|
|
|
212427
212410
|
return new Plane3dByOriginAndVectors(origin.clone(), vectorU.clone(), vectorV.clone());
|
|
212428
212411
|
}
|
|
212429
212412
|
/** clone to a new plane. */
|
|
212430
|
-
clone() {
|
|
212413
|
+
clone(result) {
|
|
212414
|
+
if (result !== undefined)
|
|
212415
|
+
result.setOriginAndVectors(this.origin, this.vectorU, this.vectorV);
|
|
212431
212416
|
return new Plane3dByOriginAndVectors(this.origin.clone(), this.vectorU.clone(), this.vectorV.clone());
|
|
212432
212417
|
}
|
|
212418
|
+
/** create a new Plane3dByOriginAndVectors from a variety of plane types.
|
|
212419
|
+
* * The input is NOT captured.
|
|
212420
|
+
*/
|
|
212421
|
+
static createFrom(source, result) {
|
|
212422
|
+
if (source instanceof Plane3dByOriginAndVectors)
|
|
212423
|
+
return source.clone(result);
|
|
212424
|
+
const normal = source.getUnitNormal();
|
|
212425
|
+
if (normal === undefined)
|
|
212426
|
+
return undefined;
|
|
212427
|
+
const origin = source.getAnyPointOnPlane();
|
|
212428
|
+
const vectorU = _Matrix3d__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.createPerpendicularVectorFavorXYPlane(normal);
|
|
212429
|
+
if (vectorU.tryNormalizeInPlace()) {
|
|
212430
|
+
const vectorV = normal.unitCrossProduct(vectorU);
|
|
212431
|
+
if (vectorV !== undefined)
|
|
212432
|
+
return new Plane3dByOriginAndVectors(origin, vectorU, vectorV);
|
|
212433
|
+
}
|
|
212434
|
+
return undefined;
|
|
212435
|
+
}
|
|
212433
212436
|
/**
|
|
212434
212437
|
* Return a Plane3dByOriginAndVectors, with
|
|
212435
212438
|
* * origin is the translation (aka origin) from the Transform
|
|
@@ -212484,7 +212487,7 @@ class Plane3dByOriginAndVectors {
|
|
|
212484
212487
|
static createOriginAndVectorsXYZ(x0, y0, z0, ux, uy, uz, vx, vy, vz, result) {
|
|
212485
212488
|
if (result)
|
|
212486
212489
|
return result.setOriginAndVectorsXYZ(x0, y0, z0, ux, uy, uz, vx, vy, vz);
|
|
212487
|
-
return new Plane3dByOriginAndVectors(
|
|
212490
|
+
return new Plane3dByOriginAndVectors(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(x0, y0, z0), _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(ux, uy, uz), _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(vx, vy, vz));
|
|
212488
212491
|
}
|
|
212489
212492
|
/** Define a plane by three points in the plane.
|
|
212490
212493
|
* @param origin origin for the parameterization.
|
|
@@ -212515,7 +212518,7 @@ class Plane3dByOriginAndVectors {
|
|
|
212515
212518
|
static createOriginAndVectorsWeightedArrays(originW, vectorUw, vectorVw, result) {
|
|
212516
212519
|
const w = originW[3];
|
|
212517
212520
|
result = Plane3dByOriginAndVectors.createXYPlane(result);
|
|
212518
|
-
if (
|
|
212521
|
+
if (_Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.isSmallMetricDistance(w))
|
|
212519
212522
|
return result;
|
|
212520
212523
|
const dw = 1.0 / w;
|
|
212521
212524
|
const au = vectorUw[3] * dw * dw;
|
|
@@ -212528,8 +212531,8 @@ class Plane3dByOriginAndVectors {
|
|
|
212528
212531
|
// The w parts of the formal xyzw sums are identically 0.
|
|
212529
212532
|
// Here the X' and its w' are taken from each vectorUw and vectorVw
|
|
212530
212533
|
result.origin.set(originW[0] * dw, originW[1] * dw, originW[2] * dw);
|
|
212531
|
-
|
|
212532
|
-
|
|
212534
|
+
_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createAdd2ScaledXYZ(vectorUw[0], vectorUw[1], vectorUw[2], dw, originW[0], originW[1], originW[2], -au, result.vectorU);
|
|
212535
|
+
_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createAdd2ScaledXYZ(vectorVw[0], vectorVw[1], vectorVw[2], dw, originW[0], originW[1], originW[2], -av, result.vectorV);
|
|
212533
212536
|
return result;
|
|
212534
212537
|
}
|
|
212535
212538
|
/**
|
|
@@ -212545,7 +212548,7 @@ class Plane3dByOriginAndVectors {
|
|
|
212545
212548
|
}
|
|
212546
212549
|
/** Return the vector from the plane origin to parametric coordinate (u.v) */
|
|
212547
212550
|
fractionToVector(u, v, result) {
|
|
212548
|
-
return
|
|
212551
|
+
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createAdd2Scaled(this.vectorU, u, this.vectorV, v, result);
|
|
212549
212552
|
}
|
|
212550
212553
|
/** Set coordinates from a json object such as `{origin: [1,2,3], vectorU:[4,5,6], vectorV[3,2,1]}` */
|
|
212551
212554
|
setFromJSON(json) {
|
|
@@ -212583,7 +212586,7 @@ class Plane3dByOriginAndVectors {
|
|
|
212583
212586
|
&& this.vectorU.isAlmostEqual(other.vectorU)
|
|
212584
212587
|
&& this.vectorV.isAlmostEqual(other.vectorV);
|
|
212585
212588
|
}
|
|
212586
|
-
/** Normalize both `vectorU` and `vectorV` in place.
|
|
212589
|
+
/** Normalize both `vectorU` and `vectorV` in place. This does NOT make them perpendicular.
|
|
212587
212590
|
* * Return true if both succeeded.
|
|
212588
212591
|
*/
|
|
212589
212592
|
normalizeInPlace() {
|
|
@@ -212594,19 +212597,32 @@ class Plane3dByOriginAndVectors {
|
|
|
212594
212597
|
/**
|
|
212595
212598
|
* Return (if possible) a unit normal to the plane.
|
|
212596
212599
|
*/
|
|
212600
|
+
getUnitNormal(result) {
|
|
212601
|
+
return this.vectorU.unitCrossProduct(this.vectorV, result);
|
|
212602
|
+
}
|
|
212603
|
+
/**
|
|
212604
|
+
* Return (if possible) a unit normal to the plane.
|
|
212605
|
+
* * This method is the same as getUnitNormal, which was created later as part of the abstract base class Plane3d.
|
|
212606
|
+
*/
|
|
212597
212607
|
unitNormal(result) {
|
|
212598
212608
|
return this.vectorU.unitCrossProduct(this.vectorV, result);
|
|
212599
212609
|
}
|
|
212610
|
+
/**
|
|
212611
|
+
* Return some point on the plane.
|
|
212612
|
+
*/
|
|
212613
|
+
getAnyPointOnPlane(result) {
|
|
212614
|
+
return this.origin.clone(result);
|
|
212615
|
+
}
|
|
212600
212616
|
/**
|
|
212601
212617
|
* Return (if possible) a ray with origin at plane origin, direction as unit normal to the plane.
|
|
212602
212618
|
*/
|
|
212603
212619
|
unitNormalRay(result) {
|
|
212604
212620
|
if (!Plane3dByOriginAndVectors._workVector)
|
|
212605
|
-
Plane3dByOriginAndVectors._workVector =
|
|
212621
|
+
Plane3dByOriginAndVectors._workVector = _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create();
|
|
212606
212622
|
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV, Plane3dByOriginAndVectors._workVector);
|
|
212607
212623
|
if (unitNormal === undefined)
|
|
212608
212624
|
return undefined;
|
|
212609
|
-
return
|
|
212625
|
+
return _Ray3d__WEBPACK_IMPORTED_MODULE_4__.Ray3d.create(this.origin, unitNormal, result);
|
|
212610
212626
|
}
|
|
212611
212627
|
/**
|
|
212612
212628
|
* Create a rigid frame (i.e. frenet frame) with
|
|
@@ -212617,7 +212633,7 @@ class Plane3dByOriginAndVectors {
|
|
|
212617
212633
|
* @param result optional result
|
|
212618
212634
|
*/
|
|
212619
212635
|
toRigidFrame(result) {
|
|
212620
|
-
return
|
|
212636
|
+
return _Transform__WEBPACK_IMPORTED_MODULE_5__.Transform.createRigidFromOriginAndColumns(this.origin, this.vectorU, this.vectorV, _Geometry__WEBPACK_IMPORTED_MODULE_3__.AxisOrder.XYZ, result);
|
|
212621
212637
|
}
|
|
212622
212638
|
/**
|
|
212623
212639
|
* Apply the transform to the origin and vectors in place.
|
|
@@ -212627,6 +212643,95 @@ class Plane3dByOriginAndVectors {
|
|
|
212627
212643
|
transform.multiplyVector(this.vectorU, this.vectorU);
|
|
212628
212644
|
transform.multiplyVector(this.vectorV, this.vectorV);
|
|
212629
212645
|
}
|
|
212646
|
+
// Implement PlaneAltitudeEvaluator methods . . .
|
|
212647
|
+
/**
|
|
212648
|
+
* Return x component of the (normalized!) {vectorU CROSS vectorV}.
|
|
212649
|
+
* Return 0 if the cross product is zero.
|
|
212650
|
+
* */
|
|
212651
|
+
normalX() {
|
|
212652
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
212653
|
+
return unitNormal !== undefined ? unitNormal.x : 0.0;
|
|
212654
|
+
}
|
|
212655
|
+
/**
|
|
212656
|
+
* Return y component of the (normalized!) {vectorU CROSS vectorV}.
|
|
212657
|
+
* Return 0 if the cross product is zero.
|
|
212658
|
+
* */
|
|
212659
|
+
normalY() {
|
|
212660
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
212661
|
+
return unitNormal !== undefined ? unitNormal.y : 0.0;
|
|
212662
|
+
}
|
|
212663
|
+
/**
|
|
212664
|
+
* Return z component of the (normalized!) {vectorU CROSS vectorV}.
|
|
212665
|
+
* Return 0 if the cross product is zero.
|
|
212666
|
+
* */
|
|
212667
|
+
normalZ() {
|
|
212668
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
212669
|
+
return unitNormal !== undefined ? unitNormal.z : 0.0;
|
|
212670
|
+
}
|
|
212671
|
+
/** Return signed cartesian altitude perpendicular to the plane. This uses the normalized cross product as normal. */
|
|
212672
|
+
altitude(xyz) {
|
|
212673
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
212674
|
+
if (unitNormal === undefined)
|
|
212675
|
+
return 0.0;
|
|
212676
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.dotProductXYZXYZ((xyz.x - this.origin.x), (xyz.y - this.origin.y), (xyz.z - this.origin.z), unitNormal.x, unitNormal.y, unitNormal.z);
|
|
212677
|
+
}
|
|
212678
|
+
/** Return signed cartesian altitude perpendicular to the plane. This uses the normalized cross product as normal. */
|
|
212679
|
+
altitudeXYZ(x, y, z) {
|
|
212680
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
212681
|
+
if (unitNormal === undefined)
|
|
212682
|
+
return 0.0;
|
|
212683
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.dotProductXYZXYZ((x - this.origin.x), (y - this.origin.y), (z - this.origin.z), unitNormal.x, unitNormal.y, unitNormal.z);
|
|
212684
|
+
}
|
|
212685
|
+
/** Return signed projection of the input vector to the plane normal. This uses the normalized cross product as normal. */
|
|
212686
|
+
velocity(xyzVector) {
|
|
212687
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
212688
|
+
if (unitNormal === undefined)
|
|
212689
|
+
return 0.0;
|
|
212690
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.dotProductXYZXYZ(xyzVector.x, xyzVector.y, xyzVector.z, unitNormal.x, unitNormal.y, unitNormal.z);
|
|
212691
|
+
}
|
|
212692
|
+
/** Return signed projection of the input vector to the plane normal. This uses the normalized cross product as normal. */
|
|
212693
|
+
velocityXYZ(x, y, z) {
|
|
212694
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
212695
|
+
if (unitNormal === undefined)
|
|
212696
|
+
return 0.0;
|
|
212697
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.dotProductXYZXYZ(x, y, z, unitNormal.x, unitNormal.y, unitNormal.z);
|
|
212698
|
+
}
|
|
212699
|
+
/** Return triple product of homogeneous difference {(xyzw - w * origin)} with vectorU and vectorV.
|
|
212700
|
+
* * In the usual manner of homogeneous calculations, this is proportional to true cartesian distance from the plane but is not a physical distance.
|
|
212701
|
+
*/
|
|
212702
|
+
weightedAltitude(xyzw) {
|
|
212703
|
+
const w = xyzw.w;
|
|
212704
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.tripleProduct((xyzw.x - this.origin.x * w), (xyzw.y - this.origin.y * w), (xyzw.z - this.origin.z * w), this.vectorU.x, this.vectorU.y, this.vectorU.z, this.vectorV.x, this.vectorV.y, this.vectorV.z);
|
|
212705
|
+
}
|
|
212706
|
+
/**
|
|
212707
|
+
* Return the projection of spacePoint onto the plane.
|
|
212708
|
+
* If the plane is degenerate to a ray, project to the ray.
|
|
212709
|
+
* If the plane is degenerate to its origin, return the point
|
|
212710
|
+
*/
|
|
212711
|
+
projectPointToPlane(spacePoint, result) {
|
|
212712
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
212713
|
+
if (unitNormal !== undefined) {
|
|
212714
|
+
const w = unitNormal.dotProductStartEnd(this.origin, spacePoint);
|
|
212715
|
+
return spacePoint.plusScaled(unitNormal, -w, result);
|
|
212716
|
+
}
|
|
212717
|
+
// uh oh. vectorU and vectorV are colinear or zero.
|
|
212718
|
+
// project to ray defined by the longer one, or just to origin.
|
|
212719
|
+
const dotUU = this.vectorU.magnitudeSquared();
|
|
212720
|
+
const dotVV = this.vectorV.magnitudeSquared();
|
|
212721
|
+
if (dotUU >= dotVV) {
|
|
212722
|
+
const dotUW = this.vectorU.dotProductStartEnd(this.origin, spacePoint);
|
|
212723
|
+
const f = _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.conditionalDivideCoordinate(dotUW, dotUU, 0.0);
|
|
212724
|
+
if (f !== undefined)
|
|
212725
|
+
return spacePoint.plusScaled(this.vectorU, f, result);
|
|
212726
|
+
}
|
|
212727
|
+
else {
|
|
212728
|
+
const dotVW = this.vectorV.dotProductStartEnd(this.origin, spacePoint);
|
|
212729
|
+
const f = _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.conditionalDivideCoordinate(dotVW, dotVV, 0.0);
|
|
212730
|
+
if (f !== undefined)
|
|
212731
|
+
return spacePoint.plusScaled(this.vectorV, f, result);
|
|
212732
|
+
}
|
|
212733
|
+
return this.origin.clone(result);
|
|
212734
|
+
}
|
|
212630
212735
|
}
|
|
212631
212736
|
|
|
212632
212737
|
|
|
@@ -213836,6 +213941,15 @@ class XYZ {
|
|
|
213836
213941
|
&& _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.y, y, tol)
|
|
213837
213942
|
&& _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.z, z, tol);
|
|
213838
213943
|
}
|
|
213944
|
+
/**
|
|
213945
|
+
* Return true if this and {other + vector*scale} have equal x,y,z parts within Geometry.smallMetricDistance.
|
|
213946
|
+
* * this method is useful in testing "point on ray" without explicitly constructing the projection point
|
|
213947
|
+
*/
|
|
213948
|
+
isAlmostEqualPointPlusScaledVector(other, vector, scale, tol) {
|
|
213949
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.x, other.x + vector.x * scale, tol)
|
|
213950
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.y, other.y + vector.y * scale, tol)
|
|
213951
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.z, other.z + vector.z * scale, tol);
|
|
213952
|
+
}
|
|
213839
213953
|
/** Return true if this and other have equal x,y parts within Geometry.smallMetricDistance. */
|
|
213840
213954
|
isAlmostEqualXY(other, tol) {
|
|
213841
213955
|
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.x, other.x, tol)
|
|
@@ -214368,6 +214482,17 @@ class Vector3d extends XYZ {
|
|
|
214368
214482
|
static createCrossProductToPoints(origin, pointA, pointB, result) {
|
|
214369
214483
|
return Vector3d.createCrossProduct(pointA.x - origin.x, pointA.y - origin.y, pointA.z - origin.z, pointB.x - origin.x, pointB.y - origin.y, pointB.z - origin.z, result);
|
|
214370
214484
|
}
|
|
214485
|
+
/**
|
|
214486
|
+
* Return the NORMALIZED cross product of the vectors from origin to pointA and pointB, or undefined
|
|
214487
|
+
*
|
|
214488
|
+
* * the result is a vector
|
|
214489
|
+
* * the result is perpendicular to both vectors, with right hand orientation
|
|
214490
|
+
* * the magnitude of the vector is twice the area of the triangle.
|
|
214491
|
+
*/
|
|
214492
|
+
static createUnitCrossProductToPoints(origin, pointA, pointB, result) {
|
|
214493
|
+
const vector = Vector3d.createCrossProduct(pointA.x - origin.x, pointA.y - origin.y, pointA.z - origin.z, pointB.x - origin.x, pointB.y - origin.y, pointB.z - origin.z, result);
|
|
214494
|
+
return vector.normalize();
|
|
214495
|
+
}
|
|
214371
214496
|
/**
|
|
214372
214497
|
* Return a vector defined by polar coordinates distance and angle from x axis
|
|
214373
214498
|
* @param r distance measured from origin
|
|
@@ -219908,10 +220033,28 @@ class Ray3d {
|
|
|
219908
220033
|
}
|
|
219909
220034
|
return new Ray3d(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_0__.Point3d.createZero(), _Point3dVector3d__WEBPACK_IMPORTED_MODULE_0__.Vector3d.createZero());
|
|
219910
220035
|
}
|
|
219911
|
-
/** Test for nearly equal
|
|
220036
|
+
/** Test for nearly equal Ray3d objects.
|
|
220037
|
+
* * This tests for near equality of origin and direction -- i.e. member-by-member comparison.
|
|
220038
|
+
* * Use [[isAlmostEqualPointSet]] to allow origins to be anywhere along the common ray and to have to allow the directions to be scaled or opposing.
|
|
220039
|
+
*/
|
|
219912
220040
|
isAlmostEqual(other) {
|
|
219913
220041
|
return this.origin.isAlmostEqual(other.origin) && this.direction.isAlmostEqual(other.direction);
|
|
219914
220042
|
}
|
|
220043
|
+
/** Test for nearly equal rays, allowing origin float and direction scaling.
|
|
220044
|
+
* * Use [[isAlmostEqual]] to require member-by-member comparison.
|
|
220045
|
+
*/
|
|
220046
|
+
isAlmostEqualPointSet(other) {
|
|
220047
|
+
if (!this.direction.isParallelTo(other.direction, true))
|
|
220048
|
+
return false;
|
|
220049
|
+
// In exact math, it is not possible for one origin to be on the other ray but not vice versa. But we'll test both ways.
|
|
220050
|
+
let workPoint = this.projectPointToRay(other.origin);
|
|
220051
|
+
if (!other.origin.isAlmostEqualMetric(workPoint))
|
|
220052
|
+
return false;
|
|
220053
|
+
workPoint = other.projectPointToRay(this.origin);
|
|
220054
|
+
if (!this.origin.isAlmostEqualMetric(workPoint))
|
|
220055
|
+
return false;
|
|
220056
|
+
return true;
|
|
220057
|
+
}
|
|
219915
220058
|
/** Create a ray from origin and direction. */
|
|
219916
220059
|
static create(origin, direction, result) {
|
|
219917
220060
|
if (result) {
|
|
@@ -223493,12 +223636,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
223493
223636
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
223494
223637
|
/* harmony export */ "Point4d": () => (/* binding */ Point4d)
|
|
223495
223638
|
/* harmony export */ });
|
|
223496
|
-
/* harmony import */ var
|
|
223497
|
-
/* harmony import */ var
|
|
223498
|
-
/* harmony import */ var
|
|
223499
|
-
/* harmony import */ var
|
|
223500
|
-
/* harmony import */ var
|
|
223501
|
-
/* harmony import */ var
|
|
223639
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
223640
|
+
/* harmony import */ var _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../geometry3d/Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
223641
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../geometry3d/Plane3dByOriginAndUnitNormal */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndUnitNormal.js");
|
|
223642
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../geometry3d/Plane3dByOriginAndVectors */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndVectors.js");
|
|
223643
|
+
/* harmony import */ var _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../geometry3d/Point2dVector2d */ "../../core/geometry/lib/esm/geometry3d/Point2dVector2d.js");
|
|
223644
|
+
/* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
223645
|
+
/* harmony import */ var _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../geometry3d/Ray3d */ "../../core/geometry/lib/esm/geometry3d/Ray3d.js");
|
|
223502
223646
|
/*---------------------------------------------------------------------------------------------
|
|
223503
223647
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
223504
223648
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -223512,6 +223656,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
223512
223656
|
|
|
223513
223657
|
|
|
223514
223658
|
|
|
223659
|
+
|
|
223515
223660
|
/**
|
|
223516
223661
|
*
|
|
223517
223662
|
* @param ddg numerator second derivative
|
|
@@ -223533,7 +223678,7 @@ function quotientDerivative2(ddg, dh, ddh, f, df, divH) {
|
|
|
223533
223678
|
* *
|
|
223534
223679
|
* @public
|
|
223535
223680
|
*/
|
|
223536
|
-
class Point4d {
|
|
223681
|
+
class Point4d extends _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
|
|
223537
223682
|
/** Set x,y,z,w of this point. */
|
|
223538
223683
|
set(x = 0, y = 0, z = 0, w = 0) {
|
|
223539
223684
|
this.xyzw[0] = x;
|
|
@@ -223564,6 +223709,7 @@ class Point4d {
|
|
|
223564
223709
|
set w(val) { this.xyzw[3] = val; }
|
|
223565
223710
|
/** Construct from coordinates. */
|
|
223566
223711
|
constructor(x = 0, y = 0, z = 0, w = 0) {
|
|
223712
|
+
super();
|
|
223567
223713
|
this.xyzw = new Float64Array(4);
|
|
223568
223714
|
this.xyzw[0] = x;
|
|
223569
223715
|
this.xyzw[1] = y;
|
|
@@ -223574,6 +223720,15 @@ class Point4d {
|
|
|
223574
223720
|
static create(x = 0, y = 0, z = 0, w = 0, result) {
|
|
223575
223721
|
return result ? result.set(x, y, z, w) : new Point4d(x, y, z, w);
|
|
223576
223722
|
}
|
|
223723
|
+
/**
|
|
223724
|
+
* Create a "Point4d as a plane" from "any" other [[PlaneAltitudeEvaluator]] type.
|
|
223725
|
+
* @param source
|
|
223726
|
+
* @returns
|
|
223727
|
+
*/
|
|
223728
|
+
static createPlaneFrom(source) {
|
|
223729
|
+
return new Point4d(source.normalX(), source.normalY(), source.normalZ(), source.altitudeXYZ(0, 0, 0));
|
|
223730
|
+
return undefined;
|
|
223731
|
+
}
|
|
223577
223732
|
/** Copy coordinates from `other`. */
|
|
223578
223733
|
setFrom(other) {
|
|
223579
223734
|
this.xyzw[0] = other.xyzw[0];
|
|
@@ -223588,7 +223743,7 @@ class Point4d {
|
|
|
223588
223743
|
}
|
|
223589
223744
|
/** Set this point's xyzw from a json array `[x,y,z,w]` */
|
|
223590
223745
|
setFromJSON(json) {
|
|
223591
|
-
if (
|
|
223746
|
+
if (_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isNumberArray(json, 4))
|
|
223592
223747
|
this.set(json[0], json[1], json[2], json[3]);
|
|
223593
223748
|
else
|
|
223594
223749
|
this.set(0, 0, 0, 0);
|
|
@@ -223601,10 +223756,10 @@ class Point4d {
|
|
|
223601
223756
|
}
|
|
223602
223757
|
/** Near-equality test, using `Geometry.isSameCoordinate` on all 4 x,y,z,w */
|
|
223603
223758
|
isAlmostEqual(other) {
|
|
223604
|
-
return
|
|
223605
|
-
&&
|
|
223606
|
-
&&
|
|
223607
|
-
&&
|
|
223759
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.x, other.x)
|
|
223760
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.y, other.y)
|
|
223761
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.z, other.z)
|
|
223762
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.w, other.w);
|
|
223608
223763
|
}
|
|
223609
223764
|
/**
|
|
223610
223765
|
* Test for same coordinate by direct x,y,z,w args
|
|
@@ -223614,10 +223769,10 @@ class Point4d {
|
|
|
223614
223769
|
* @param w w to test
|
|
223615
223770
|
*/
|
|
223616
223771
|
isAlmostEqualXYZW(x, y, z, w) {
|
|
223617
|
-
return
|
|
223618
|
-
&&
|
|
223619
|
-
&&
|
|
223620
|
-
&&
|
|
223772
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.x, x)
|
|
223773
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.y, y)
|
|
223774
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.z, z)
|
|
223775
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.w, w);
|
|
223621
223776
|
}
|
|
223622
223777
|
/**
|
|
223623
223778
|
* Convert an Angle to a JSON object.
|
|
@@ -223630,22 +223785,22 @@ class Point4d {
|
|
|
223630
223785
|
* * x,y,z,w all participate without normalization.
|
|
223631
223786
|
*/
|
|
223632
223787
|
distanceXYZW(other) {
|
|
223633
|
-
return
|
|
223788
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseXYZW(other.xyzw[0] - this.xyzw[0], other.xyzw[1] - this.xyzw[1], other.xyzw[2] - this.xyzw[2], other.xyzw[3] - this.xyzw[3]);
|
|
223634
223789
|
}
|
|
223635
223790
|
/** Return the squared 4d distance from this point to other, with all 4 components squared into the hypotenuse.
|
|
223636
223791
|
* * x,y,z,w all participate without normalization.
|
|
223637
223792
|
*/
|
|
223638
223793
|
distanceSquaredXYZW(other) {
|
|
223639
|
-
return
|
|
223794
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseSquaredXYZW(other.xyzw[0] - this.xyzw[0], other.xyzw[1] - this.xyzw[1], other.xyzw[2] - this.xyzw[2], other.xyzw[3] - this.xyzw[3]);
|
|
223640
223795
|
}
|
|
223641
223796
|
/** Return the distance between the instance and other after normalizing by weights
|
|
223642
223797
|
*/
|
|
223643
223798
|
realDistanceXY(other) {
|
|
223644
223799
|
const wA = this.w;
|
|
223645
223800
|
const wB = other.w;
|
|
223646
|
-
if (
|
|
223801
|
+
if (_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSmallMetricDistance(wA) || _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSmallMetricDistance(wB))
|
|
223647
223802
|
return undefined;
|
|
223648
|
-
return
|
|
223803
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseXY(other.xyzw[0] / wB - this.xyzw[0] / wA, other.xyzw[1] / wB - this.xyzw[1] / wA);
|
|
223649
223804
|
}
|
|
223650
223805
|
/** Return the largest absolute distance between corresponding components
|
|
223651
223806
|
* * x,y,z,w all participate without normalization.
|
|
@@ -223659,11 +223814,11 @@ class Point4d {
|
|
|
223659
223814
|
}
|
|
223660
223815
|
/** Returns the magnitude including all 4 components x,y,z,w */
|
|
223661
223816
|
magnitudeXYZW() {
|
|
223662
|
-
return
|
|
223817
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseXYZW(this.xyzw[0], this.xyzw[1], this.xyzw[2], this.xyzw[3]);
|
|
223663
223818
|
}
|
|
223664
223819
|
/** Returns the magnitude of the leading xyz components. w is ignored. (i.e. the leading xyz are NOT divided by w.) */
|
|
223665
223820
|
magnitudeSquaredXYZ() {
|
|
223666
|
-
return
|
|
223821
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseSquaredXYZ(this.xyzw[0], this.xyzw[1], this.xyzw[2]);
|
|
223667
223822
|
}
|
|
223668
223823
|
/** Return the difference (this-other) using all 4 components x,y,z,w */
|
|
223669
223824
|
minus(other, result) {
|
|
@@ -223673,12 +223828,12 @@ class Point4d {
|
|
|
223673
223828
|
crossWeightedMinus(other, result) {
|
|
223674
223829
|
const wa = this.xyzw[3];
|
|
223675
223830
|
const wb = other.xyzw[3];
|
|
223676
|
-
return
|
|
223831
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(wb * this.xyzw[0] - wa * other.xyzw[0], wb * this.xyzw[1] - wa * other.xyzw[1], wb * this.xyzw[2] - wa * other.xyzw[2], result);
|
|
223677
223832
|
}
|
|
223678
223833
|
/** Return `((other.w * this) - (this.w * other))`, with other.w known to be 1 */
|
|
223679
223834
|
crossWeightedMinusPoint3d(other, result) {
|
|
223680
223835
|
const wa = this.xyzw[3];
|
|
223681
|
-
return
|
|
223836
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(this.xyzw[0] - wa * other.x, this.xyzw[1] - wa * other.y, this.xyzw[2] - wa * other.z, result);
|
|
223682
223837
|
}
|
|
223683
223838
|
/** Return the sum of this and other, using all 4 components x,y,z,w */
|
|
223684
223839
|
plus(other, result) {
|
|
@@ -223686,7 +223841,7 @@ class Point4d {
|
|
|
223686
223841
|
}
|
|
223687
223842
|
/** Test if all components are nearly zero. */
|
|
223688
223843
|
get isAlmostZero() {
|
|
223689
|
-
return
|
|
223844
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSmallMetricDistance(this.maxAbs());
|
|
223690
223845
|
}
|
|
223691
223846
|
/** Create a point with zero in all coordinates. */
|
|
223692
223847
|
static createZero() { return new Point4d(0, 0, 0, 0); }
|
|
@@ -223718,9 +223873,9 @@ class Point4d {
|
|
|
223718
223873
|
* * default 2 is 1.0 (array[3] can replace)
|
|
223719
223874
|
*/
|
|
223720
223875
|
static createFromPoint(point) {
|
|
223721
|
-
if (point instanceof
|
|
223876
|
+
if (point instanceof _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_3__.Point2d)
|
|
223722
223877
|
return new Point4d(point.x, point.y, 0, 1);
|
|
223723
|
-
if (point instanceof
|
|
223878
|
+
if (point instanceof _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d)
|
|
223724
223879
|
return new Point4d(point.x, point.y, point.z, 1);
|
|
223725
223880
|
if (point instanceof Point4d)
|
|
223726
223881
|
return point.clone();
|
|
@@ -223826,6 +223981,18 @@ class Point4d {
|
|
|
223826
223981
|
}
|
|
223827
223982
|
return undefined;
|
|
223828
223983
|
}
|
|
223984
|
+
/**
|
|
223985
|
+
* * Return xyz projection of spacePoint to the plane of the DPoint4d (understood as coefficients, not point coordinates)
|
|
223986
|
+
* * If the xyz part of `this` are all zero, (a clone of) `spacePoint` is returned.
|
|
223987
|
+
*/
|
|
223988
|
+
projectPointToPlane(spacePoint, result) {
|
|
223989
|
+
const h = this.altitude(spacePoint);
|
|
223990
|
+
const nn = this.magnitudeSquaredXYZ();
|
|
223991
|
+
const alpha = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideCoordinate(-h, nn);
|
|
223992
|
+
if (alpha === undefined)
|
|
223993
|
+
return spacePoint.clone(result);
|
|
223994
|
+
return spacePoint.plusXYZ(alpha * this.x, alpha * this.y, alpha * this.z, result);
|
|
223995
|
+
}
|
|
223829
223996
|
/** scale all components (including w!!) */
|
|
223830
223997
|
scale(scale, result) {
|
|
223831
223998
|
result = result ? result : new Point4d();
|
|
@@ -223850,7 +224017,7 @@ class Point4d {
|
|
|
223850
224017
|
* @param result optional result
|
|
223851
224018
|
*/
|
|
223852
224019
|
normalizeWeight(result) {
|
|
223853
|
-
const mag =
|
|
224020
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.xyzw[3]);
|
|
223854
224021
|
result = result ? result : new Point4d();
|
|
223855
224022
|
return this.safeDivideOrNull(mag, result);
|
|
223856
224023
|
}
|
|
@@ -223860,22 +224027,22 @@ class Point4d {
|
|
|
223860
224027
|
* @param result optional result
|
|
223861
224028
|
*/
|
|
223862
224029
|
realPoint(result) {
|
|
223863
|
-
const mag =
|
|
224030
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.xyzw[3]);
|
|
223864
224031
|
if (mag === 0.0)
|
|
223865
224032
|
return undefined;
|
|
223866
224033
|
const a = 1.0 / mag; // in zero case everything multiplies right back to true zero.
|
|
223867
|
-
return
|
|
224034
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this.xyzw[0] * a, this.xyzw[1] * a, this.xyzw[2] * a, result);
|
|
223868
224035
|
}
|
|
223869
224036
|
/** Convert the homogeneous point to a (strongly typed) point or vector.
|
|
223870
224037
|
* * If `this.w` is nonzero, return a Point3d `(x/w,y/w,z/w)`
|
|
223871
224038
|
* * If `this.w` is zero, return a Vector3d `(x,y,z)`
|
|
223872
224039
|
*/
|
|
223873
224040
|
realPointOrVector() {
|
|
223874
|
-
const mag =
|
|
224041
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.xyzw[3]);
|
|
223875
224042
|
if (mag === 0.0)
|
|
223876
|
-
return
|
|
224043
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(this.x, this.y, this.z);
|
|
223877
224044
|
const a = 1.0 / mag; // in zero case everything multiplies right back to true zero.
|
|
223878
|
-
return
|
|
224045
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this.x * a, this.y * a, this.z * a);
|
|
223879
224046
|
}
|
|
223880
224047
|
/**
|
|
223881
224048
|
* * If w is nonzero, return Point3d with x/w,y/w,z/w.
|
|
@@ -223887,9 +224054,9 @@ class Point4d {
|
|
|
223887
224054
|
* @param result optional result
|
|
223888
224055
|
*/
|
|
223889
224056
|
static createRealPoint3dDefault000(x, y, z, w, result) {
|
|
223890
|
-
const mag =
|
|
224057
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(w);
|
|
223891
224058
|
const a = mag === 0 ? 0.0 : (1.0 / mag); // in zero case everything multiplies right back to true zero.
|
|
223892
|
-
return
|
|
224059
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(x * a, y * a, z * a, result);
|
|
223893
224060
|
}
|
|
223894
224061
|
/**
|
|
223895
224062
|
* * If w is nonzero, return Vector3d which is the derivative of the projected xyz with given w and 4d derivatives.
|
|
@@ -223905,12 +224072,12 @@ class Point4d {
|
|
|
223905
224072
|
* @param result optional result
|
|
223906
224073
|
*/
|
|
223907
224074
|
static createRealDerivativeRay3dDefault000(x, y, z, w, dx, dy, dz, dw, result) {
|
|
223908
|
-
const mag =
|
|
224075
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(w);
|
|
223909
224076
|
// real point is X/w.
|
|
223910
224077
|
// real derivative is (X' * w - X *w) / ww, and weight is always 0 by cross products.
|
|
223911
224078
|
const a = mag === 0 ? 0.0 : (1.0 / mag); // in zero case everything multiplies right back to true zero.
|
|
223912
224079
|
const aa = a * a;
|
|
223913
|
-
return
|
|
224080
|
+
return _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_4__.Ray3d.createXYZUVW(x * a, y * a, z * a, (dx * w - dw * x) * aa, (dy * w - dw * y) * aa, (dz * w - dw * z) * aa, result);
|
|
223914
224081
|
}
|
|
223915
224082
|
/**
|
|
223916
224083
|
* * If w is nonzero, return Vector3d which is the derivative of the projected xyz with given w and 4d derivatives.
|
|
@@ -223926,7 +224093,7 @@ class Point4d {
|
|
|
223926
224093
|
* @param result optional result
|
|
223927
224094
|
*/
|
|
223928
224095
|
static createRealDerivativePlane3dByOriginAndVectorsDefault000(x, y, z, w, dx, dy, dz, dw, ddx, ddy, ddz, ddw, result) {
|
|
223929
|
-
const mag =
|
|
224096
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(w);
|
|
223930
224097
|
// real point is X/w.
|
|
223931
224098
|
// real derivative is (X' * w - X *w) / ww, and weight is always 0 by cross products.
|
|
223932
224099
|
const a = mag === 0 ? 0.0 : (1.0 / mag); // in zero case everything multiplies right back to true zero.
|
|
@@ -223937,19 +224104,19 @@ class Point4d {
|
|
|
223937
224104
|
const dfx = (dx * w - dw * x) * aa;
|
|
223938
224105
|
const dfy = (dy * w - dw * y) * aa;
|
|
223939
224106
|
const dfz = (dz * w - dw * z) * aa;
|
|
223940
|
-
return
|
|
224107
|
+
return _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_5__.Plane3dByOriginAndVectors.createOriginAndVectorsXYZ(fx, fy, fz, dfx, dfy, dfz, quotientDerivative2(ddx, dw, ddw, fx, dfx, a), quotientDerivative2(ddy, dw, ddw, fy, dfy, a), quotientDerivative2(ddz, dw, ddw, fz, dfz, a), result);
|
|
223941
224108
|
}
|
|
223942
224109
|
/**
|
|
223943
224110
|
* * If this.w is nonzero, return Point3d with x/w,y/w,z/w.
|
|
223944
224111
|
* * If this.w is zero, return 000
|
|
223945
224112
|
*/
|
|
223946
224113
|
realPointDefault000(result) {
|
|
223947
|
-
const mag =
|
|
224114
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.xyzw[3]);
|
|
223948
224115
|
if (mag === 0.0)
|
|
223949
|
-
return
|
|
223950
|
-
result = result ? result : new
|
|
224116
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(0, 0, 0, result);
|
|
224117
|
+
result = result ? result : new _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d();
|
|
223951
224118
|
const a = 1.0 / mag;
|
|
223952
|
-
return
|
|
224119
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this.xyzw[0] * a, this.xyzw[1] * a, this.xyzw[2] * a, result);
|
|
223953
224120
|
}
|
|
223954
224121
|
/** divide all components (x,y,z,w) by the 4d magnitude.
|
|
223955
224122
|
*
|
|
@@ -223957,7 +224124,7 @@ class Point4d {
|
|
|
223957
224124
|
* * Use normalizeWeight to divide by the w component.
|
|
223958
224125
|
*/
|
|
223959
224126
|
normalizeXYZW(result) {
|
|
223960
|
-
const mag =
|
|
224127
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.magnitudeXYZW());
|
|
223961
224128
|
result = result ? result : new Point4d();
|
|
223962
224129
|
return this.safeDivideOrNull(mag, result);
|
|
223963
224130
|
}
|
|
@@ -223965,7 +224132,7 @@ class Point4d {
|
|
|
223965
224132
|
* Return the determinant of the 3x3 matrix using components i,j,k of the 3 inputs.
|
|
223966
224133
|
*/
|
|
223967
224134
|
static determinantIndexed3X3(pointA, pointB, pointC, i, j, k) {
|
|
223968
|
-
return
|
|
224135
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.tripleProduct(pointA.xyzw[i], pointA.xyzw[j], pointA.xyzw[k], pointB.xyzw[i], pointB.xyzw[j], pointB.xyzw[k], pointC.xyzw[i], pointC.xyzw[j], pointC.xyzw[k]);
|
|
223969
224136
|
}
|
|
223970
224137
|
/**
|
|
223971
224138
|
* Return a Point4d perpendicular to all 3 inputs. (A higher level cross product concept)
|
|
@@ -223978,17 +224145,7 @@ class Point4d {
|
|
|
223978
224145
|
}
|
|
223979
224146
|
/** Treating this Point4d as plane coefficients, convert to origin and normal form. */
|
|
223980
224147
|
toPlane3dByOriginAndUnitNormal(result) {
|
|
223981
|
-
|
|
223982
|
-
const direction = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.create(this.x, this.y, this.z);
|
|
223983
|
-
const w = this.w;
|
|
223984
|
-
const divA = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.conditionalDivideFraction(1.0, a);
|
|
223985
|
-
if (divA !== undefined) {
|
|
223986
|
-
const divASquared = divA * divA;
|
|
223987
|
-
const b = -w * divASquared;
|
|
223988
|
-
direction.scaleInPlace(divASquared);
|
|
223989
|
-
return _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_5__.Plane3dByOriginAndUnitNormal.create(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(this.x * b, this.y * b, this.z * b), direction, result);
|
|
223990
|
-
}
|
|
223991
|
-
return undefined;
|
|
224148
|
+
return _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_6__.Plane3dByOriginAndUnitNormal.createFrom(this, result);
|
|
223992
224149
|
}
|
|
223993
224150
|
/** Normalize so sum of squares of all 4 coordinates is 1. */
|
|
223994
224151
|
normalizeQuaternion() {
|
|
@@ -224056,7 +224213,7 @@ class Point4d {
|
|
|
224056
224213
|
const magA = this.magnitudeXYZW();
|
|
224057
224214
|
const magB = other.magnitudeXYZW();
|
|
224058
224215
|
const dot = this.dotProduct(other); // == cos (theta) * magA * magB
|
|
224059
|
-
const cos =
|
|
224216
|
+
const cos = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideFraction(dot, magA * magB);
|
|
224060
224217
|
if (cos === undefined)
|
|
224061
224218
|
return undefined;
|
|
224062
224219
|
return Math.acos(cos);
|
|
@@ -288918,7 +289075,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
288918
289075
|
/***/ ((module) => {
|
|
288919
289076
|
|
|
288920
289077
|
"use strict";
|
|
288921
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.
|
|
289078
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.60","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs","build:ci":"npm run -s build && npm run -s build:esm","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"./node_modules/@itwin/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core/tree/master/core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.0.0-dev.60","@itwin/core-bentley":"workspace:^4.0.0-dev.60","@itwin/core-common":"workspace:^4.0.0-dev.60","@itwin/core-geometry":"workspace:^4.0.0-dev.60","@itwin/core-orbitgt":"workspace:^4.0.0-dev.60","@itwin/core-quantity":"workspace:^4.0.0-dev.60"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"^4.0.0-dev.32","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.0","@types/mocha":"^8.2.2","@types/node":"^18.11.5","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^7.11.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~5.0.2","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/object-storage-azure":"^1.5.0","@itwin/cloud-agnostic-core":"^1.5.0","@itwin/object-storage-core":"^1.5.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","qs":"^6.5.3","semver":"^7.3.5","superagent":"^7.1.5","wms-capabilities":"0.4.0","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
|
|
288922
289079
|
|
|
288923
289080
|
/***/ })
|
|
288924
289081
|
|