@itwin/rpcinterface-full-stack-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 +1334 -1177
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +13 -13
|
@@ -39321,211 +39321,6 @@ ClipStyle.defaults = new ClipStyle(false, CutStyle.defaults, undefined, undefine
|
|
|
39321
39321
|
|
|
39322
39322
|
|
|
39323
39323
|
|
|
39324
|
-
/***/ }),
|
|
39325
|
-
|
|
39326
|
-
/***/ "../../core/common/lib/esm/CloudStorage.js":
|
|
39327
|
-
/*!*************************************************!*\
|
|
39328
|
-
!*** ../../core/common/lib/esm/CloudStorage.js ***!
|
|
39329
|
-
\*************************************************/
|
|
39330
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
39331
|
-
|
|
39332
|
-
"use strict";
|
|
39333
|
-
__webpack_require__.r(__webpack_exports__);
|
|
39334
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
39335
|
-
/* harmony export */ "CloudStorageCache": () => (/* binding */ CloudStorageCache),
|
|
39336
|
-
/* harmony export */ "CloudStorageContainerUrl": () => (/* binding */ CloudStorageContainerUrl),
|
|
39337
|
-
/* harmony export */ "CloudStorageProvider": () => (/* binding */ CloudStorageProvider)
|
|
39338
|
-
/* harmony export */ });
|
|
39339
|
-
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
39340
|
-
/*---------------------------------------------------------------------------------------------
|
|
39341
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
39342
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
39343
|
-
*--------------------------------------------------------------------------------------------*/
|
|
39344
|
-
/** @packageDocumentation
|
|
39345
|
-
* @module CloudStorage
|
|
39346
|
-
*/
|
|
39347
|
-
|
|
39348
|
-
/* eslint-disable deprecation/deprecation */
|
|
39349
|
-
/**
|
|
39350
|
-
* @beta
|
|
39351
|
-
* @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
|
|
39352
|
-
*/
|
|
39353
|
-
var CloudStorageProvider;
|
|
39354
|
-
(function (CloudStorageProvider) {
|
|
39355
|
-
CloudStorageProvider[CloudStorageProvider["Azure"] = 0] = "Azure";
|
|
39356
|
-
CloudStorageProvider[CloudStorageProvider["Amazon"] = 1] = "Amazon";
|
|
39357
|
-
CloudStorageProvider[CloudStorageProvider["AliCloud"] = 2] = "AliCloud";
|
|
39358
|
-
CloudStorageProvider[CloudStorageProvider["External"] = 3] = "External";
|
|
39359
|
-
CloudStorageProvider[CloudStorageProvider["Unknown"] = 4] = "Unknown";
|
|
39360
|
-
})(CloudStorageProvider || (CloudStorageProvider = {}));
|
|
39361
|
-
/**
|
|
39362
|
-
* @beta
|
|
39363
|
-
* @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
|
|
39364
|
-
*/
|
|
39365
|
-
var CloudStorageContainerUrl;
|
|
39366
|
-
(function (CloudStorageContainerUrl) {
|
|
39367
|
-
function empty() {
|
|
39368
|
-
return {
|
|
39369
|
-
descriptor: { name: "" },
|
|
39370
|
-
valid: 0,
|
|
39371
|
-
expires: 0,
|
|
39372
|
-
url: "",
|
|
39373
|
-
};
|
|
39374
|
-
}
|
|
39375
|
-
CloudStorageContainerUrl.empty = empty;
|
|
39376
|
-
})(CloudStorageContainerUrl || (CloudStorageContainerUrl = {}));
|
|
39377
|
-
/**
|
|
39378
|
-
* @beta
|
|
39379
|
-
* @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
|
|
39380
|
-
*/
|
|
39381
|
-
class CloudStorageCache {
|
|
39382
|
-
formContainerKey(id) { return this.formContainerName(id); }
|
|
39383
|
-
supplyUrlBase(_container, _id) { return undefined; }
|
|
39384
|
-
constructor() {
|
|
39385
|
-
this.provider = CloudStorageProvider.Unknown;
|
|
39386
|
-
this._pendingContainerRequests = new Map();
|
|
39387
|
-
this._containers = new Map();
|
|
39388
|
-
}
|
|
39389
|
-
async retrieve(id) {
|
|
39390
|
-
try {
|
|
39391
|
-
const container = await this.getContainer(id);
|
|
39392
|
-
if (!container.url)
|
|
39393
|
-
return undefined;
|
|
39394
|
-
const response = await this.requestResource(container, id);
|
|
39395
|
-
if (response.ok) {
|
|
39396
|
-
const content = await this.instantiateResource(response);
|
|
39397
|
-
return content;
|
|
39398
|
-
}
|
|
39399
|
-
}
|
|
39400
|
-
catch (err) {
|
|
39401
|
-
_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.UnexpectedErrors.handle(err);
|
|
39402
|
-
}
|
|
39403
|
-
return undefined;
|
|
39404
|
-
}
|
|
39405
|
-
async requestResource(container, id) {
|
|
39406
|
-
const base = this.supplyUrlBase(container, id);
|
|
39407
|
-
const url = (undefined === base || "" === base) ? new URL(container.url) : new URL(container.url, base);
|
|
39408
|
-
if (!container.bound) {
|
|
39409
|
-
url.pathname += `/${this.formResourceName(id)}`;
|
|
39410
|
-
}
|
|
39411
|
-
const init = {
|
|
39412
|
-
headers: container.headers,
|
|
39413
|
-
method: "GET",
|
|
39414
|
-
};
|
|
39415
|
-
return fetch(url.toString(), init);
|
|
39416
|
-
}
|
|
39417
|
-
async getContainer(id) {
|
|
39418
|
-
const now = new Date().getTime();
|
|
39419
|
-
const name = this.formContainerName(id);
|
|
39420
|
-
const resource = this.formResourceName(id);
|
|
39421
|
-
const key = this.formContainerKey(id);
|
|
39422
|
-
let container = this._containers.get(key);
|
|
39423
|
-
if (container && container.url && (container.valid > now || container.expires < now)) {
|
|
39424
|
-
container = undefined;
|
|
39425
|
-
this._containers.delete(key);
|
|
39426
|
-
}
|
|
39427
|
-
if (!container) {
|
|
39428
|
-
let request = this._pendingContainerRequests.get(key);
|
|
39429
|
-
if (!request) {
|
|
39430
|
-
request = new Promise(async (resolve, reject) => {
|
|
39431
|
-
try {
|
|
39432
|
-
container = await this.obtainContainerUrl(id, { name, resource });
|
|
39433
|
-
this._containers.set(key, container);
|
|
39434
|
-
this._pendingContainerRequests.delete(key);
|
|
39435
|
-
resolve(container);
|
|
39436
|
-
}
|
|
39437
|
-
catch (err) {
|
|
39438
|
-
this._pendingContainerRequests.delete(key);
|
|
39439
|
-
reject(err);
|
|
39440
|
-
}
|
|
39441
|
-
});
|
|
39442
|
-
this._pendingContainerRequests.set(key, request);
|
|
39443
|
-
}
|
|
39444
|
-
return request;
|
|
39445
|
-
}
|
|
39446
|
-
return container;
|
|
39447
|
-
}
|
|
39448
|
-
}
|
|
39449
|
-
|
|
39450
|
-
|
|
39451
|
-
/***/ }),
|
|
39452
|
-
|
|
39453
|
-
/***/ "../../core/common/lib/esm/CloudStorageTileCache.js":
|
|
39454
|
-
/*!**********************************************************!*\
|
|
39455
|
-
!*** ../../core/common/lib/esm/CloudStorageTileCache.js ***!
|
|
39456
|
-
\**********************************************************/
|
|
39457
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
39458
|
-
|
|
39459
|
-
"use strict";
|
|
39460
|
-
__webpack_require__.r(__webpack_exports__);
|
|
39461
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
39462
|
-
/* harmony export */ "CloudStorageTileCache": () => (/* binding */ CloudStorageTileCache)
|
|
39463
|
-
/* harmony export */ });
|
|
39464
|
-
/* harmony import */ var _CloudStorage__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CloudStorage */ "../../core/common/lib/esm/CloudStorage.js");
|
|
39465
|
-
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
39466
|
-
/*---------------------------------------------------------------------------------------------
|
|
39467
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
39468
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
39469
|
-
*--------------------------------------------------------------------------------------------*/
|
|
39470
|
-
/** @packageDocumentation
|
|
39471
|
-
* @module CloudStorage
|
|
39472
|
-
*/
|
|
39473
|
-
/* eslint-disable deprecation/deprecation */
|
|
39474
|
-
|
|
39475
|
-
|
|
39476
|
-
/**
|
|
39477
|
-
* @beta
|
|
39478
|
-
* @deprecated in 3.x. Use [TileStorage]($frontend) (frontend) and [TileStorage]($backend) (backend) instead.
|
|
39479
|
-
*/
|
|
39480
|
-
class CloudStorageTileCache extends _CloudStorage__WEBPACK_IMPORTED_MODULE_0__.CloudStorageCache {
|
|
39481
|
-
static getCache() {
|
|
39482
|
-
if (!CloudStorageTileCache._instance) {
|
|
39483
|
-
CloudStorageTileCache._instance = new CloudStorageTileCache();
|
|
39484
|
-
}
|
|
39485
|
-
return CloudStorageTileCache._instance;
|
|
39486
|
-
}
|
|
39487
|
-
supplyExpiryForContainerUrl(_id) {
|
|
39488
|
-
const expiry = new Date();
|
|
39489
|
-
const today = new Date().getDay();
|
|
39490
|
-
const rolloverDay = 6; // saturday
|
|
39491
|
-
expiry.setHours((rolloverDay - today) * 24);
|
|
39492
|
-
expiry.setHours(23);
|
|
39493
|
-
expiry.setMinutes(59);
|
|
39494
|
-
expiry.setSeconds(59);
|
|
39495
|
-
expiry.setMilliseconds(999);
|
|
39496
|
-
return expiry;
|
|
39497
|
-
}
|
|
39498
|
-
constructor() {
|
|
39499
|
-
super();
|
|
39500
|
-
}
|
|
39501
|
-
async obtainContainerUrl(id, descriptor) {
|
|
39502
|
-
const client = _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_1__.IModelTileRpcInterface.getClient();
|
|
39503
|
-
return client.getTileCacheContainerUrl(id.tokenProps, descriptor);
|
|
39504
|
-
}
|
|
39505
|
-
async instantiateResource(response) {
|
|
39506
|
-
const data = await response.arrayBuffer();
|
|
39507
|
-
if (!data.byteLength) {
|
|
39508
|
-
return undefined;
|
|
39509
|
-
}
|
|
39510
|
-
return new Uint8Array(data);
|
|
39511
|
-
}
|
|
39512
|
-
formContainerName(id) {
|
|
39513
|
-
return `${id.tokenProps.iModelId}`;
|
|
39514
|
-
}
|
|
39515
|
-
formResourceName(id) {
|
|
39516
|
-
const changesetId = id.tokenProps.changeset?.id || "first";
|
|
39517
|
-
const version = id.guid ? id.guid : changesetId; // NB: id.guid can be null (backend) OR undefined (frontend) here...
|
|
39518
|
-
return `tiles/${id.treeId}/${version}/${id.contentId}`;
|
|
39519
|
-
}
|
|
39520
|
-
formContainerKey(id) {
|
|
39521
|
-
if (this.provider === _CloudStorage__WEBPACK_IMPORTED_MODULE_0__.CloudStorageProvider.AliCloud) {
|
|
39522
|
-
return this.formContainerName(id) + this.formResourceName(id);
|
|
39523
|
-
}
|
|
39524
|
-
return super.formContainerKey(id);
|
|
39525
|
-
}
|
|
39526
|
-
}
|
|
39527
|
-
|
|
39528
|
-
|
|
39529
39324
|
/***/ }),
|
|
39530
39325
|
|
|
39531
39326
|
/***/ "../../core/common/lib/esm/Code.js":
|
|
@@ -51524,7 +51319,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
51524
51319
|
|
|
51525
51320
|
|
|
51526
51321
|
/** RPC interface management is concerned with coordination of access and configuration for RPC interfaces.
|
|
51527
|
-
* @
|
|
51322
|
+
* @beta
|
|
51528
51323
|
*/
|
|
51529
51324
|
class RpcManager {
|
|
51530
51325
|
/** Initializes an RPC interface class.
|
|
@@ -54747,377 +54542,373 @@ WhiteOnWhiteReversalSettings._ignore = new WhiteOnWhiteReversalSettings(false);
|
|
|
54747
54542
|
"use strict";
|
|
54748
54543
|
__webpack_require__.r(__webpack_exports__);
|
|
54749
54544
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
54750
|
-
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */
|
|
54751
|
-
/* harmony export */ "AffineTransform": () => (/* reexport safe */
|
|
54752
|
-
/* harmony export */ "AmbientLight": () => (/* reexport safe */
|
|
54545
|
+
/* harmony export */ "AdditionalTransform": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_34__.AdditionalTransform),
|
|
54546
|
+
/* harmony export */ "AffineTransform": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__.AffineTransform),
|
|
54547
|
+
/* harmony export */ "AmbientLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.AmbientLight),
|
|
54753
54548
|
/* harmony export */ "AmbientOcclusion": () => (/* reexport safe */ _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__.AmbientOcclusion),
|
|
54754
54549
|
/* harmony export */ "AnalysisStyle": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyle),
|
|
54755
54550
|
/* harmony export */ "AnalysisStyleDisplacement": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleDisplacement),
|
|
54756
54551
|
/* harmony export */ "AnalysisStyleThematic": () => (/* reexport safe */ _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__.AnalysisStyleThematic),
|
|
54757
|
-
/* harmony export */ "AreaPattern": () => (/* reexport safe */
|
|
54758
|
-
/* harmony export */ "B3dmHeader": () => (/* reexport safe */
|
|
54759
|
-
/* harmony export */ "BRepEntity": () => (/* reexport safe */
|
|
54760
|
-
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */
|
|
54761
|
-
/* harmony export */ "BackendError": () => (/* reexport safe */
|
|
54762
|
-
/* harmony export */ "BackgroundFill": () => (/* reexport safe */
|
|
54552
|
+
/* harmony export */ "AreaPattern": () => (/* reexport safe */ _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_35__.AreaPattern),
|
|
54553
|
+
/* harmony export */ "B3dmHeader": () => (/* reexport safe */ _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_141__.B3dmHeader),
|
|
54554
|
+
/* harmony export */ "BRepEntity": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.BRepEntity),
|
|
54555
|
+
/* harmony export */ "BRepGeometryOperation": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__.BRepGeometryOperation),
|
|
54556
|
+
/* harmony export */ "BackendError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BackendError),
|
|
54557
|
+
/* harmony export */ "BackgroundFill": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.BackgroundFill),
|
|
54763
54558
|
/* harmony export */ "BackgroundMapProvider": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapProvider),
|
|
54764
54559
|
/* harmony export */ "BackgroundMapSettings": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.BackgroundMapSettings),
|
|
54765
54560
|
/* harmony export */ "BackgroundMapType": () => (/* reexport safe */ _BackgroundMapProvider__WEBPACK_IMPORTED_MODULE_3__.BackgroundMapType),
|
|
54766
54561
|
/* harmony export */ "Base64EncodedString": () => (/* reexport safe */ _Base64EncodedString__WEBPACK_IMPORTED_MODULE_5__.Base64EncodedString),
|
|
54767
|
-
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */
|
|
54768
|
-
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */
|
|
54769
|
-
/* harmony export */ "BatchType": () => (/* reexport safe */
|
|
54770
|
-
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */
|
|
54771
|
-
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */
|
|
54772
|
-
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */
|
|
54773
|
-
/* harmony export */ "BentleyError": () => (/* reexport safe */
|
|
54774
|
-
/* harmony export */ "BentleyStatus": () => (/* reexport safe */
|
|
54775
|
-
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */
|
|
54776
|
-
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */
|
|
54777
|
-
/* harmony export */ "BoundingSphere": () => (/* reexport safe */
|
|
54562
|
+
/* harmony export */ "BaseLayerSettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_71__.BaseLayerSettings),
|
|
54563
|
+
/* harmony export */ "BaseMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.BaseMapLayerSettings),
|
|
54564
|
+
/* harmony export */ "BatchType": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.BatchType),
|
|
54565
|
+
/* harmony export */ "BentleyCloudRpcConfiguration": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_134__.BentleyCloudRpcConfiguration),
|
|
54566
|
+
/* harmony export */ "BentleyCloudRpcManager": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_134__.BentleyCloudRpcManager),
|
|
54567
|
+
/* harmony export */ "BentleyCloudRpcProtocol": () => (/* reexport safe */ _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_135__.BentleyCloudRpcProtocol),
|
|
54568
|
+
/* harmony export */ "BentleyError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BentleyError),
|
|
54569
|
+
/* harmony export */ "BentleyStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BentleyStatus),
|
|
54570
|
+
/* harmony export */ "BisCodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_12__.BisCodeSpec),
|
|
54571
|
+
/* harmony export */ "BlobOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.BlobOptionsBuilder),
|
|
54572
|
+
/* harmony export */ "BoundingSphere": () => (/* reexport safe */ _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_36__.BoundingSphere),
|
|
54778
54573
|
/* harmony export */ "BriefcaseIdValue": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.BriefcaseIdValue),
|
|
54779
|
-
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */
|
|
54780
|
-
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */
|
|
54781
|
-
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */
|
|
54574
|
+
/* harmony export */ "BriefcaseStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.BriefcaseStatus),
|
|
54575
|
+
/* harmony export */ "CURRENT_INVOCATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.CURRENT_INVOCATION),
|
|
54576
|
+
/* harmony export */ "CURRENT_REQUEST": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.CURRENT_REQUEST),
|
|
54782
54577
|
/* harmony export */ "Camera": () => (/* reexport safe */ _Camera__WEBPACK_IMPORTED_MODULE_7__.Camera),
|
|
54783
|
-
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */
|
|
54784
|
-
/* harmony export */ "Cartographic": () => (/* reexport safe */
|
|
54785
|
-
/* harmony export */ "CartographicRange": () => (/* reexport safe */
|
|
54786
|
-
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */
|
|
54787
|
-
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */
|
|
54788
|
-
/* harmony export */ "ChangedValueState": () => (/* reexport safe */
|
|
54578
|
+
/* harmony export */ "Carto2DDegrees": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__.Carto2DDegrees),
|
|
54579
|
+
/* harmony export */ "Cartographic": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_37__.Cartographic),
|
|
54580
|
+
/* harmony export */ "CartographicRange": () => (/* reexport safe */ _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_37__.CartographicRange),
|
|
54581
|
+
/* harmony export */ "ChangeOpCode": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ChangeOpCode),
|
|
54582
|
+
/* harmony export */ "ChangeSetStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ChangeSetStatus),
|
|
54583
|
+
/* harmony export */ "ChangedValueState": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ChangedValueState),
|
|
54789
54584
|
/* harmony export */ "ChangesetType": () => (/* reexport safe */ _ChangesetProps__WEBPACK_IMPORTED_MODULE_10__.ChangesetType),
|
|
54790
|
-
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */
|
|
54585
|
+
/* harmony export */ "ChannelConstraintError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ChannelConstraintError),
|
|
54791
54586
|
/* harmony export */ "ClipStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.ClipStyle),
|
|
54792
|
-
/* harmony export */ "
|
|
54793
|
-
/* harmony export */ "
|
|
54794
|
-
/* harmony export */ "
|
|
54795
|
-
/* harmony export */ "
|
|
54796
|
-
/* harmony export */ "
|
|
54797
|
-
/* harmony export */ "
|
|
54798
|
-
/* harmony export */ "
|
|
54799
|
-
/* harmony export */ "
|
|
54800
|
-
/* harmony export */ "
|
|
54801
|
-
/* harmony export */ "
|
|
54802
|
-
/* harmony export */ "
|
|
54803
|
-
/* harmony export */ "
|
|
54804
|
-
/* harmony export */ "
|
|
54805
|
-
/* harmony export */ "
|
|
54806
|
-
/* harmony export */ "
|
|
54807
|
-
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModel),
|
|
54808
|
-
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModelProps),
|
|
54809
|
-
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_18__.ContextRealityModels),
|
|
54810
|
-
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_148__.CurrentImdlVersion),
|
|
54587
|
+
/* harmony export */ "Code": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_12__.Code),
|
|
54588
|
+
/* harmony export */ "CodeScopeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_12__.CodeScopeSpec),
|
|
54589
|
+
/* harmony export */ "CodeSpec": () => (/* reexport safe */ _Code__WEBPACK_IMPORTED_MODULE_12__.CodeSpec),
|
|
54590
|
+
/* harmony export */ "ColorByName": () => (/* reexport safe */ _ColorByName__WEBPACK_IMPORTED_MODULE_13__.ColorByName),
|
|
54591
|
+
/* harmony export */ "ColorDef": () => (/* reexport safe */ _ColorDef__WEBPACK_IMPORTED_MODULE_14__.ColorDef),
|
|
54592
|
+
/* harmony export */ "ColorIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.ColorIndex),
|
|
54593
|
+
/* harmony export */ "CommonLoggerCategory": () => (/* reexport safe */ _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_15__.CommonLoggerCategory),
|
|
54594
|
+
/* harmony export */ "CompositeTileHeader": () => (/* reexport safe */ _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_142__.CompositeTileHeader),
|
|
54595
|
+
/* harmony export */ "ConcreteEntityTypes": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_26__.ConcreteEntityTypes),
|
|
54596
|
+
/* harmony export */ "ContentFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.ContentFlags),
|
|
54597
|
+
/* harmony export */ "ContentIdProvider": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.ContentIdProvider),
|
|
54598
|
+
/* harmony export */ "ContextRealityModel": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.ContextRealityModel),
|
|
54599
|
+
/* harmony export */ "ContextRealityModelProps": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.ContextRealityModelProps),
|
|
54600
|
+
/* harmony export */ "ContextRealityModels": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.ContextRealityModels),
|
|
54601
|
+
/* harmony export */ "CurrentImdlVersion": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__.CurrentImdlVersion),
|
|
54811
54602
|
/* harmony export */ "CutStyle": () => (/* reexport safe */ _ClipStyle__WEBPACK_IMPORTED_MODULE_11__.CutStyle),
|
|
54812
|
-
/* harmony export */ "DbQueryError": () => (/* reexport safe */
|
|
54813
|
-
/* harmony export */ "DbRequestKind": () => (/* reexport safe */
|
|
54814
|
-
/* harmony export */ "DbResponseKind": () => (/* reexport safe */
|
|
54815
|
-
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */
|
|
54816
|
-
/* harmony export */ "DbResult": () => (/* reexport safe */
|
|
54817
|
-
/* harmony export */ "DbValueFormat": () => (/* reexport safe */
|
|
54818
|
-
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */
|
|
54819
|
-
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */
|
|
54820
|
-
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */
|
|
54821
|
-
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */
|
|
54822
|
-
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */
|
|
54603
|
+
/* harmony export */ "DbQueryError": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbQueryError),
|
|
54604
|
+
/* harmony export */ "DbRequestKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbRequestKind),
|
|
54605
|
+
/* harmony export */ "DbResponseKind": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbResponseKind),
|
|
54606
|
+
/* harmony export */ "DbResponseStatus": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbResponseStatus),
|
|
54607
|
+
/* harmony export */ "DbResult": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.DbResult),
|
|
54608
|
+
/* harmony export */ "DbValueFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.DbValueFormat),
|
|
54609
|
+
/* harmony export */ "DefaultSupportedTypes": () => (/* reexport safe */ _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_86__.DefaultSupportedTypes),
|
|
54610
|
+
/* harmony export */ "DevToolsRpcInterface": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_127__.DevToolsRpcInterface),
|
|
54611
|
+
/* harmony export */ "DevToolsStatsOptions": () => (/* reexport safe */ _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_127__.DevToolsStatsOptions),
|
|
54612
|
+
/* harmony export */ "DisplayStyle3dSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_17__.DisplayStyle3dSettings),
|
|
54613
|
+
/* harmony export */ "DisplayStyleSettings": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_17__.DisplayStyleSettings),
|
|
54823
54614
|
/* harmony export */ "DomainOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.DomainOptions),
|
|
54824
|
-
/* harmony export */ "ECJsNames": () => (/* reexport safe */
|
|
54825
|
-
/* harmony export */ "ECSqlReader": () => (/* reexport safe */
|
|
54826
|
-
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */
|
|
54827
|
-
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */
|
|
54828
|
-
/* harmony export */ "Easing": () => (/* reexport safe */
|
|
54829
|
-
/* harmony export */ "EcefLocation": () => (/* reexport safe */
|
|
54830
|
-
/* harmony export */ "EdgeArgs": () => (/* reexport safe */
|
|
54831
|
-
/* harmony export */ "ElementGeometry": () => (/* reexport safe */
|
|
54832
|
-
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */
|
|
54833
|
-
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */
|
|
54834
|
-
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */
|
|
54835
|
-
/* harmony export */ "EntityMetaData": () => (/* reexport safe */
|
|
54836
|
-
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */
|
|
54837
|
-
/* harmony export */ "Environment": () => (/* reexport safe */
|
|
54838
|
-
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */
|
|
54839
|
-
/* harmony export */ "Feature": () => (/* reexport safe */
|
|
54840
|
-
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */
|
|
54841
|
-
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */
|
|
54842
|
-
/* harmony export */ "FeatureIndex": () => (/* reexport safe */
|
|
54843
|
-
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */
|
|
54844
|
-
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */
|
|
54845
|
-
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */
|
|
54846
|
-
/* harmony export */ "FeatureTable": () => (/* reexport safe */
|
|
54847
|
-
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */
|
|
54848
|
-
/* harmony export */ "FillDisplay": () => (/* reexport safe */
|
|
54849
|
-
/* harmony export */ "FillFlags": () => (/* reexport safe */
|
|
54850
|
-
/* harmony export */ "FontMap": () => (/* reexport safe */
|
|
54851
|
-
/* harmony export */ "FontType": () => (/* reexport safe */
|
|
54852
|
-
/* harmony export */ "FresnelSettings": () => (/* reexport safe */
|
|
54853
|
-
/* harmony export */ "Frustum": () => (/* reexport safe */
|
|
54854
|
-
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */
|
|
54855
|
-
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */
|
|
54856
|
-
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */
|
|
54857
|
-
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */
|
|
54858
|
-
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */
|
|
54859
|
-
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */
|
|
54860
|
-
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */
|
|
54861
|
-
/* harmony export */ "GeographicCRS": () => (/* reexport safe */
|
|
54862
|
-
/* harmony export */ "GeometryClass": () => (/* reexport safe */
|
|
54863
|
-
/* harmony export */ "GeometryParams": () => (/* reexport safe */
|
|
54864
|
-
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */
|
|
54865
|
-
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */
|
|
54866
|
-
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */
|
|
54867
|
-
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */
|
|
54868
|
-
/* harmony export */ "GlbHeader": () => (/* reexport safe */
|
|
54615
|
+
/* harmony export */ "ECJsNames": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ECJsNames),
|
|
54616
|
+
/* harmony export */ "ECSqlReader": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_80__.ECSqlReader),
|
|
54617
|
+
/* harmony export */ "ECSqlSystemProperty": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ECSqlSystemProperty),
|
|
54618
|
+
/* harmony export */ "ECSqlValueType": () => (/* reexport safe */ _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__.ECSqlValueType),
|
|
54619
|
+
/* harmony export */ "Easing": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_108__.Easing),
|
|
54620
|
+
/* harmony export */ "EcefLocation": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_60__.EcefLocation),
|
|
54621
|
+
/* harmony export */ "EdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.EdgeArgs),
|
|
54622
|
+
/* harmony export */ "ElementGeometry": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__.ElementGeometry),
|
|
54623
|
+
/* harmony export */ "ElementGeometryChange": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_82__.ElementGeometryChange),
|
|
54624
|
+
/* harmony export */ "ElementGeometryOpcode": () => (/* reexport safe */ _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__.ElementGeometryOpcode),
|
|
54625
|
+
/* harmony export */ "EmptyLocalization": () => (/* reexport safe */ _Localization__WEBPACK_IMPORTED_MODULE_70__.EmptyLocalization),
|
|
54626
|
+
/* harmony export */ "EntityMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_25__.EntityMetaData),
|
|
54627
|
+
/* harmony export */ "EntityReferenceSet": () => (/* reexport safe */ _EntityReference__WEBPACK_IMPORTED_MODULE_26__.EntityReferenceSet),
|
|
54628
|
+
/* harmony export */ "Environment": () => (/* reexport safe */ _Environment__WEBPACK_IMPORTED_MODULE_27__.Environment),
|
|
54629
|
+
/* harmony export */ "ExternalSourceAttachmentRole": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.ExternalSourceAttachmentRole),
|
|
54630
|
+
/* harmony export */ "Feature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.Feature),
|
|
54631
|
+
/* harmony export */ "FeatureAppearance": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__.FeatureAppearance),
|
|
54632
|
+
/* harmony export */ "FeatureAppearanceProvider": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__.FeatureAppearanceProvider),
|
|
54633
|
+
/* harmony export */ "FeatureIndex": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.FeatureIndex),
|
|
54634
|
+
/* harmony export */ "FeatureIndexType": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.FeatureIndexType),
|
|
54635
|
+
/* harmony export */ "FeatureOverrideType": () => (/* reexport safe */ _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_24__.FeatureOverrideType),
|
|
54636
|
+
/* harmony export */ "FeatureOverrides": () => (/* reexport safe */ _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__.FeatureOverrides),
|
|
54637
|
+
/* harmony export */ "FeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.FeatureTable),
|
|
54638
|
+
/* harmony export */ "FeatureTableHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__.FeatureTableHeader),
|
|
54639
|
+
/* harmony export */ "FillDisplay": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.FillDisplay),
|
|
54640
|
+
/* harmony export */ "FillFlags": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_53__.FillFlags),
|
|
54641
|
+
/* harmony export */ "FontMap": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_31__.FontMap),
|
|
54642
|
+
/* harmony export */ "FontType": () => (/* reexport safe */ _Fonts__WEBPACK_IMPORTED_MODULE_31__.FontType),
|
|
54643
|
+
/* harmony export */ "FresnelSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.FresnelSettings),
|
|
54644
|
+
/* harmony export */ "Frustum": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.Frustum),
|
|
54645
|
+
/* harmony export */ "FrustumPlanes": () => (/* reexport safe */ _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_40__.FrustumPlanes),
|
|
54646
|
+
/* harmony export */ "GeoCoordStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_33__.GeoCoordStatus),
|
|
54647
|
+
/* harmony export */ "GeocentricTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeocentricTransform),
|
|
54648
|
+
/* harmony export */ "GeodeticDatum": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeodeticDatum),
|
|
54649
|
+
/* harmony export */ "GeodeticEllipsoid": () => (/* reexport safe */ _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_42__.GeodeticEllipsoid),
|
|
54650
|
+
/* harmony export */ "GeodeticTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeodeticTransform),
|
|
54651
|
+
/* harmony export */ "GeodeticTransformPath": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GeodeticTransformPath),
|
|
54652
|
+
/* harmony export */ "GeographicCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.GeographicCRS),
|
|
54653
|
+
/* harmony export */ "GeometryClass": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.GeometryClass),
|
|
54654
|
+
/* harmony export */ "GeometryParams": () => (/* reexport safe */ _GeometryParams__WEBPACK_IMPORTED_MODULE_50__.GeometryParams),
|
|
54655
|
+
/* harmony export */ "GeometryStreamBuilder": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.GeometryStreamBuilder),
|
|
54656
|
+
/* harmony export */ "GeometryStreamFlags": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.GeometryStreamFlags),
|
|
54657
|
+
/* harmony export */ "GeometryStreamIterator": () => (/* reexport safe */ _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__.GeometryStreamIterator),
|
|
54658
|
+
/* harmony export */ "GeometrySummaryVerbosity": () => (/* reexport safe */ _GeometrySummary__WEBPACK_IMPORTED_MODULE_51__.GeometrySummaryVerbosity),
|
|
54659
|
+
/* harmony export */ "GlbHeader": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_144__.GlbHeader),
|
|
54869
54660
|
/* harmony export */ "GlobeMode": () => (/* reexport safe */ _BackgroundMapSettings__WEBPACK_IMPORTED_MODULE_4__.GlobeMode),
|
|
54870
|
-
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */
|
|
54871
|
-
/* harmony export */ "GltfVersions": () => (/* reexport safe */
|
|
54872
|
-
/* harmony export */ "Gradient": () => (/* reexport safe */
|
|
54873
|
-
/* harmony export */ "GraphicParams": () => (/* reexport safe */
|
|
54874
|
-
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */
|
|
54875
|
-
/* harmony export */ "GridFileTransform": () => (/* reexport safe */
|
|
54876
|
-
/* harmony export */ "GridOrientationType": () => (/* reexport safe */
|
|
54877
|
-
/* harmony export */ "GroundPlane": () => (/* reexport safe */
|
|
54878
|
-
/* harmony export */ "HSLColor": () => (/* reexport safe */
|
|
54879
|
-
/* harmony export */ "HSVColor": () => (/* reexport safe */
|
|
54880
|
-
/* harmony export */ "HSVConstants": () => (/* reexport safe */
|
|
54881
|
-
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */
|
|
54882
|
-
/* harmony export */ "HemisphereLights": () => (/* reexport safe */
|
|
54883
|
-
/* harmony export */ "HiddenLine": () => (/* reexport safe */
|
|
54884
|
-
/* harmony export */ "Hilite": () => (/* reexport safe */
|
|
54885
|
-
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */
|
|
54886
|
-
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */
|
|
54887
|
-
/* harmony export */ "I3dmHeader": () => (/* reexport safe */
|
|
54888
|
-
/* harmony export */ "IModel": () => (/* reexport safe */
|
|
54889
|
-
/* harmony export */ "IModelError": () => (/* reexport safe */
|
|
54890
|
-
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */
|
|
54891
|
-
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */
|
|
54892
|
-
/* harmony export */ "IModelStatus": () => (/* reexport safe */
|
|
54893
|
-
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */
|
|
54894
|
-
/* harmony export */ "IModelVersion": () => (/* reexport safe */
|
|
54895
|
-
/* harmony export */ "INSTANCE": () => (/* reexport safe */
|
|
54896
|
-
/* harmony export */ "ImageBuffer": () => (/* reexport safe */
|
|
54897
|
-
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */
|
|
54898
|
-
/* harmony export */ "ImageGraphic": () => (/* reexport safe */
|
|
54899
|
-
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */
|
|
54900
|
-
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */
|
|
54901
|
-
/* harmony export */ "ImageSource": () => (/* reexport safe */
|
|
54902
|
-
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */
|
|
54903
|
-
/* harmony export */ "ImdlFlags": () => (/* reexport safe */
|
|
54904
|
-
/* harmony export */ "ImdlHeader": () => (/* reexport safe */
|
|
54905
|
-
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */
|
|
54906
|
-
/* harmony export */ "Interpolation": () => (/* reexport safe */
|
|
54907
|
-
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */
|
|
54908
|
-
/* harmony export */ "IpcSession": () => (/* reexport safe */
|
|
54909
|
-
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */
|
|
54910
|
-
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */
|
|
54911
|
-
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */
|
|
54912
|
-
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */
|
|
54913
|
-
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */
|
|
54914
|
-
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */
|
|
54915
|
-
/* harmony export */ "LightSettings": () => (/* reexport safe */
|
|
54916
|
-
/* harmony export */ "LinePixels": () => (/* reexport safe */
|
|
54917
|
-
/* harmony export */ "LineStyle": () => (/* reexport safe */
|
|
54918
|
-
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */
|
|
54919
|
-
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */
|
|
54920
|
-
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */
|
|
54921
|
-
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */
|
|
54922
|
-
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */
|
|
54923
|
-
/* harmony export */ "MeshEdge": () => (/* reexport safe */
|
|
54924
|
-
/* harmony export */ "MeshEdges": () => (/* reexport safe */
|
|
54925
|
-
/* harmony export */ "MeshPolyline": () => (/* reexport safe */
|
|
54926
|
-
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */
|
|
54927
|
-
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */
|
|
54928
|
-
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */
|
|
54929
|
-
/* harmony export */ "ModelFeature": () => (/* reexport safe */
|
|
54930
|
-
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */
|
|
54931
|
-
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */
|
|
54932
|
-
/* harmony export */ "MonochromeMode": () => (/* reexport safe */
|
|
54933
|
-
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */
|
|
54934
|
-
/* harmony export */ "NoContentError": () => (/* reexport safe */
|
|
54935
|
-
/* harmony export */ "NonUniformColor": () => (/* reexport safe */
|
|
54936
|
-
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */
|
|
54937
|
-
/* harmony export */ "Npc": () => (/* reexport safe */
|
|
54938
|
-
/* harmony export */ "NpcCenter": () => (/* reexport safe */
|
|
54939
|
-
/* harmony export */ "NpcCorners": () => (/* reexport safe */
|
|
54940
|
-
/* harmony export */ "OPERATION": () => (/* reexport safe */
|
|
54941
|
-
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */
|
|
54942
|
-
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */
|
|
54943
|
-
/* harmony export */ "OverriddenBy": () => (/* reexport safe */
|
|
54944
|
-
/* harmony export */ "POLICY": () => (/* reexport safe */
|
|
54945
|
-
/* harmony export */ "PackedFeature": () => (/* reexport safe */
|
|
54946
|
-
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */
|
|
54947
|
-
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */
|
|
54948
|
-
/* harmony export */ "Placement2d": () => (/* reexport safe */
|
|
54949
|
-
/* harmony export */ "Placement3d": () => (/* reexport safe */
|
|
54950
|
-
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */
|
|
54951
|
-
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */
|
|
54952
|
-
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */
|
|
54953
|
-
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */
|
|
54954
|
-
/* harmony export */ "PntsHeader": () => (/* reexport safe */
|
|
54955
|
-
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */
|
|
54956
|
-
/* harmony export */ "PolylineData": () => (/* reexport safe */
|
|
54957
|
-
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */
|
|
54958
|
-
/* harmony export */ "PolylineFlags": () => (/* reexport safe */
|
|
54959
|
-
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */
|
|
54960
|
-
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */
|
|
54961
|
-
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */
|
|
54661
|
+
/* harmony export */ "GltfV2ChunkTypes": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_144__.GltfV2ChunkTypes),
|
|
54662
|
+
/* harmony export */ "GltfVersions": () => (/* reexport safe */ _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_144__.GltfVersions),
|
|
54663
|
+
/* harmony export */ "Gradient": () => (/* reexport safe */ _Gradient__WEBPACK_IMPORTED_MODULE_52__.Gradient),
|
|
54664
|
+
/* harmony export */ "GraphicParams": () => (/* reexport safe */ _GraphicParams__WEBPACK_IMPORTED_MODULE_53__.GraphicParams),
|
|
54665
|
+
/* harmony export */ "GridFileDefinition": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GridFileDefinition),
|
|
54666
|
+
/* harmony export */ "GridFileTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.GridFileTransform),
|
|
54667
|
+
/* harmony export */ "GridOrientationType": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_110__.GridOrientationType),
|
|
54668
|
+
/* harmony export */ "GroundPlane": () => (/* reexport safe */ _GroundPlane__WEBPACK_IMPORTED_MODULE_54__.GroundPlane),
|
|
54669
|
+
/* harmony export */ "HSLColor": () => (/* reexport safe */ _HSLColor__WEBPACK_IMPORTED_MODULE_57__.HSLColor),
|
|
54670
|
+
/* harmony export */ "HSVColor": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_58__.HSVColor),
|
|
54671
|
+
/* harmony export */ "HSVConstants": () => (/* reexport safe */ _HSVColor__WEBPACK_IMPORTED_MODULE_58__.HSVConstants),
|
|
54672
|
+
/* harmony export */ "Helmert2DWithZOffset": () => (/* reexport safe */ _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_34__.Helmert2DWithZOffset),
|
|
54673
|
+
/* harmony export */ "HemisphereLights": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.HemisphereLights),
|
|
54674
|
+
/* harmony export */ "HiddenLine": () => (/* reexport safe */ _HiddenLine__WEBPACK_IMPORTED_MODULE_55__.HiddenLine),
|
|
54675
|
+
/* harmony export */ "Hilite": () => (/* reexport safe */ _Hilite__WEBPACK_IMPORTED_MODULE_56__.Hilite),
|
|
54676
|
+
/* harmony export */ "HorizontalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.HorizontalCRS),
|
|
54677
|
+
/* harmony export */ "HorizontalCRSExtent": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.HorizontalCRSExtent),
|
|
54678
|
+
/* harmony export */ "I3dmHeader": () => (/* reexport safe */ _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_145__.I3dmHeader),
|
|
54679
|
+
/* harmony export */ "IModel": () => (/* reexport safe */ _IModel__WEBPACK_IMPORTED_MODULE_60__.IModel),
|
|
54680
|
+
/* harmony export */ "IModelError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.IModelError),
|
|
54681
|
+
/* harmony export */ "IModelNotFoundResponse": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_128__.IModelNotFoundResponse),
|
|
54682
|
+
/* harmony export */ "IModelReadRpcInterface": () => (/* reexport safe */ _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_128__.IModelReadRpcInterface),
|
|
54683
|
+
/* harmony export */ "IModelStatus": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.IModelStatus),
|
|
54684
|
+
/* harmony export */ "IModelTileRpcInterface": () => (/* reexport safe */ _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_129__.IModelTileRpcInterface),
|
|
54685
|
+
/* harmony export */ "IModelVersion": () => (/* reexport safe */ _IModelVersion__WEBPACK_IMPORTED_MODULE_62__.IModelVersion),
|
|
54686
|
+
/* harmony export */ "INSTANCE": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.INSTANCE),
|
|
54687
|
+
/* harmony export */ "ImageBuffer": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageBuffer),
|
|
54688
|
+
/* harmony export */ "ImageBufferFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageBufferFormat),
|
|
54689
|
+
/* harmony export */ "ImageGraphic": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_44__.ImageGraphic),
|
|
54690
|
+
/* harmony export */ "ImageGraphicCorners": () => (/* reexport safe */ _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_44__.ImageGraphicCorners),
|
|
54691
|
+
/* harmony export */ "ImageMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.ImageMapLayerSettings),
|
|
54692
|
+
/* harmony export */ "ImageSource": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageSource),
|
|
54693
|
+
/* harmony export */ "ImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.ImageSourceFormat),
|
|
54694
|
+
/* harmony export */ "ImdlFlags": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__.ImdlFlags),
|
|
54695
|
+
/* harmony export */ "ImdlHeader": () => (/* reexport safe */ _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__.ImdlHeader),
|
|
54696
|
+
/* harmony export */ "InternetConnectivityStatus": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.InternetConnectivityStatus),
|
|
54697
|
+
/* harmony export */ "Interpolation": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_108__.Interpolation),
|
|
54698
|
+
/* harmony export */ "IpcAppChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_67__.IpcAppChannel),
|
|
54699
|
+
/* harmony export */ "IpcSession": () => (/* reexport safe */ _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_66__.IpcSession),
|
|
54700
|
+
/* harmony export */ "IpcWebSocket": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocket),
|
|
54701
|
+
/* harmony export */ "IpcWebSocketBackend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketBackend),
|
|
54702
|
+
/* harmony export */ "IpcWebSocketFrontend": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketFrontend),
|
|
54703
|
+
/* harmony export */ "IpcWebSocketMessage": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketMessage),
|
|
54704
|
+
/* harmony export */ "IpcWebSocketMessageType": () => (/* reexport safe */ _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__.IpcWebSocketMessageType),
|
|
54705
|
+
/* harmony export */ "IpcWebSocketTransport": () => (/* reexport safe */ _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_65__.IpcWebSocketTransport),
|
|
54706
|
+
/* harmony export */ "LightSettings": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.LightSettings),
|
|
54707
|
+
/* harmony export */ "LinePixels": () => (/* reexport safe */ _LinePixels__WEBPACK_IMPORTED_MODULE_69__.LinePixels),
|
|
54708
|
+
/* harmony export */ "LineStyle": () => (/* reexport safe */ _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_45__.LineStyle),
|
|
54709
|
+
/* harmony export */ "MapImagerySettings": () => (/* reexport safe */ _MapImagerySettings__WEBPACK_IMPORTED_MODULE_71__.MapImagerySettings),
|
|
54710
|
+
/* harmony export */ "MapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.MapLayerSettings),
|
|
54711
|
+
/* harmony export */ "MapSubLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.MapSubLayerSettings),
|
|
54712
|
+
/* harmony export */ "MarshalingBinaryMarker": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_117__.MarshalingBinaryMarker),
|
|
54713
|
+
/* harmony export */ "MassPropertiesOperation": () => (/* reexport safe */ _MassProperties__WEBPACK_IMPORTED_MODULE_73__.MassPropertiesOperation),
|
|
54714
|
+
/* harmony export */ "MeshEdge": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshEdge),
|
|
54715
|
+
/* harmony export */ "MeshEdges": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshEdges),
|
|
54716
|
+
/* harmony export */ "MeshPolyline": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshPolyline),
|
|
54717
|
+
/* harmony export */ "MeshPolylineList": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.MeshPolylineList),
|
|
54718
|
+
/* harmony export */ "ModelClipGroup": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_75__.ModelClipGroup),
|
|
54719
|
+
/* harmony export */ "ModelClipGroups": () => (/* reexport safe */ _ModelClipGroup__WEBPACK_IMPORTED_MODULE_75__.ModelClipGroups),
|
|
54720
|
+
/* harmony export */ "ModelFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.ModelFeature),
|
|
54721
|
+
/* harmony export */ "ModelGeometryChanges": () => (/* reexport safe */ _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_82__.ModelGeometryChanges),
|
|
54722
|
+
/* harmony export */ "ModelMapLayerSettings": () => (/* reexport safe */ _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__.ModelMapLayerSettings),
|
|
54723
|
+
/* harmony export */ "MonochromeMode": () => (/* reexport safe */ _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_17__.MonochromeMode),
|
|
54724
|
+
/* harmony export */ "MultiModelPackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.MultiModelPackedFeatureTable),
|
|
54725
|
+
/* harmony export */ "NoContentError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.NoContentError),
|
|
54726
|
+
/* harmony export */ "NonUniformColor": () => (/* reexport safe */ _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__.NonUniformColor),
|
|
54727
|
+
/* harmony export */ "NormalMapFlags": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_74__.NormalMapFlags),
|
|
54728
|
+
/* harmony export */ "Npc": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.Npc),
|
|
54729
|
+
/* harmony export */ "NpcCenter": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.NpcCenter),
|
|
54730
|
+
/* harmony export */ "NpcCorners": () => (/* reexport safe */ _Frustum__WEBPACK_IMPORTED_MODULE_32__.NpcCorners),
|
|
54731
|
+
/* harmony export */ "OPERATION": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.OPERATION),
|
|
54732
|
+
/* harmony export */ "OctEncodedNormal": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_78__.OctEncodedNormal),
|
|
54733
|
+
/* harmony export */ "OctEncodedNormalPair": () => (/* reexport safe */ _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_78__.OctEncodedNormalPair),
|
|
54734
|
+
/* harmony export */ "OverriddenBy": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.OverriddenBy),
|
|
54735
|
+
/* harmony export */ "POLICY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.POLICY),
|
|
54736
|
+
/* harmony export */ "PackedFeature": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.PackedFeature),
|
|
54737
|
+
/* harmony export */ "PackedFeatureModelTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.PackedFeatureModelTable),
|
|
54738
|
+
/* harmony export */ "PackedFeatureTable": () => (/* reexport safe */ _FeatureTable__WEBPACK_IMPORTED_MODULE_30__.PackedFeatureTable),
|
|
54739
|
+
/* harmony export */ "Placement2d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_46__.Placement2d),
|
|
54740
|
+
/* harmony export */ "Placement3d": () => (/* reexport safe */ _geometry_Placement__WEBPACK_IMPORTED_MODULE_46__.Placement3d),
|
|
54741
|
+
/* harmony export */ "PlanProjectionSettings": () => (/* reexport safe */ _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_83__.PlanProjectionSettings),
|
|
54742
|
+
/* harmony export */ "PlanarClipMaskMode": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__.PlanarClipMaskMode),
|
|
54743
|
+
/* harmony export */ "PlanarClipMaskPriority": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__.PlanarClipMaskPriority),
|
|
54744
|
+
/* harmony export */ "PlanarClipMaskSettings": () => (/* reexport safe */ _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__.PlanarClipMaskSettings),
|
|
54745
|
+
/* harmony export */ "PntsHeader": () => (/* reexport safe */ _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_147__.PntsHeader),
|
|
54746
|
+
/* harmony export */ "PointCloudDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_87__.PointCloudDisplaySettings),
|
|
54747
|
+
/* harmony export */ "PolylineData": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineData),
|
|
54748
|
+
/* harmony export */ "PolylineEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineEdgeArgs),
|
|
54749
|
+
/* harmony export */ "PolylineFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineFlags),
|
|
54750
|
+
/* harmony export */ "PolylineTypeFlags": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.PolylineTypeFlags),
|
|
54751
|
+
/* harmony export */ "PositionalVectorTransform": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.PositionalVectorTransform),
|
|
54752
|
+
/* harmony export */ "PrimitiveTypeCode": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_25__.PrimitiveTypeCode),
|
|
54962
54753
|
/* harmony export */ "ProfileOptions": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.ProfileOptions),
|
|
54963
|
-
/* harmony export */ "Projection": () => (/* reexport safe */
|
|
54964
|
-
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */
|
|
54965
|
-
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */
|
|
54966
|
-
/* harmony export */ "QParams2d": () => (/* reexport safe */
|
|
54967
|
-
/* harmony export */ "QParams3d": () => (/* reexport safe */
|
|
54968
|
-
/* harmony export */ "QPoint2d": () => (/* reexport safe */
|
|
54969
|
-
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */
|
|
54970
|
-
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */
|
|
54971
|
-
/* harmony export */ "QPoint2dList": () => (/* reexport safe */
|
|
54972
|
-
/* harmony export */ "QPoint3d": () => (/* reexport safe */
|
|
54973
|
-
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */
|
|
54974
|
-
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */
|
|
54975
|
-
/* harmony export */ "QPoint3dList": () => (/* reexport safe */
|
|
54976
|
-
/* harmony export */ "Quantization": () => (/* reexport safe */
|
|
54977
|
-
/* harmony export */ "QueryBinder": () => (/* reexport safe */
|
|
54978
|
-
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */
|
|
54979
|
-
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */
|
|
54980
|
-
/* harmony export */ "REGISTRY": () => (/* reexport safe */
|
|
54981
|
-
/* harmony export */ "Rank": () => (/* reexport safe */
|
|
54982
|
-
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */
|
|
54983
|
-
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */
|
|
54984
|
-
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */
|
|
54985
|
-
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */
|
|
54986
|
-
/* harmony export */ "RelatedElement": () => (/* reexport safe */
|
|
54987
|
-
/* harmony export */ "RenderMaterial": () => (/* reexport safe */
|
|
54988
|
-
/* harmony export */ "RenderMode": () => (/* reexport safe */
|
|
54989
|
-
/* harmony export */ "RenderSchedule": () => (/* reexport safe */
|
|
54990
|
-
/* harmony export */ "RenderTexture": () => (/* reexport safe */
|
|
54991
|
-
/* harmony export */ "ResponseLike": () => (/* reexport safe */
|
|
54992
|
-
/* harmony export */ "RgbColor": () => (/* reexport safe */
|
|
54993
|
-
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */
|
|
54994
|
-
/* harmony export */ "RpcContentType": () => (/* reexport safe */
|
|
54995
|
-
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */
|
|
54996
|
-
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */
|
|
54997
|
-
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */
|
|
54998
|
-
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */
|
|
54999
|
-
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */
|
|
55000
|
-
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */
|
|
55001
|
-
/* harmony export */ "RpcInterface": () => (/* reexport safe */
|
|
55002
|
-
/* harmony export */ "RpcInvocation": () => (/* reexport safe */
|
|
55003
|
-
/* harmony export */ "RpcManager": () => (/* reexport safe */
|
|
55004
|
-
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */
|
|
55005
|
-
/* harmony export */ "RpcMultipart": () => (/* reexport safe */
|
|
55006
|
-
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */
|
|
55007
|
-
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */
|
|
55008
|
-
/* harmony export */ "RpcOperation": () => (/* reexport safe */
|
|
55009
|
-
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */
|
|
55010
|
-
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */
|
|
55011
|
-
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */
|
|
55012
|
-
/* harmony export */ "RpcProtocol": () => (/* reexport safe */
|
|
55013
|
-
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */
|
|
55014
|
-
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */
|
|
55015
|
-
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */
|
|
55016
|
-
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */
|
|
55017
|
-
/* harmony export */ "RpcPushService": () => (/* reexport safe */
|
|
55018
|
-
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */
|
|
55019
|
-
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */
|
|
55020
|
-
/* harmony export */ "RpcRegistry": () => (/* reexport safe */
|
|
55021
|
-
/* harmony export */ "RpcRequest": () => (/* reexport safe */
|
|
55022
|
-
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */
|
|
55023
|
-
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */
|
|
55024
|
-
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */
|
|
55025
|
-
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */
|
|
55026
|
-
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */
|
|
55027
|
-
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */
|
|
55028
|
-
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */
|
|
55029
|
-
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */
|
|
54754
|
+
/* harmony export */ "Projection": () => (/* reexport safe */ _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__.Projection),
|
|
54755
|
+
/* harmony export */ "PropertyMetaData": () => (/* reexport safe */ _EntityProps__WEBPACK_IMPORTED_MODULE_25__.PropertyMetaData),
|
|
54756
|
+
/* harmony export */ "PropertyMetaDataMap": () => (/* reexport safe */ _ECSqlReader__WEBPACK_IMPORTED_MODULE_80__.PropertyMetaDataMap),
|
|
54757
|
+
/* harmony export */ "QParams2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QParams2d),
|
|
54758
|
+
/* harmony export */ "QParams3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QParams3d),
|
|
54759
|
+
/* harmony export */ "QPoint2d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2d),
|
|
54760
|
+
/* harmony export */ "QPoint2dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2dBuffer),
|
|
54761
|
+
/* harmony export */ "QPoint2dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2dBufferBuilder),
|
|
54762
|
+
/* harmony export */ "QPoint2dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint2dList),
|
|
54763
|
+
/* harmony export */ "QPoint3d": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3d),
|
|
54764
|
+
/* harmony export */ "QPoint3dBuffer": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3dBuffer),
|
|
54765
|
+
/* harmony export */ "QPoint3dBufferBuilder": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3dBufferBuilder),
|
|
54766
|
+
/* harmony export */ "QPoint3dList": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.QPoint3dList),
|
|
54767
|
+
/* harmony export */ "Quantization": () => (/* reexport safe */ _QPoint__WEBPACK_IMPORTED_MODULE_85__.Quantization),
|
|
54768
|
+
/* harmony export */ "QueryBinder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.QueryBinder),
|
|
54769
|
+
/* harmony export */ "QueryOptionsBuilder": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.QueryOptionsBuilder),
|
|
54770
|
+
/* harmony export */ "QueryRowFormat": () => (/* reexport safe */ _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__.QueryRowFormat),
|
|
54771
|
+
/* harmony export */ "REGISTRY": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.REGISTRY),
|
|
54772
|
+
/* harmony export */ "Rank": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.Rank),
|
|
54773
|
+
/* harmony export */ "RealityDataFormat": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.RealityDataFormat),
|
|
54774
|
+
/* harmony export */ "RealityDataProvider": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.RealityDataProvider),
|
|
54775
|
+
/* harmony export */ "RealityDataSourceKey": () => (/* reexport safe */ _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__.RealityDataSourceKey),
|
|
54776
|
+
/* harmony export */ "RealityModelDisplaySettings": () => (/* reexport safe */ _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_87__.RealityModelDisplaySettings),
|
|
54777
|
+
/* harmony export */ "RelatedElement": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.RelatedElement),
|
|
54778
|
+
/* harmony export */ "RenderMaterial": () => (/* reexport safe */ _RenderMaterial__WEBPACK_IMPORTED_MODULE_89__.RenderMaterial),
|
|
54779
|
+
/* harmony export */ "RenderMode": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_111__.RenderMode),
|
|
54780
|
+
/* harmony export */ "RenderSchedule": () => (/* reexport safe */ _RenderSchedule__WEBPACK_IMPORTED_MODULE_90__.RenderSchedule),
|
|
54781
|
+
/* harmony export */ "RenderTexture": () => (/* reexport safe */ _RenderTexture__WEBPACK_IMPORTED_MODULE_91__.RenderTexture),
|
|
54782
|
+
/* harmony export */ "ResponseLike": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__.ResponseLike),
|
|
54783
|
+
/* harmony export */ "RgbColor": () => (/* reexport safe */ _RgbColor__WEBPACK_IMPORTED_MODULE_92__.RgbColor),
|
|
54784
|
+
/* harmony export */ "RpcConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcConfiguration),
|
|
54785
|
+
/* harmony export */ "RpcContentType": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcContentType),
|
|
54786
|
+
/* harmony export */ "RpcControlChannel": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__.RpcControlChannel),
|
|
54787
|
+
/* harmony export */ "RpcControlResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__.RpcControlResponse),
|
|
54788
|
+
/* harmony export */ "RpcDefaultConfiguration": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcDefaultConfiguration),
|
|
54789
|
+
/* harmony export */ "RpcDirectProtocol": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcDirectProtocol),
|
|
54790
|
+
/* harmony export */ "RpcDirectRequest": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcDirectRequest),
|
|
54791
|
+
/* harmony export */ "RpcEndpoint": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcEndpoint),
|
|
54792
|
+
/* harmony export */ "RpcInterface": () => (/* reexport safe */ _RpcInterface__WEBPACK_IMPORTED_MODULE_133__.RpcInterface),
|
|
54793
|
+
/* harmony export */ "RpcInvocation": () => (/* reexport safe */ _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_115__.RpcInvocation),
|
|
54794
|
+
/* harmony export */ "RpcManager": () => (/* reexport safe */ _RpcManager__WEBPACK_IMPORTED_MODULE_93__.RpcManager),
|
|
54795
|
+
/* harmony export */ "RpcMarshaling": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_117__.RpcMarshaling),
|
|
54796
|
+
/* harmony export */ "RpcMultipart": () => (/* reexport safe */ _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_137__.RpcMultipart),
|
|
54797
|
+
/* harmony export */ "RpcNotFoundResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__.RpcNotFoundResponse),
|
|
54798
|
+
/* harmony export */ "RpcOpenAPIDescription": () => (/* reexport safe */ _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_136__.RpcOpenAPIDescription),
|
|
54799
|
+
/* harmony export */ "RpcOperation": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_118__.RpcOperation),
|
|
54800
|
+
/* harmony export */ "RpcOperationPolicy": () => (/* reexport safe */ _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_118__.RpcOperationPolicy),
|
|
54801
|
+
/* harmony export */ "RpcPendingQueue": () => (/* reexport safe */ _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_119__.RpcPendingQueue),
|
|
54802
|
+
/* harmony export */ "RpcPendingResponse": () => (/* reexport safe */ _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__.RpcPendingResponse),
|
|
54803
|
+
/* harmony export */ "RpcProtocol": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_120__.RpcProtocol),
|
|
54804
|
+
/* harmony export */ "RpcProtocolEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcProtocolEvent),
|
|
54805
|
+
/* harmony export */ "RpcProtocolVersion": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_120__.RpcProtocolVersion),
|
|
54806
|
+
/* harmony export */ "RpcPushChannel": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushChannel),
|
|
54807
|
+
/* harmony export */ "RpcPushConnection": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushConnection),
|
|
54808
|
+
/* harmony export */ "RpcPushService": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushService),
|
|
54809
|
+
/* harmony export */ "RpcPushSubscription": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushSubscription),
|
|
54810
|
+
/* harmony export */ "RpcPushTransport": () => (/* reexport safe */ _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__.RpcPushTransport),
|
|
54811
|
+
/* harmony export */ "RpcRegistry": () => (/* reexport safe */ _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__.RpcRegistry),
|
|
54812
|
+
/* harmony export */ "RpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__.RpcRequest),
|
|
54813
|
+
/* harmony export */ "RpcRequestEvent": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcRequestEvent),
|
|
54814
|
+
/* harmony export */ "RpcRequestFulfillment": () => (/* reexport safe */ _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_120__.RpcRequestFulfillment),
|
|
54815
|
+
/* harmony export */ "RpcRequestStatus": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcRequestStatus),
|
|
54816
|
+
/* harmony export */ "RpcResponseCacheControl": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.RpcResponseCacheControl),
|
|
54817
|
+
/* harmony export */ "RpcRoutingMap": () => (/* reexport safe */ _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__.RpcRoutingMap),
|
|
54818
|
+
/* harmony export */ "RpcRoutingToken": () => (/* reexport safe */ _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_124__.RpcRoutingToken),
|
|
54819
|
+
/* harmony export */ "RpcSerializedValue": () => (/* reexport safe */ _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_117__.RpcSerializedValue),
|
|
54820
|
+
/* harmony export */ "RpcSessionInvocation": () => (/* reexport safe */ _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_116__.RpcSessionInvocation),
|
|
55030
54821
|
/* harmony export */ "SchemaState": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SchemaState),
|
|
55031
|
-
/* harmony export */ "SectionType": () => (/* reexport safe */
|
|
55032
|
-
/* harmony export */ "ServerError": () => (/* reexport safe */
|
|
55033
|
-
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */
|
|
55034
|
-
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */
|
|
55035
|
-
/* harmony export */ "SkyBox": () => (/* reexport safe */
|
|
55036
|
-
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */
|
|
55037
|
-
/* harmony export */ "SkyCube": () => (/* reexport safe */
|
|
55038
|
-
/* harmony export */ "SkyGradient": () => (/* reexport safe */
|
|
55039
|
-
/* harmony export */ "SkySphere": () => (/* reexport safe */
|
|
55040
|
-
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */
|
|
55041
|
-
/* harmony export */ "SolarLight": () => (/* reexport safe */
|
|
55042
|
-
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */
|
|
55043
|
-
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */
|
|
55044
|
-
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */
|
|
55045
|
-
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */
|
|
55046
|
-
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */
|
|
55047
|
-
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */
|
|
55048
|
-
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */
|
|
55049
|
-
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */
|
|
54822
|
+
/* harmony export */ "SectionType": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.SectionType),
|
|
54823
|
+
/* harmony export */ "ServerError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ServerError),
|
|
54824
|
+
/* harmony export */ "ServerTimeoutError": () => (/* reexport safe */ _IModelError__WEBPACK_IMPORTED_MODULE_61__.ServerTimeoutError),
|
|
54825
|
+
/* harmony export */ "SilhouetteEdgeArgs": () => (/* reexport safe */ _Render__WEBPACK_IMPORTED_MODULE_88__.SilhouetteEdgeArgs),
|
|
54826
|
+
/* harmony export */ "SkyBox": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkyBox),
|
|
54827
|
+
/* harmony export */ "SkyBoxImageType": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkyBoxImageType),
|
|
54828
|
+
/* harmony export */ "SkyCube": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkyCube),
|
|
54829
|
+
/* harmony export */ "SkyGradient": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkyGradient),
|
|
54830
|
+
/* harmony export */ "SkySphere": () => (/* reexport safe */ _SkyBox__WEBPACK_IMPORTED_MODULE_95__.SkySphere),
|
|
54831
|
+
/* harmony export */ "SnapshotIModelRpcInterface": () => (/* reexport safe */ _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_130__.SnapshotIModelRpcInterface),
|
|
54832
|
+
/* harmony export */ "SolarLight": () => (/* reexport safe */ _LightSettings__WEBPACK_IMPORTED_MODULE_68__.SolarLight),
|
|
54833
|
+
/* harmony export */ "SolarShadowSettings": () => (/* reexport safe */ _SolarShadows__WEBPACK_IMPORTED_MODULE_98__.SolarShadowSettings),
|
|
54834
|
+
/* harmony export */ "SpatialClassifier": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifier),
|
|
54835
|
+
/* harmony export */ "SpatialClassifierFlags": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifierFlags),
|
|
54836
|
+
/* harmony export */ "SpatialClassifierInsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifierInsideDisplay),
|
|
54837
|
+
/* harmony export */ "SpatialClassifierOutsideDisplay": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifierOutsideDisplay),
|
|
54838
|
+
/* harmony export */ "SpatialClassifiers": () => (/* reexport safe */ _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__.SpatialClassifiers),
|
|
54839
|
+
/* harmony export */ "SubCategoryAppearance": () => (/* reexport safe */ _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_100__.SubCategoryAppearance),
|
|
54840
|
+
/* harmony export */ "SubCategoryOverride": () => (/* reexport safe */ _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_101__.SubCategoryOverride),
|
|
55050
54841
|
/* harmony export */ "SyncMode": () => (/* reexport safe */ _BriefcaseTypes__WEBPACK_IMPORTED_MODULE_6__.SyncMode),
|
|
55051
|
-
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */
|
|
55052
|
-
/* harmony export */ "TerrainSettings": () => (/* reexport safe */
|
|
55053
|
-
/* harmony export */ "TestRpcManager": () => (/* reexport safe */
|
|
55054
|
-
/* harmony export */ "TextString": () => (/* reexport safe */
|
|
55055
|
-
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */
|
|
55056
|
-
/* harmony export */ "TextureMapping": () => (/* reexport safe */
|
|
55057
|
-
/* harmony export */ "TextureTransparency": () => (/* reexport safe */
|
|
55058
|
-
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */
|
|
55059
|
-
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */
|
|
55060
|
-
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */
|
|
55061
|
-
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */
|
|
55062
|
-
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */
|
|
55063
|
-
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */
|
|
55064
|
-
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */
|
|
55065
|
-
/* harmony export */ "TileContentSource": () => (/* reexport safe */
|
|
55066
|
-
/* harmony export */ "TileFormat": () => (/* reexport safe */
|
|
55067
|
-
/* harmony export */ "TileHeader": () => (/* reexport safe */
|
|
55068
|
-
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */
|
|
55069
|
-
/* harmony export */ "TileOptions": () => (/* reexport safe */
|
|
55070
|
-
/* harmony export */ "TileReadError": () => (/* reexport safe */
|
|
55071
|
-
/* harmony export */ "TileReadStatus": () => (/* reexport safe */
|
|
55072
|
-
/* harmony export */ "TreeFlags": () => (/* reexport safe */
|
|
55073
|
-
/* harmony export */ "Tween": () => (/* reexport safe */
|
|
55074
|
-
/* harmony export */ "Tweens": () => (/* reexport safe */
|
|
55075
|
-
/* harmony export */ "TxnAction": () => (/* reexport safe */
|
|
55076
|
-
/* harmony export */ "TypeDefinition": () => (/* reexport safe */
|
|
54842
|
+
/* harmony export */ "TerrainHeightOriginMode": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_102__.TerrainHeightOriginMode),
|
|
54843
|
+
/* harmony export */ "TerrainSettings": () => (/* reexport safe */ _TerrainSettings__WEBPACK_IMPORTED_MODULE_102__.TerrainSettings),
|
|
54844
|
+
/* harmony export */ "TestRpcManager": () => (/* reexport safe */ _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_131__.TestRpcManager),
|
|
54845
|
+
/* harmony export */ "TextString": () => (/* reexport safe */ _geometry_TextString__WEBPACK_IMPORTED_MODULE_48__.TextString),
|
|
54846
|
+
/* harmony export */ "TextureMapUnits": () => (/* reexport safe */ _MaterialProps__WEBPACK_IMPORTED_MODULE_74__.TextureMapUnits),
|
|
54847
|
+
/* harmony export */ "TextureMapping": () => (/* reexport safe */ _TextureMapping__WEBPACK_IMPORTED_MODULE_103__.TextureMapping),
|
|
54848
|
+
/* harmony export */ "TextureTransparency": () => (/* reexport safe */ _TextureProps__WEBPACK_IMPORTED_MODULE_104__.TextureTransparency),
|
|
54849
|
+
/* harmony export */ "ThematicDisplay": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicDisplay),
|
|
54850
|
+
/* harmony export */ "ThematicDisplayMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicDisplayMode),
|
|
54851
|
+
/* harmony export */ "ThematicDisplaySensor": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicDisplaySensor),
|
|
54852
|
+
/* harmony export */ "ThematicDisplaySensorSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicDisplaySensorSettings),
|
|
54853
|
+
/* harmony export */ "ThematicGradientColorScheme": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicGradientColorScheme),
|
|
54854
|
+
/* harmony export */ "ThematicGradientMode": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicGradientMode),
|
|
54855
|
+
/* harmony export */ "ThematicGradientSettings": () => (/* reexport safe */ _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__.ThematicGradientSettings),
|
|
54856
|
+
/* harmony export */ "TileContentSource": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_107__.TileContentSource),
|
|
54857
|
+
/* harmony export */ "TileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.TileFormat),
|
|
54858
|
+
/* harmony export */ "TileHeader": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.TileHeader),
|
|
54859
|
+
/* harmony export */ "TileMetadataReader": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.TileMetadataReader),
|
|
54860
|
+
/* harmony export */ "TileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.TileOptions),
|
|
54861
|
+
/* harmony export */ "TileReadError": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.TileReadError),
|
|
54862
|
+
/* harmony export */ "TileReadStatus": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.TileReadStatus),
|
|
54863
|
+
/* harmony export */ "TreeFlags": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.TreeFlags),
|
|
54864
|
+
/* harmony export */ "Tween": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_108__.Tween),
|
|
54865
|
+
/* harmony export */ "Tweens": () => (/* reexport safe */ _Tween__WEBPACK_IMPORTED_MODULE_108__.Tweens),
|
|
54866
|
+
/* harmony export */ "TxnAction": () => (/* reexport safe */ _TxnAction__WEBPACK_IMPORTED_MODULE_109__.TxnAction),
|
|
54867
|
+
/* harmony export */ "TypeDefinition": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.TypeDefinition),
|
|
55077
54868
|
/* harmony export */ "TypeOfChange": () => (/* reexport safe */ _ChangedElements__WEBPACK_IMPORTED_MODULE_8__.TypeOfChange),
|
|
55078
|
-
/* harmony export */ "VerticalCRS": () => (/* reexport safe */
|
|
55079
|
-
/* harmony export */ "ViewDetails": () => (/* reexport safe */
|
|
55080
|
-
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */
|
|
55081
|
-
/* harmony export */ "ViewFlags": () => (/* reexport safe */
|
|
55082
|
-
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */
|
|
55083
|
-
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */
|
|
55084
|
-
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */
|
|
55085
|
-
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */
|
|
55086
|
-
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */
|
|
55087
|
-
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */
|
|
55088
|
-
/* harmony export */ "XyzRotation": () => (/* reexport safe */
|
|
55089
|
-
/* harmony export */ "aggregateLoad": () => (/* reexport safe */
|
|
55090
|
-
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */
|
|
55091
|
-
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */
|
|
55092
|
-
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */
|
|
55093
|
-
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */
|
|
55094
|
-
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */
|
|
55095
|
-
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */
|
|
55096
|
-
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */
|
|
55097
|
-
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */
|
|
55098
|
-
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */
|
|
55099
|
-
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */
|
|
55100
|
-
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */
|
|
55101
|
-
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */
|
|
55102
|
-
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */
|
|
55103
|
-
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */
|
|
55104
|
-
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */
|
|
55105
|
-
/* harmony export */ "iTwinChannel": () => (/* reexport safe */
|
|
55106
|
-
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */
|
|
55107
|
-
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */
|
|
55108
|
-
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */
|
|
55109
|
-
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */
|
|
55110
|
-
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */
|
|
55111
|
-
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */
|
|
55112
|
-
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */
|
|
55113
|
-
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */
|
|
55114
|
-
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */
|
|
55115
|
-
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */
|
|
55116
|
-
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */
|
|
55117
|
-
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */
|
|
55118
|
-
/* harmony export */ "readElementMeshes": () => (/* reexport safe */
|
|
55119
|
-
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */
|
|
55120
|
-
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */
|
|
54869
|
+
/* harmony export */ "VerticalCRS": () => (/* reexport safe */ _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__.VerticalCRS),
|
|
54870
|
+
/* harmony export */ "ViewDetails": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_110__.ViewDetails),
|
|
54871
|
+
/* harmony export */ "ViewDetails3d": () => (/* reexport safe */ _ViewDetails__WEBPACK_IMPORTED_MODULE_110__.ViewDetails3d),
|
|
54872
|
+
/* harmony export */ "ViewFlags": () => (/* reexport safe */ _ViewFlags__WEBPACK_IMPORTED_MODULE_111__.ViewFlags),
|
|
54873
|
+
/* harmony export */ "WEB_RPC_CONSTANTS": () => (/* reexport safe */ _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__.WEB_RPC_CONSTANTS),
|
|
54874
|
+
/* harmony export */ "WebAppRpcLogging": () => (/* reexport safe */ _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_140__.WebAppRpcLogging),
|
|
54875
|
+
/* harmony export */ "WebAppRpcProtocol": () => (/* reexport safe */ _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_138__.WebAppRpcProtocol),
|
|
54876
|
+
/* harmony export */ "WebAppRpcRequest": () => (/* reexport safe */ _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_139__.WebAppRpcRequest),
|
|
54877
|
+
/* harmony export */ "WhiteOnWhiteReversalSettings": () => (/* reexport safe */ _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_151__.WhiteOnWhiteReversalSettings),
|
|
54878
|
+
/* harmony export */ "WipRpcInterface": () => (/* reexport safe */ _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_132__.WipRpcInterface),
|
|
54879
|
+
/* harmony export */ "XyzRotation": () => (/* reexport safe */ _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__.XyzRotation),
|
|
54880
|
+
/* harmony export */ "aggregateLoad": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__.aggregateLoad),
|
|
54881
|
+
/* harmony export */ "bisectTileRange2d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.bisectTileRange2d),
|
|
54882
|
+
/* harmony export */ "bisectTileRange3d": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.bisectTileRange3d),
|
|
54883
|
+
/* harmony export */ "calculateSolarAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__.calculateSolarAngles),
|
|
54884
|
+
/* harmony export */ "calculateSolarDirection": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__.calculateSolarDirection),
|
|
54885
|
+
/* harmony export */ "calculateSolarDirectionFromAngles": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__.calculateSolarDirectionFromAngles),
|
|
54886
|
+
/* harmony export */ "calculateSunriseOrSunset": () => (/* reexport safe */ _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__.calculateSunriseOrSunset),
|
|
54887
|
+
/* harmony export */ "compareIModelTileTreeIds": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.compareIModelTileTreeIds),
|
|
54888
|
+
/* harmony export */ "computeChildTileProps": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.computeChildTileProps),
|
|
54889
|
+
/* harmony export */ "computeChildTileRanges": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.computeChildTileRanges),
|
|
54890
|
+
/* harmony export */ "computeTileChordTolerance": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.computeTileChordTolerance),
|
|
54891
|
+
/* harmony export */ "defaultTileOptions": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.defaultTileOptions),
|
|
54892
|
+
/* harmony export */ "getMaximumMajorTileFormatVersion": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.getMaximumMajorTileFormatVersion),
|
|
54893
|
+
/* harmony export */ "getPullChangesIpcChannel": () => (/* reexport safe */ _IpcAppProps__WEBPACK_IMPORTED_MODULE_67__.getPullChangesIpcChannel),
|
|
54894
|
+
/* harmony export */ "getTileObjectReference": () => (/* reexport safe */ _TileProps__WEBPACK_IMPORTED_MODULE_107__.getTileObjectReference),
|
|
54895
|
+
/* harmony export */ "iModelTileTreeIdToString": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.iModelTileTreeIdToString),
|
|
54896
|
+
/* harmony export */ "iTwinChannel": () => (/* reexport safe */ _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_63__.iTwinChannel),
|
|
54897
|
+
/* harmony export */ "initializeRpcRequest": () => (/* reexport safe */ _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__.initializeRpcRequest),
|
|
54898
|
+
/* harmony export */ "isKnownTileFormat": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.isKnownTileFormat),
|
|
54899
|
+
/* harmony export */ "isPlacement2dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.isPlacement2dProps),
|
|
54900
|
+
/* harmony export */ "isPlacement3dProps": () => (/* reexport safe */ _ElementProps__WEBPACK_IMPORTED_MODULE_23__.isPlacement3dProps),
|
|
54901
|
+
/* harmony export */ "isPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.isPowerOfTwo),
|
|
54902
|
+
/* harmony export */ "isValidImageSourceFormat": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.isValidImageSourceFormat),
|
|
54903
|
+
/* harmony export */ "mapToGeoServiceStatus": () => (/* reexport safe */ _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_33__.mapToGeoServiceStatus),
|
|
54904
|
+
/* harmony export */ "nativeAppChannel": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.nativeAppChannel),
|
|
54905
|
+
/* harmony export */ "nativeAppNotify": () => (/* reexport safe */ _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__.nativeAppNotify),
|
|
54906
|
+
/* harmony export */ "nextHighestPowerOfTwo": () => (/* reexport safe */ _Image__WEBPACK_IMPORTED_MODULE_59__.nextHighestPowerOfTwo),
|
|
54907
|
+
/* harmony export */ "nextPoint3d64FromByteStream": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.nextPoint3d64FromByteStream),
|
|
54908
|
+
/* harmony export */ "parseTileTreeIdAndContentId": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.parseTileTreeIdAndContentId),
|
|
54909
|
+
/* harmony export */ "readElementMeshes": () => (/* reexport safe */ _ElementMesh__WEBPACK_IMPORTED_MODULE_22__.readElementMeshes),
|
|
54910
|
+
/* harmony export */ "readTileContentDescription": () => (/* reexport safe */ _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__.readTileContentDescription),
|
|
54911
|
+
/* harmony export */ "tileFormatFromNumber": () => (/* reexport safe */ _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__.tileFormatFromNumber)
|
|
55121
54912
|
/* harmony export */ });
|
|
55122
54913
|
/* harmony import */ var _AmbientOcclusion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AmbientOcclusion */ "../../core/common/lib/esm/AmbientOcclusion.js");
|
|
55123
54914
|
/* harmony import */ var _AnalysisStyle__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AnalysisStyle */ "../../core/common/lib/esm/AnalysisStyle.js");
|
|
@@ -55131,148 +54922,146 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55131
54922
|
/* harmony import */ var _ChangedEntities__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./ChangedEntities */ "../../core/common/lib/esm/ChangedEntities.js");
|
|
55132
54923
|
/* harmony import */ var _ChangesetProps__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./ChangesetProps */ "../../core/common/lib/esm/ChangesetProps.js");
|
|
55133
54924
|
/* harmony import */ var _ClipStyle__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./ClipStyle */ "../../core/common/lib/esm/ClipStyle.js");
|
|
55134
|
-
/* harmony import */ var
|
|
55135
|
-
/* harmony import */ var
|
|
55136
|
-
/* harmony import */ var
|
|
55137
|
-
/* harmony import */ var
|
|
55138
|
-
/* harmony import */ var
|
|
55139
|
-
/* harmony import */ var
|
|
55140
|
-
/* harmony import */ var
|
|
55141
|
-
/* harmony import */ var
|
|
55142
|
-
/* harmony import */ var
|
|
55143
|
-
/* harmony import */ var
|
|
55144
|
-
/* harmony import */ var
|
|
55145
|
-
/* harmony import */ var
|
|
55146
|
-
/* harmony import */ var
|
|
55147
|
-
/* harmony import */ var
|
|
55148
|
-
/* harmony import */ var
|
|
55149
|
-
/* harmony import */ var
|
|
55150
|
-
/* harmony import */ var
|
|
55151
|
-
/* harmony import */ var
|
|
55152
|
-
/* harmony import */ var
|
|
55153
|
-
/* harmony import */ var
|
|
55154
|
-
/* harmony import */ var
|
|
55155
|
-
/* harmony import */ var
|
|
55156
|
-
/* harmony import */ var
|
|
55157
|
-
/* harmony import */ var
|
|
55158
|
-
/* harmony import */ var
|
|
55159
|
-
/* harmony import */ var
|
|
55160
|
-
/* harmony import */ var
|
|
55161
|
-
/* harmony import */ var
|
|
55162
|
-
/* harmony import */ var
|
|
55163
|
-
/* harmony import */ var
|
|
55164
|
-
/* harmony import */ var
|
|
55165
|
-
/* harmony import */ var
|
|
55166
|
-
/* harmony import */ var
|
|
55167
|
-
/* harmony import */ var
|
|
55168
|
-
/* harmony import */ var
|
|
55169
|
-
/* harmony import */ var
|
|
55170
|
-
/* harmony import */ var
|
|
55171
|
-
/* harmony import */ var
|
|
55172
|
-
/* harmony import */ var
|
|
55173
|
-
/* harmony import */ var
|
|
55174
|
-
/* harmony import */ var
|
|
55175
|
-
/* harmony import */ var
|
|
55176
|
-
/* harmony import */ var
|
|
55177
|
-
/* harmony import */ var
|
|
55178
|
-
/* harmony import */ var
|
|
55179
|
-
/* harmony import */ var
|
|
55180
|
-
/* harmony import */ var
|
|
55181
|
-
/* harmony import */ var
|
|
55182
|
-
/* harmony import */ var
|
|
55183
|
-
/* harmony import */ var
|
|
55184
|
-
/* harmony import */ var
|
|
55185
|
-
/* harmony import */ var
|
|
55186
|
-
/* harmony import */ var
|
|
55187
|
-
/* harmony import */ var
|
|
55188
|
-
/* harmony import */ var
|
|
55189
|
-
/* harmony import */ var
|
|
55190
|
-
/* harmony import */ var
|
|
55191
|
-
/* harmony import */ var
|
|
55192
|
-
/* harmony import */ var
|
|
55193
|
-
/* harmony import */ var
|
|
55194
|
-
/* harmony import */ var
|
|
55195
|
-
/* harmony import */ var
|
|
55196
|
-
/* harmony import */ var
|
|
55197
|
-
/* harmony import */ var
|
|
55198
|
-
/* harmony import */ var
|
|
55199
|
-
/* harmony import */ var
|
|
55200
|
-
/* harmony import */ var
|
|
55201
|
-
/* harmony import */ var
|
|
55202
|
-
/* harmony import */ var
|
|
55203
|
-
/* harmony import */ var
|
|
55204
|
-
/* harmony import */ var
|
|
55205
|
-
/* harmony import */ var
|
|
55206
|
-
/* harmony import */ var
|
|
55207
|
-
/* harmony import */ var
|
|
55208
|
-
/* harmony import */ var
|
|
55209
|
-
/* harmony import */ var
|
|
55210
|
-
/* harmony import */ var
|
|
55211
|
-
/* harmony import */ var
|
|
55212
|
-
/* harmony import */ var
|
|
55213
|
-
/* harmony import */ var
|
|
55214
|
-
/* harmony import */ var
|
|
55215
|
-
/* harmony import */ var
|
|
55216
|
-
/* harmony import */ var
|
|
55217
|
-
/* harmony import */ var
|
|
55218
|
-
/* harmony import */ var
|
|
55219
|
-
/* harmony import */ var
|
|
55220
|
-
/* harmony import */ var
|
|
55221
|
-
/* harmony import */ var
|
|
55222
|
-
/* harmony import */ var
|
|
55223
|
-
/* harmony import */ var
|
|
55224
|
-
/* harmony import */ var
|
|
55225
|
-
/* harmony import */ var
|
|
55226
|
-
/* harmony import */ var
|
|
55227
|
-
/* harmony import */ var
|
|
55228
|
-
/* harmony import */ var
|
|
55229
|
-
/* harmony import */ var
|
|
55230
|
-
/* harmony import */ var
|
|
55231
|
-
/* harmony import */ var
|
|
55232
|
-
/* harmony import */ var
|
|
55233
|
-
/* harmony import */ var
|
|
55234
|
-
/* harmony import */ var
|
|
55235
|
-
/* harmony import */ var
|
|
55236
|
-
/* harmony import */ var
|
|
55237
|
-
/* harmony import */ var
|
|
55238
|
-
/* harmony import */ var
|
|
55239
|
-
/* harmony import */ var
|
|
55240
|
-
/* harmony import */ var
|
|
55241
|
-
/* harmony import */ var
|
|
55242
|
-
/* harmony import */ var
|
|
55243
|
-
/* harmony import */ var
|
|
55244
|
-
/* harmony import */ var
|
|
55245
|
-
/* harmony import */ var
|
|
55246
|
-
/* harmony import */ var
|
|
55247
|
-
/* harmony import */ var
|
|
55248
|
-
/* harmony import */ var
|
|
55249
|
-
/* harmony import */ var
|
|
55250
|
-
/* harmony import */ var
|
|
55251
|
-
/* harmony import */ var
|
|
55252
|
-
/* harmony import */ var
|
|
55253
|
-
/* harmony import */ var
|
|
55254
|
-
/* harmony import */ var
|
|
55255
|
-
/* harmony import */ var
|
|
55256
|
-
/* harmony import */ var
|
|
55257
|
-
/* harmony import */ var
|
|
55258
|
-
/* harmony import */ var
|
|
55259
|
-
/* harmony import */ var
|
|
55260
|
-
/* harmony import */ var
|
|
55261
|
-
/* harmony import */ var
|
|
55262
|
-
/* harmony import */ var
|
|
55263
|
-
/* harmony import */ var
|
|
55264
|
-
/* harmony import */ var
|
|
55265
|
-
/* harmony import */ var
|
|
55266
|
-
/* harmony import */ var
|
|
55267
|
-
/* harmony import */ var
|
|
55268
|
-
/* harmony import */ var
|
|
55269
|
-
/* harmony import */ var
|
|
55270
|
-
/* harmony import */ var
|
|
55271
|
-
/* harmony import */ var
|
|
55272
|
-
/* harmony import */ var
|
|
55273
|
-
/* harmony import */ var
|
|
55274
|
-
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_152__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
55275
|
-
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_153__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
54925
|
+
/* harmony import */ var _Code__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./Code */ "../../core/common/lib/esm/Code.js");
|
|
54926
|
+
/* harmony import */ var _ColorByName__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./ColorByName */ "../../core/common/lib/esm/ColorByName.js");
|
|
54927
|
+
/* harmony import */ var _ColorDef__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./ColorDef */ "../../core/common/lib/esm/ColorDef.js");
|
|
54928
|
+
/* harmony import */ var _CommonLoggerCategory__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./CommonLoggerCategory */ "../../core/common/lib/esm/CommonLoggerCategory.js");
|
|
54929
|
+
/* harmony import */ var _ContextRealityModel__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./ContextRealityModel */ "../../core/common/lib/esm/ContextRealityModel.js");
|
|
54930
|
+
/* harmony import */ var _DisplayStyleSettings__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./DisplayStyleSettings */ "../../core/common/lib/esm/DisplayStyleSettings.js");
|
|
54931
|
+
/* harmony import */ var _domains_FunctionalElementProps__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./domains/FunctionalElementProps */ "../../core/common/lib/esm/domains/FunctionalElementProps.js");
|
|
54932
|
+
/* harmony import */ var _domains_GenericElementProps__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./domains/GenericElementProps */ "../../core/common/lib/esm/domains/GenericElementProps.js");
|
|
54933
|
+
/* harmony import */ var _ECSqlTypes__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./ECSqlTypes */ "../../core/common/lib/esm/ECSqlTypes.js");
|
|
54934
|
+
/* harmony import */ var _ECSchemaProps__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./ECSchemaProps */ "../../core/common/lib/esm/ECSchemaProps.js");
|
|
54935
|
+
/* harmony import */ var _ElementMesh__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./ElementMesh */ "../../core/common/lib/esm/ElementMesh.js");
|
|
54936
|
+
/* harmony import */ var _ElementProps__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./ElementProps */ "../../core/common/lib/esm/ElementProps.js");
|
|
54937
|
+
/* harmony import */ var _EmphasizeElementsProps__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./EmphasizeElementsProps */ "../../core/common/lib/esm/EmphasizeElementsProps.js");
|
|
54938
|
+
/* harmony import */ var _EntityProps__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./EntityProps */ "../../core/common/lib/esm/EntityProps.js");
|
|
54939
|
+
/* harmony import */ var _EntityReference__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./EntityReference */ "../../core/common/lib/esm/EntityReference.js");
|
|
54940
|
+
/* harmony import */ var _Environment__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./Environment */ "../../core/common/lib/esm/Environment.js");
|
|
54941
|
+
/* harmony import */ var _FeatureIndex__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./FeatureIndex */ "../../core/common/lib/esm/FeatureIndex.js");
|
|
54942
|
+
/* harmony import */ var _FeatureSymbology__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./FeatureSymbology */ "../../core/common/lib/esm/FeatureSymbology.js");
|
|
54943
|
+
/* harmony import */ var _FeatureTable__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./FeatureTable */ "../../core/common/lib/esm/FeatureTable.js");
|
|
54944
|
+
/* harmony import */ var _Fonts__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./Fonts */ "../../core/common/lib/esm/Fonts.js");
|
|
54945
|
+
/* harmony import */ var _Frustum__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./Frustum */ "../../core/common/lib/esm/Frustum.js");
|
|
54946
|
+
/* harmony import */ var _GeoCoordinateServices__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./GeoCoordinateServices */ "../../core/common/lib/esm/GeoCoordinateServices.js");
|
|
54947
|
+
/* harmony import */ var _geometry_AdditionalTransform__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./geometry/AdditionalTransform */ "../../core/common/lib/esm/geometry/AdditionalTransform.js");
|
|
54948
|
+
/* harmony import */ var _geometry_AreaPattern__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./geometry/AreaPattern */ "../../core/common/lib/esm/geometry/AreaPattern.js");
|
|
54949
|
+
/* harmony import */ var _geometry_BoundingSphere__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./geometry/BoundingSphere */ "../../core/common/lib/esm/geometry/BoundingSphere.js");
|
|
54950
|
+
/* harmony import */ var _geometry_Cartographic__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./geometry/Cartographic */ "../../core/common/lib/esm/geometry/Cartographic.js");
|
|
54951
|
+
/* harmony import */ var _geometry_CoordinateReferenceSystem__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./geometry/CoordinateReferenceSystem */ "../../core/common/lib/esm/geometry/CoordinateReferenceSystem.js");
|
|
54952
|
+
/* harmony import */ var _geometry_ElementGeometry__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./geometry/ElementGeometry */ "../../core/common/lib/esm/geometry/ElementGeometry.js");
|
|
54953
|
+
/* harmony import */ var _geometry_FrustumPlanes__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./geometry/FrustumPlanes */ "../../core/common/lib/esm/geometry/FrustumPlanes.js");
|
|
54954
|
+
/* harmony import */ var _geometry_GeodeticDatum__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./geometry/GeodeticDatum */ "../../core/common/lib/esm/geometry/GeodeticDatum.js");
|
|
54955
|
+
/* harmony import */ var _geometry_GeodeticEllipsoid__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./geometry/GeodeticEllipsoid */ "../../core/common/lib/esm/geometry/GeodeticEllipsoid.js");
|
|
54956
|
+
/* harmony import */ var _geometry_GeometryStream__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./geometry/GeometryStream */ "../../core/common/lib/esm/geometry/GeometryStream.js");
|
|
54957
|
+
/* harmony import */ var _geometry_ImageGraphic__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./geometry/ImageGraphic */ "../../core/common/lib/esm/geometry/ImageGraphic.js");
|
|
54958
|
+
/* harmony import */ var _geometry_LineStyle__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry/LineStyle */ "../../core/common/lib/esm/geometry/LineStyle.js");
|
|
54959
|
+
/* harmony import */ var _geometry_Placement__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry/Placement */ "../../core/common/lib/esm/geometry/Placement.js");
|
|
54960
|
+
/* harmony import */ var _geometry_Projection__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry/Projection */ "../../core/common/lib/esm/geometry/Projection.js");
|
|
54961
|
+
/* harmony import */ var _geometry_TextString__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry/TextString */ "../../core/common/lib/esm/geometry/TextString.js");
|
|
54962
|
+
/* harmony import */ var _GeometryContainment__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./GeometryContainment */ "../../core/common/lib/esm/GeometryContainment.js");
|
|
54963
|
+
/* harmony import */ var _GeometryParams__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./GeometryParams */ "../../core/common/lib/esm/GeometryParams.js");
|
|
54964
|
+
/* harmony import */ var _GeometrySummary__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./GeometrySummary */ "../../core/common/lib/esm/GeometrySummary.js");
|
|
54965
|
+
/* harmony import */ var _Gradient__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./Gradient */ "../../core/common/lib/esm/Gradient.js");
|
|
54966
|
+
/* harmony import */ var _GraphicParams__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./GraphicParams */ "../../core/common/lib/esm/GraphicParams.js");
|
|
54967
|
+
/* harmony import */ var _GroundPlane__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./GroundPlane */ "../../core/common/lib/esm/GroundPlane.js");
|
|
54968
|
+
/* harmony import */ var _HiddenLine__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./HiddenLine */ "../../core/common/lib/esm/HiddenLine.js");
|
|
54969
|
+
/* harmony import */ var _Hilite__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./Hilite */ "../../core/common/lib/esm/Hilite.js");
|
|
54970
|
+
/* harmony import */ var _HSLColor__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./HSLColor */ "../../core/common/lib/esm/HSLColor.js");
|
|
54971
|
+
/* harmony import */ var _HSVColor__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./HSVColor */ "../../core/common/lib/esm/HSVColor.js");
|
|
54972
|
+
/* harmony import */ var _Image__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./Image */ "../../core/common/lib/esm/Image.js");
|
|
54973
|
+
/* harmony import */ var _IModel__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./IModel */ "../../core/common/lib/esm/IModel.js");
|
|
54974
|
+
/* harmony import */ var _IModelError__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./IModelError */ "../../core/common/lib/esm/IModelError.js");
|
|
54975
|
+
/* harmony import */ var _IModelVersion__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./IModelVersion */ "../../core/common/lib/esm/IModelVersion.js");
|
|
54976
|
+
/* harmony import */ var _ipc_IpcSocket__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./ipc/IpcSocket */ "../../core/common/lib/esm/ipc/IpcSocket.js");
|
|
54977
|
+
/* harmony import */ var _ipc_IpcWebSocket__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./ipc/IpcWebSocket */ "../../core/common/lib/esm/ipc/IpcWebSocket.js");
|
|
54978
|
+
/* harmony import */ var _ipc_IpcWebSocketTransport__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./ipc/IpcWebSocketTransport */ "../../core/common/lib/esm/ipc/IpcWebSocketTransport.js");
|
|
54979
|
+
/* harmony import */ var _ipc_IpcSession__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./ipc/IpcSession */ "../../core/common/lib/esm/ipc/IpcSession.js");
|
|
54980
|
+
/* harmony import */ var _IpcAppProps__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./IpcAppProps */ "../../core/common/lib/esm/IpcAppProps.js");
|
|
54981
|
+
/* harmony import */ var _LightSettings__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./LightSettings */ "../../core/common/lib/esm/LightSettings.js");
|
|
54982
|
+
/* harmony import */ var _LinePixels__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./LinePixels */ "../../core/common/lib/esm/LinePixels.js");
|
|
54983
|
+
/* harmony import */ var _Localization__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./Localization */ "../../core/common/lib/esm/Localization.js");
|
|
54984
|
+
/* harmony import */ var _MapImagerySettings__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./MapImagerySettings */ "../../core/common/lib/esm/MapImagerySettings.js");
|
|
54985
|
+
/* harmony import */ var _MapLayerSettings__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./MapLayerSettings */ "../../core/common/lib/esm/MapLayerSettings.js");
|
|
54986
|
+
/* harmony import */ var _MassProperties__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./MassProperties */ "../../core/common/lib/esm/MassProperties.js");
|
|
54987
|
+
/* harmony import */ var _MaterialProps__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./MaterialProps */ "../../core/common/lib/esm/MaterialProps.js");
|
|
54988
|
+
/* harmony import */ var _ModelClipGroup__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./ModelClipGroup */ "../../core/common/lib/esm/ModelClipGroup.js");
|
|
54989
|
+
/* harmony import */ var _ModelProps__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./ModelProps */ "../../core/common/lib/esm/ModelProps.js");
|
|
54990
|
+
/* harmony import */ var _NativeAppProps__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./NativeAppProps */ "../../core/common/lib/esm/NativeAppProps.js");
|
|
54991
|
+
/* harmony import */ var _OctEncodedNormal__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./OctEncodedNormal */ "../../core/common/lib/esm/OctEncodedNormal.js");
|
|
54992
|
+
/* harmony import */ var _ConcurrentQuery__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./ConcurrentQuery */ "../../core/common/lib/esm/ConcurrentQuery.js");
|
|
54993
|
+
/* harmony import */ var _ECSqlReader__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./ECSqlReader */ "../../core/common/lib/esm/ECSqlReader.js");
|
|
54994
|
+
/* harmony import */ var _PlanarClipMask__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./PlanarClipMask */ "../../core/common/lib/esm/PlanarClipMask.js");
|
|
54995
|
+
/* harmony import */ var _ModelGeometryChanges__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./ModelGeometryChanges */ "../../core/common/lib/esm/ModelGeometryChanges.js");
|
|
54996
|
+
/* harmony import */ var _PlanProjectionSettings__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./PlanProjectionSettings */ "../../core/common/lib/esm/PlanProjectionSettings.js");
|
|
54997
|
+
/* harmony import */ var _BackendTypes__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./BackendTypes */ "../../core/common/lib/esm/BackendTypes.js");
|
|
54998
|
+
/* harmony import */ var _QPoint__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./QPoint */ "../../core/common/lib/esm/QPoint.js");
|
|
54999
|
+
/* harmony import */ var _RealityDataAccessProps__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./RealityDataAccessProps */ "../../core/common/lib/esm/RealityDataAccessProps.js");
|
|
55000
|
+
/* harmony import */ var _RealityModelDisplaySettings__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./RealityModelDisplaySettings */ "../../core/common/lib/esm/RealityModelDisplaySettings.js");
|
|
55001
|
+
/* harmony import */ var _Render__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./Render */ "../../core/common/lib/esm/Render.js");
|
|
55002
|
+
/* harmony import */ var _RenderMaterial__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./RenderMaterial */ "../../core/common/lib/esm/RenderMaterial.js");
|
|
55003
|
+
/* harmony import */ var _RenderSchedule__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./RenderSchedule */ "../../core/common/lib/esm/RenderSchedule.js");
|
|
55004
|
+
/* harmony import */ var _RenderTexture__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./RenderTexture */ "../../core/common/lib/esm/RenderTexture.js");
|
|
55005
|
+
/* harmony import */ var _RgbColor__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./RgbColor */ "../../core/common/lib/esm/RgbColor.js");
|
|
55006
|
+
/* harmony import */ var _RpcManager__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./RpcManager */ "../../core/common/lib/esm/RpcManager.js");
|
|
55007
|
+
/* harmony import */ var _SessionProps__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./SessionProps */ "../../core/common/lib/esm/SessionProps.js");
|
|
55008
|
+
/* harmony import */ var _SkyBox__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./SkyBox */ "../../core/common/lib/esm/SkyBox.js");
|
|
55009
|
+
/* harmony import */ var _Snapping__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./Snapping */ "../../core/common/lib/esm/Snapping.js");
|
|
55010
|
+
/* harmony import */ var _SolarCalculate__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./SolarCalculate */ "../../core/common/lib/esm/SolarCalculate.js");
|
|
55011
|
+
/* harmony import */ var _SolarShadows__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./SolarShadows */ "../../core/common/lib/esm/SolarShadows.js");
|
|
55012
|
+
/* harmony import */ var _SpatialClassification__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./SpatialClassification */ "../../core/common/lib/esm/SpatialClassification.js");
|
|
55013
|
+
/* harmony import */ var _SubCategoryAppearance__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./SubCategoryAppearance */ "../../core/common/lib/esm/SubCategoryAppearance.js");
|
|
55014
|
+
/* harmony import */ var _SubCategoryOverride__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./SubCategoryOverride */ "../../core/common/lib/esm/SubCategoryOverride.js");
|
|
55015
|
+
/* harmony import */ var _TerrainSettings__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./TerrainSettings */ "../../core/common/lib/esm/TerrainSettings.js");
|
|
55016
|
+
/* harmony import */ var _TextureMapping__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./TextureMapping */ "../../core/common/lib/esm/TextureMapping.js");
|
|
55017
|
+
/* harmony import */ var _TextureProps__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./TextureProps */ "../../core/common/lib/esm/TextureProps.js");
|
|
55018
|
+
/* harmony import */ var _ThematicDisplay__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./ThematicDisplay */ "../../core/common/lib/esm/ThematicDisplay.js");
|
|
55019
|
+
/* harmony import */ var _Thumbnail__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./Thumbnail */ "../../core/common/lib/esm/Thumbnail.js");
|
|
55020
|
+
/* harmony import */ var _TileProps__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./TileProps */ "../../core/common/lib/esm/TileProps.js");
|
|
55021
|
+
/* harmony import */ var _Tween__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./Tween */ "../../core/common/lib/esm/Tween.js");
|
|
55022
|
+
/* harmony import */ var _TxnAction__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./TxnAction */ "../../core/common/lib/esm/TxnAction.js");
|
|
55023
|
+
/* harmony import */ var _ViewDetails__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./ViewDetails */ "../../core/common/lib/esm/ViewDetails.js");
|
|
55024
|
+
/* harmony import */ var _ViewFlags__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./ViewFlags */ "../../core/common/lib/esm/ViewFlags.js");
|
|
55025
|
+
/* harmony import */ var _ViewProps__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./ViewProps */ "../../core/common/lib/esm/ViewProps.js");
|
|
55026
|
+
/* harmony import */ var _rpc_core_RpcConstants__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./rpc/core/RpcConstants */ "../../core/common/lib/esm/rpc/core/RpcConstants.js");
|
|
55027
|
+
/* harmony import */ var _rpc_core_RpcControl__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./rpc/core/RpcControl */ "../../core/common/lib/esm/rpc/core/RpcControl.js");
|
|
55028
|
+
/* harmony import */ var _rpc_core_RpcInvocation__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./rpc/core/RpcInvocation */ "../../core/common/lib/esm/rpc/core/RpcInvocation.js");
|
|
55029
|
+
/* harmony import */ var _rpc_core_RpcSessionInvocation__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./rpc/core/RpcSessionInvocation */ "../../core/common/lib/esm/rpc/core/RpcSessionInvocation.js");
|
|
55030
|
+
/* harmony import */ var _rpc_core_RpcMarshaling__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./rpc/core/RpcMarshaling */ "../../core/common/lib/esm/rpc/core/RpcMarshaling.js");
|
|
55031
|
+
/* harmony import */ var _rpc_core_RpcOperation__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./rpc/core/RpcOperation */ "../../core/common/lib/esm/rpc/core/RpcOperation.js");
|
|
55032
|
+
/* harmony import */ var _rpc_core_RpcPendingQueue__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./rpc/core/RpcPendingQueue */ "../../core/common/lib/esm/rpc/core/RpcPendingQueue.js");
|
|
55033
|
+
/* harmony import */ var _rpc_core_RpcProtocol__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./rpc/core/RpcProtocol */ "../../core/common/lib/esm/rpc/core/RpcProtocol.js");
|
|
55034
|
+
/* harmony import */ var _rpc_core_RpcRegistry__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./rpc/core/RpcRegistry */ "../../core/common/lib/esm/rpc/core/RpcRegistry.js");
|
|
55035
|
+
/* harmony import */ var _rpc_core_RpcRequest__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./rpc/core/RpcRequest */ "../../core/common/lib/esm/rpc/core/RpcRequest.js");
|
|
55036
|
+
/* harmony import */ var _rpc_core_RpcRequestContext__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./rpc/core/RpcRequestContext */ "../../core/common/lib/esm/rpc/core/RpcRequestContext.js");
|
|
55037
|
+
/* harmony import */ var _rpc_core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./rpc/core/RpcRoutingToken */ "../../core/common/lib/esm/rpc/core/RpcRoutingToken.js");
|
|
55038
|
+
/* harmony import */ var _rpc_core_RpcPush__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./rpc/core/RpcPush */ "../../core/common/lib/esm/rpc/core/RpcPush.js");
|
|
55039
|
+
/* harmony import */ var _rpc_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./rpc/core/RpcConfiguration */ "../../core/common/lib/esm/rpc/core/RpcConfiguration.js");
|
|
55040
|
+
/* harmony import */ var _rpc_DevToolsRpcInterface__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./rpc/DevToolsRpcInterface */ "../../core/common/lib/esm/rpc/DevToolsRpcInterface.js");
|
|
55041
|
+
/* harmony import */ var _rpc_IModelReadRpcInterface__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./rpc/IModelReadRpcInterface */ "../../core/common/lib/esm/rpc/IModelReadRpcInterface.js");
|
|
55042
|
+
/* harmony import */ var _rpc_IModelTileRpcInterface__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./rpc/IModelTileRpcInterface */ "../../core/common/lib/esm/rpc/IModelTileRpcInterface.js");
|
|
55043
|
+
/* harmony import */ var _rpc_SnapshotIModelRpcInterface__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./rpc/SnapshotIModelRpcInterface */ "../../core/common/lib/esm/rpc/SnapshotIModelRpcInterface.js");
|
|
55044
|
+
/* harmony import */ var _rpc_TestRpcManager__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./rpc/TestRpcManager */ "../../core/common/lib/esm/rpc/TestRpcManager.js");
|
|
55045
|
+
/* harmony import */ var _rpc_WipRpcInterface__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./rpc/WipRpcInterface */ "../../core/common/lib/esm/rpc/WipRpcInterface.js");
|
|
55046
|
+
/* harmony import */ var _RpcInterface__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./RpcInterface */ "../../core/common/lib/esm/RpcInterface.js");
|
|
55047
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcManager__WEBPACK_IMPORTED_MODULE_134__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcManager */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcManager.js");
|
|
55048
|
+
/* harmony import */ var _rpc_web_BentleyCloudRpcProtocol__WEBPACK_IMPORTED_MODULE_135__ = __webpack_require__(/*! ./rpc/web/BentleyCloudRpcProtocol */ "../../core/common/lib/esm/rpc/web/BentleyCloudRpcProtocol.js");
|
|
55049
|
+
/* harmony import */ var _rpc_web_OpenAPI__WEBPACK_IMPORTED_MODULE_136__ = __webpack_require__(/*! ./rpc/web/OpenAPI */ "../../core/common/lib/esm/rpc/web/OpenAPI.js");
|
|
55050
|
+
/* harmony import */ var _rpc_web_RpcMultipart__WEBPACK_IMPORTED_MODULE_137__ = __webpack_require__(/*! ./rpc/web/RpcMultipart */ "../../core/common/lib/esm/rpc/web/RpcMultipart.js");
|
|
55051
|
+
/* harmony import */ var _rpc_web_WebAppRpcProtocol__WEBPACK_IMPORTED_MODULE_138__ = __webpack_require__(/*! ./rpc/web/WebAppRpcProtocol */ "../../core/common/lib/esm/rpc/web/WebAppRpcProtocol.js");
|
|
55052
|
+
/* harmony import */ var _rpc_web_WebAppRpcRequest__WEBPACK_IMPORTED_MODULE_139__ = __webpack_require__(/*! ./rpc/web/WebAppRpcRequest */ "../../core/common/lib/esm/rpc/web/WebAppRpcRequest.js");
|
|
55053
|
+
/* harmony import */ var _rpc_web_WebAppRpcLogging__WEBPACK_IMPORTED_MODULE_140__ = __webpack_require__(/*! ./rpc/web/WebAppRpcLogging */ "../../core/common/lib/esm/rpc/web/WebAppRpcLogging.js");
|
|
55054
|
+
/* harmony import */ var _tile_B3dmTileIO__WEBPACK_IMPORTED_MODULE_141__ = __webpack_require__(/*! ./tile/B3dmTileIO */ "../../core/common/lib/esm/tile/B3dmTileIO.js");
|
|
55055
|
+
/* harmony import */ var _tile_CompositeTileIO__WEBPACK_IMPORTED_MODULE_142__ = __webpack_require__(/*! ./tile/CompositeTileIO */ "../../core/common/lib/esm/tile/CompositeTileIO.js");
|
|
55056
|
+
/* harmony import */ var _tile_ElementGraphics__WEBPACK_IMPORTED_MODULE_143__ = __webpack_require__(/*! ./tile/ElementGraphics */ "../../core/common/lib/esm/tile/ElementGraphics.js");
|
|
55057
|
+
/* harmony import */ var _tile_GltfTileIO__WEBPACK_IMPORTED_MODULE_144__ = __webpack_require__(/*! ./tile/GltfTileIO */ "../../core/common/lib/esm/tile/GltfTileIO.js");
|
|
55058
|
+
/* harmony import */ var _tile_I3dmTileIO__WEBPACK_IMPORTED_MODULE_145__ = __webpack_require__(/*! ./tile/I3dmTileIO */ "../../core/common/lib/esm/tile/I3dmTileIO.js");
|
|
55059
|
+
/* harmony import */ var _tile_IModelTileIO__WEBPACK_IMPORTED_MODULE_146__ = __webpack_require__(/*! ./tile/IModelTileIO */ "../../core/common/lib/esm/tile/IModelTileIO.js");
|
|
55060
|
+
/* harmony import */ var _tile_PntsTileIO__WEBPACK_IMPORTED_MODULE_147__ = __webpack_require__(/*! ./tile/PntsTileIO */ "../../core/common/lib/esm/tile/PntsTileIO.js");
|
|
55061
|
+
/* harmony import */ var _tile_TileIO__WEBPACK_IMPORTED_MODULE_148__ = __webpack_require__(/*! ./tile/TileIO */ "../../core/common/lib/esm/tile/TileIO.js");
|
|
55062
|
+
/* harmony import */ var _tile_TileMetadata__WEBPACK_IMPORTED_MODULE_149__ = __webpack_require__(/*! ./tile/TileMetadata */ "../../core/common/lib/esm/tile/TileMetadata.js");
|
|
55063
|
+
/* harmony import */ var _tile_Tileset3dSchema__WEBPACK_IMPORTED_MODULE_150__ = __webpack_require__(/*! ./tile/Tileset3dSchema */ "../../core/common/lib/esm/tile/Tileset3dSchema.js");
|
|
55064
|
+
/* harmony import */ var _WhiteOnWhiteReversalSettings__WEBPACK_IMPORTED_MODULE_151__ = __webpack_require__(/*! ./WhiteOnWhiteReversalSettings */ "../../core/common/lib/esm/WhiteOnWhiteReversalSettings.js");
|
|
55276
55065
|
/*---------------------------------------------------------------------------------------------
|
|
55277
55066
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
55278
55067
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -55426,8 +55215,6 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
55426
55215
|
|
|
55427
55216
|
|
|
55428
55217
|
|
|
55429
|
-
|
|
55430
|
-
|
|
55431
55218
|
|
|
55432
55219
|
|
|
55433
55220
|
|
|
@@ -64668,28 +64455,14 @@ class IModelTileRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
64668
64455
|
NOTE: Any add/remove/change to the methods below requires an update of the interface version.
|
|
64669
64456
|
NOTE: Please consult the README in this folder for the semantic versioning rules.
|
|
64670
64457
|
===========================================================================================*/
|
|
64671
|
-
/**
|
|
64672
|
-
* @returns undefined if the backend does not support caching
|
|
64458
|
+
/** Get storage config required to download tiles from the tile cache.
|
|
64459
|
+
* @returns undefined if the backend does not support caching. In that case, tiles must be requested using [[generateTileContent]].
|
|
64673
64460
|
* @beta
|
|
64674
64461
|
*/
|
|
64675
64462
|
async getTileCacheConfig(_tokenProps) {
|
|
64676
64463
|
const response = await this.forward(arguments);
|
|
64677
64464
|
return response && { ...response, expiration: new Date(response.expiration) };
|
|
64678
64465
|
}
|
|
64679
|
-
/**
|
|
64680
|
-
* Returns connection information for external tile cache or an empty `CloudStorageContainerUrl` if no external tile cache is configured on the backend.
|
|
64681
|
-
* @beta
|
|
64682
|
-
* @deprecated in 3.x. Use [[getTileCacheConfig]] instead.
|
|
64683
|
-
*/
|
|
64684
|
-
async getTileCacheContainerUrl(_tokenProps, _id) {
|
|
64685
|
-
return this.forward(arguments);
|
|
64686
|
-
}
|
|
64687
|
-
/** Returns true if an external tile cache is configured on the backend.
|
|
64688
|
-
* @internal @deprecated in 3.x. Use [[getTileCacheConfig]] instead.
|
|
64689
|
-
*/
|
|
64690
|
-
async isUsingExternalTileCache() {
|
|
64691
|
-
return this.forward(arguments);
|
|
64692
|
-
}
|
|
64693
64466
|
/** @internal */
|
|
64694
64467
|
async requestTileTreeProps(_tokenProps, _id) { return this.forward(arguments); }
|
|
64695
64468
|
/** Ask the backend to generate content for the specified tile. This function, unlike the deprecated `requestTileContent`, does not check the cloud storage tile cache -
|
|
@@ -64730,10 +64503,6 @@ class IModelTileRpcInterface extends _RpcInterface__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
64730
64503
|
IModelTileRpcInterface.interfaceName = "IModelTileRpcInterface";
|
|
64731
64504
|
/** The semantic version of the interface. */
|
|
64732
64505
|
IModelTileRpcInterface.interfaceVersion = "3.2.0";
|
|
64733
|
-
__decorate([
|
|
64734
|
-
_core_RpcOperation__WEBPACK_IMPORTED_MODULE_1__.RpcOperation.allowResponseCaching(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable) // eslint-disable-line deprecation/deprecation
|
|
64735
|
-
// eslint-disable-next-line deprecation/deprecation
|
|
64736
|
-
], IModelTileRpcInterface.prototype, "getTileCacheContainerUrl", null);
|
|
64737
64506
|
__decorate([
|
|
64738
64507
|
_core_RpcOperation__WEBPACK_IMPORTED_MODULE_1__.RpcOperation.allowResponseCaching(_core_RpcConstants__WEBPACK_IMPORTED_MODULE_0__.RpcResponseCacheControl.Immutable) // eslint-disable-line deprecation/deprecation
|
|
64739
64508
|
], IModelTileRpcInterface.prototype, "requestTileTreeProps", null);
|
|
@@ -64950,7 +64719,7 @@ var RpcRoutingMap;
|
|
|
64950
64719
|
})(RpcRoutingMap || (RpcRoutingMap = {}));
|
|
64951
64720
|
/** A RpcConfiguration specifies how calls on an RPC interface will be marshalled, plus other operating parameters.
|
|
64952
64721
|
* RpcConfiguration is the base class for specific configurations.
|
|
64953
|
-
* @
|
|
64722
|
+
* @beta
|
|
64954
64723
|
*/
|
|
64955
64724
|
class RpcConfiguration {
|
|
64956
64725
|
constructor() {
|
|
@@ -64969,7 +64738,7 @@ class RpcConfiguration {
|
|
|
64969
64738
|
*/
|
|
64970
64739
|
this.controlChannel = _RpcControl__WEBPACK_IMPORTED_MODULE_1__.RpcControlChannel.obtain(this);
|
|
64971
64740
|
}
|
|
64972
|
-
/** Sets the configuration supplier for an RPC interface class. */
|
|
64741
|
+
/** @internal Sets the configuration supplier for an RPC interface class. */
|
|
64973
64742
|
static assign(definition, supplier) {
|
|
64974
64743
|
const map = definition.prototype.configurationSupplier;
|
|
64975
64744
|
if (!map || typeof (map.configurations) === "undefined") {
|
|
@@ -65058,7 +64827,7 @@ RpcConfiguration.strictMode = false;
|
|
|
65058
64827
|
* @note The parameter token is always replaced by the url token (unless RpcOperationPolicy.allowTokenMismatch is set).
|
|
65059
64828
|
*/
|
|
65060
64829
|
RpcConfiguration.throwOnTokenMismatch = false;
|
|
65061
|
-
/** Enables passing of application-specific context with each RPC request. */
|
|
64830
|
+
/** @internal Enables passing of application-specific context with each RPC request. */
|
|
65062
64831
|
RpcConfiguration.requestContext = {
|
|
65063
64832
|
getId: (_request) => "",
|
|
65064
64833
|
serialize: async (request) => ({
|
|
@@ -67166,7 +66935,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
67166
66935
|
* @module RpcInterface
|
|
67167
66936
|
*/
|
|
67168
66937
|
/* eslint-disable deprecation/deprecation */
|
|
67169
|
-
/** @
|
|
66938
|
+
/** @beta */
|
|
67170
66939
|
class RpcRoutingToken {
|
|
67171
66940
|
static generate(debugLabel = "") {
|
|
67172
66941
|
return new RpcRoutingToken(++this._next, debugLabel);
|
|
@@ -67292,7 +67061,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
67292
67061
|
|
|
67293
67062
|
|
|
67294
67063
|
/** Operating parameters for Bentley cloud RPC interface deployments.
|
|
67295
|
-
* @
|
|
67064
|
+
* @beta
|
|
67296
67065
|
*/
|
|
67297
67066
|
class BentleyCloudRpcConfiguration extends _core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_1__.RpcConfiguration {
|
|
67298
67067
|
}
|
|
@@ -67304,14 +67073,14 @@ BentleyCloudRpcConfiguration.accessControl = {
|
|
|
67304
67073
|
};
|
|
67305
67074
|
|
|
67306
67075
|
/** Coordinates usage of RPC interfaces for Bentley cloud deployments.
|
|
67307
|
-
* @
|
|
67076
|
+
* @beta
|
|
67308
67077
|
*/
|
|
67309
67078
|
class BentleyCloudRpcManager extends _RpcManager__WEBPACK_IMPORTED_MODULE_0__.RpcManager {
|
|
67310
|
-
/** Initializes BentleyCloudRpcManager for the frontend of an application. */
|
|
67079
|
+
/** @beta Initializes BentleyCloudRpcManager for the frontend of an application. */
|
|
67311
67080
|
static initializeClient(params, interfaces, routing = _core_RpcRoutingToken__WEBPACK_IMPORTED_MODULE_5__.RpcRoutingToken["default"]) {
|
|
67312
67081
|
return BentleyCloudRpcManager.performInitialization(params, interfaces, routing);
|
|
67313
67082
|
}
|
|
67314
|
-
/** Initializes BentleyCloudRpcManager for the backend of an application. */
|
|
67083
|
+
/** @beta Initializes BentleyCloudRpcManager for the backend of an application. */
|
|
67315
67084
|
static initializeImpl(params, interfaces) {
|
|
67316
67085
|
return BentleyCloudRpcManager.performInitialization(params, interfaces);
|
|
67317
67086
|
}
|
|
@@ -67335,6 +67104,9 @@ class BentleyCloudRpcManager extends _RpcManager__WEBPACK_IMPORTED_MODULE_0__.Rp
|
|
|
67335
67104
|
_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_1__.RpcConfiguration.assignWithRouting(def, routing, config);
|
|
67336
67105
|
}
|
|
67337
67106
|
const instance = _core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_1__.RpcConfiguration.obtain(config);
|
|
67107
|
+
if (params.pathPrefix) {
|
|
67108
|
+
instance.protocol.pathPrefix = params.pathPrefix;
|
|
67109
|
+
}
|
|
67338
67110
|
_core_RpcConfiguration__WEBPACK_IMPORTED_MODULE_1__.RpcConfiguration.initializeInterfaces(instance);
|
|
67339
67111
|
if (params.pendingRequestListener) {
|
|
67340
67112
|
const listener = params.pendingRequestListener;
|
|
@@ -91095,7 +90867,7 @@ class SnapshotConnection extends IModelConnection {
|
|
|
91095
90867
|
* @param modelIds the Id or Ids of the [GeometricModel]($backend)s for which to query the ranges.
|
|
91096
90868
|
* @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.
|
|
91097
90869
|
* @note The contents of the returned array do not follow a deterministic order.
|
|
91098
|
-
* @throws [IModelError]($common) if exactly one model Id is specified and that Id does not identify a
|
|
90870
|
+
* @throws [IModelError]($common) if exactly one model Id is specified and that Id does not identify a GeometricModel.
|
|
91099
90871
|
* @see [[queryExtents]] for a similar function that does not throw and produces a deterministically-ordered result.
|
|
91100
90872
|
*/
|
|
91101
90873
|
async queryModelRanges(modelIds) {
|
|
@@ -176337,6 +176109,19 @@ class Geometry {
|
|
|
176337
176109
|
return outPositive;
|
|
176338
176110
|
return outZero;
|
|
176339
176111
|
}
|
|
176112
|
+
/**
|
|
176113
|
+
* Examine the value (particularly sign) of x.
|
|
176114
|
+
* * If x is negative, return -1
|
|
176115
|
+
* * If x is true zero, return 0
|
|
176116
|
+
* * If x is positive, return 1
|
|
176117
|
+
*/
|
|
176118
|
+
static split3Way01(x, tolerance = Geometry.smallMetricDistance) {
|
|
176119
|
+
if (x > tolerance)
|
|
176120
|
+
return 1;
|
|
176121
|
+
if (x < -tolerance)
|
|
176122
|
+
return -1;
|
|
176123
|
+
return 0;
|
|
176124
|
+
}
|
|
176340
176125
|
/** Return the largest signed value among a, b */
|
|
176341
176126
|
static maxXY(a, b) {
|
|
176342
176127
|
let q = a;
|
|
@@ -183309,18 +183094,19 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
183309
183094
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
183310
183095
|
/* harmony export */ "ClipPlane": () => (/* binding */ ClipPlane)
|
|
183311
183096
|
/* harmony export */ });
|
|
183312
|
-
/* harmony import */ var
|
|
183313
|
-
/* harmony import */ var
|
|
183314
|
-
/* harmony import */ var
|
|
183315
|
-
/* harmony import */ var
|
|
183316
|
-
/* harmony import */ var
|
|
183317
|
-
/* harmony import */ var
|
|
183318
|
-
/* harmony import */ var
|
|
183319
|
-
/* harmony import */ var
|
|
183320
|
-
/* harmony import */ var
|
|
183321
|
-
/* harmony import */ var
|
|
183322
|
-
/* harmony import */ var
|
|
183323
|
-
/* harmony import */ var
|
|
183097
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
183098
|
+
/* harmony import */ var _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../geometry3d/GrowableFloat64Array */ "../../core/geometry/lib/esm/geometry3d/GrowableFloat64Array.js");
|
|
183099
|
+
/* harmony import */ var _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../geometry3d/GrowableXYZArray */ "../../core/geometry/lib/esm/geometry3d/GrowableXYZArray.js");
|
|
183100
|
+
/* harmony import */ var _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../geometry3d/Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
|
|
183101
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../geometry3d/Plane3dByOriginAndUnitNormal */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndUnitNormal.js");
|
|
183102
|
+
/* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
183103
|
+
/* harmony import */ var _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../geometry3d/PolygonOps */ "../../core/geometry/lib/esm/geometry3d/PolygonOps.js");
|
|
183104
|
+
/* harmony import */ var _geometry3d_Range__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../geometry3d/Range */ "../../core/geometry/lib/esm/geometry3d/Range.js");
|
|
183105
|
+
/* harmony import */ var _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../geometry3d/Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
183106
|
+
/* harmony import */ var _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../geometry4d/Point4d */ "../../core/geometry/lib/esm/geometry4d/Point4d.js");
|
|
183107
|
+
/* harmony import */ var _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../numerics/Polynomials */ "../../core/geometry/lib/esm/numerics/Polynomials.js");
|
|
183108
|
+
/* harmony import */ var _ClipUtils__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./ClipUtils */ "../../core/geometry/lib/esm/clipping/ClipUtils.js");
|
|
183109
|
+
/* harmony import */ var _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../geometry3d/Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
183324
183110
|
/*---------------------------------------------------------------------------------------------
|
|
183325
183111
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
183326
183112
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -183337,6 +183123,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
183337
183123
|
|
|
183338
183124
|
|
|
183339
183125
|
|
|
183126
|
+
|
|
183340
183127
|
/** A ClipPlane is a single plane represented as
|
|
183341
183128
|
* * An inward unit normal (u,v,w)
|
|
183342
183129
|
* * A signedDistance
|
|
@@ -183350,8 +183137,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
183350
183137
|
* * Given a point and inward normal, the signedDistance is (point DOT normal)
|
|
183351
183138
|
* @public
|
|
183352
183139
|
*/
|
|
183353
|
-
class ClipPlane {
|
|
183140
|
+
class ClipPlane extends _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
|
|
183354
183141
|
constructor(normal, distance, invisible, interior) {
|
|
183142
|
+
super();
|
|
183355
183143
|
this._invisible = invisible;
|
|
183356
183144
|
this._interior = interior;
|
|
183357
183145
|
this._inwardNormal = normal;
|
|
@@ -183368,7 +183156,7 @@ class ClipPlane {
|
|
|
183368
183156
|
* @param other clip plane to compare
|
|
183369
183157
|
*/
|
|
183370
183158
|
isAlmostEqual(other) {
|
|
183371
|
-
return
|
|
183159
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this._distanceFromOrigin, other._distanceFromOrigin)
|
|
183372
183160
|
&& this._inwardNormal.isAlmostEqual(other._inwardNormal)
|
|
183373
183161
|
&& this._interior === other._interior
|
|
183374
183162
|
&& this._invisible === other._invisible;
|
|
@@ -183432,6 +183220,18 @@ class ClipPlane {
|
|
|
183432
183220
|
}
|
|
183433
183221
|
return undefined;
|
|
183434
183222
|
}
|
|
183223
|
+
/** Create a clip plane
|
|
183224
|
+
* @param origin any point on the plane.
|
|
183225
|
+
* @param vectorA any vector in the plane
|
|
183226
|
+
* @param vectorB any vector in the plane
|
|
183227
|
+
* * returns undefined if the vectors are not independent.
|
|
183228
|
+
* * The stored inward normal is vectorB.crossProduct(vectorA).
|
|
183229
|
+
* * That is, the vectors are considered as a right-handed pair when viewed from the outside.
|
|
183230
|
+
*/
|
|
183231
|
+
static createOriginAndVectors(origin, vectorA, vectorB, invisible = false, interior = false, result) {
|
|
183232
|
+
const normalized = vectorB.crossProduct(vectorA);
|
|
183233
|
+
return this.createNormalAndPoint(normalized, origin, invisible, interior, result);
|
|
183234
|
+
}
|
|
183435
183235
|
/** Create a ClipPlane
|
|
183436
183236
|
* * "normal" (normalX, normalY, nz) is the inward normal of the plane.
|
|
183437
183237
|
* * The given (normalX,normalY,normalZ)
|
|
@@ -183439,8 +183239,8 @@ class ClipPlane {
|
|
|
183439
183239
|
* * 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.)
|
|
183440
183240
|
*/
|
|
183441
183241
|
static createNormalAndPointXYZXYZ(normalX, normalY, normalZ, originX, originY, originZ, invisible = false, interior = false, result) {
|
|
183442
|
-
const q =
|
|
183443
|
-
const r =
|
|
183242
|
+
const q = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseXYZ(normalX, normalY, normalZ);
|
|
183243
|
+
const r = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideFraction(1, q);
|
|
183444
183244
|
if (r !== undefined) {
|
|
183445
183245
|
if (result) {
|
|
183446
183246
|
result._inwardNormal.set(normalX * r, normalY * r, normalZ * r);
|
|
@@ -183449,7 +183249,7 @@ class ClipPlane {
|
|
|
183449
183249
|
result._interior = interior;
|
|
183450
183250
|
return result;
|
|
183451
183251
|
}
|
|
183452
|
-
const normal =
|
|
183252
|
+
const normal = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(normalX * r, normalY * r, normalZ * r);
|
|
183453
183253
|
return new ClipPlane(normal, normal.dotProductXYZ(originX, originY, originZ), invisible, interior);
|
|
183454
183254
|
}
|
|
183455
183255
|
return undefined;
|
|
@@ -183472,8 +183272,8 @@ class ClipPlane {
|
|
|
183472
183272
|
/** parse json object to ClipPlane instance */
|
|
183473
183273
|
static fromJSON(json, result) {
|
|
183474
183274
|
if (json && json.normal && undefined !== json.dist && Number.isFinite(json.dist))
|
|
183475
|
-
return ClipPlane.createNormalAndDistance(
|
|
183476
|
-
return ClipPlane.createNormalAndDistance(
|
|
183275
|
+
return ClipPlane.createNormalAndDistance(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.fromJSON(json.normal), json.dist, !!json.invisible, !!json.interior);
|
|
183276
|
+
return ClipPlane.createNormalAndDistance(_geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.unitZ(), 0, false, false, result);
|
|
183477
183277
|
}
|
|
183478
183278
|
/** Set both the invisible and interior flags. */
|
|
183479
183279
|
setFlags(invisible, interior) {
|
|
@@ -183505,11 +183305,11 @@ class ClipPlane {
|
|
|
183505
183305
|
* @param result optional preallocated plane
|
|
183506
183306
|
*/
|
|
183507
183307
|
static createEdgeAndUpVector(point0, point1, upVector, tiltAngle, result) {
|
|
183508
|
-
const edgeVector =
|
|
183308
|
+
const edgeVector = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createFrom(point1.minus(point0));
|
|
183509
183309
|
let normal = (upVector.crossProduct(edgeVector)).normalize();
|
|
183510
183310
|
if (normal) {
|
|
183511
183311
|
if (tiltAngle !== undefined && !tiltAngle.isAlmostZero) {
|
|
183512
|
-
const tiltNormal =
|
|
183312
|
+
const tiltNormal = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createRotateVectorAroundVector(normal, edgeVector, tiltAngle);
|
|
183513
183313
|
if (tiltNormal) {
|
|
183514
183314
|
normal = tiltNormal.clone();
|
|
183515
183315
|
}
|
|
@@ -183523,7 +183323,7 @@ class ClipPlane {
|
|
|
183523
183323
|
* Create a plane perpendicular to the edge between the xy parts of point0 and point1
|
|
183524
183324
|
*/
|
|
183525
183325
|
static createEdgeXY(point0, point1, result) {
|
|
183526
|
-
const normal =
|
|
183326
|
+
const normal = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(point0.y - point1.y, point1.x - point0.x);
|
|
183527
183327
|
if (normal.normalizeInPlace())
|
|
183528
183328
|
return ClipPlane.createNormalAndPoint(normal, point0, false, false, result);
|
|
183529
183329
|
return undefined;
|
|
@@ -183536,7 +183336,7 @@ class ClipPlane {
|
|
|
183536
183336
|
getPlane3d() {
|
|
183537
183337
|
const d = this._distanceFromOrigin;
|
|
183538
183338
|
// Normal should be normalized, will not return undefined
|
|
183539
|
-
return
|
|
183339
|
+
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);
|
|
183540
183340
|
}
|
|
183541
183341
|
/**
|
|
183542
183342
|
* Return the Point4d d form of the plane.
|
|
@@ -183544,7 +183344,7 @@ class ClipPlane {
|
|
|
183544
183344
|
* * The homogeneous weight is the negated ClipPlane distance.
|
|
183545
183345
|
*/
|
|
183546
183346
|
getPlane4d() {
|
|
183547
|
-
return
|
|
183347
|
+
return _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_4__.Point4d.create(this._inwardNormal.x, this._inwardNormal.y, this._inwardNormal.z, -this._distanceFromOrigin);
|
|
183548
183348
|
}
|
|
183549
183349
|
/**
|
|
183550
183350
|
* Set the plane from DPoint4d style plane.
|
|
@@ -183613,7 +183413,7 @@ class ClipPlane {
|
|
|
183613
183413
|
* @param spacePoint point to test.
|
|
183614
183414
|
* @param tolerance tolerance for considering "near plane" to be "on plane"
|
|
183615
183415
|
*/
|
|
183616
|
-
isPointOnOrInside(spacePoint, tolerance =
|
|
183416
|
+
isPointOnOrInside(spacePoint, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance) {
|
|
183617
183417
|
let value = this.altitude(spacePoint);
|
|
183618
183418
|
if (tolerance) {
|
|
183619
183419
|
value += tolerance;
|
|
@@ -183625,7 +183425,7 @@ class ClipPlane {
|
|
|
183625
183425
|
* @param spacePoint point to test.
|
|
183626
183426
|
* @param tolerance tolerance for considering "near plane" to be "on plane"
|
|
183627
183427
|
*/
|
|
183628
|
-
isPointInside(point, tolerance =
|
|
183428
|
+
isPointInside(point, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance) {
|
|
183629
183429
|
let value = this.altitude(point);
|
|
183630
183430
|
if (tolerance) {
|
|
183631
183431
|
value -= tolerance;
|
|
@@ -183637,7 +183437,7 @@ class ClipPlane {
|
|
|
183637
183437
|
* @param spacePoint point to test.
|
|
183638
183438
|
* @param tolerance tolerance for considering "near plane" to be "on plane"
|
|
183639
183439
|
*/
|
|
183640
|
-
isPointOn(point, tolerance =
|
|
183440
|
+
isPointOn(point, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance) {
|
|
183641
183441
|
return Math.abs(this.altitude(point)) <= tolerance;
|
|
183642
183442
|
}
|
|
183643
183443
|
/**
|
|
@@ -183650,7 +183450,7 @@ class ClipPlane {
|
|
|
183650
183450
|
const alpha = this.altitude(arc.center);
|
|
183651
183451
|
const beta = this.velocity(arcVectors.vector0);
|
|
183652
183452
|
const gamma = this.velocity(arcVectors.vector90);
|
|
183653
|
-
|
|
183453
|
+
_numerics_Polynomials__WEBPACK_IMPORTED_MODULE_5__.AnalyticRoots.appendImplicitLineUnitCircleIntersections(alpha, beta, gamma, undefined, undefined, intersectionRadians);
|
|
183654
183454
|
}
|
|
183655
183455
|
/** Announce fractional intervals of arc clip.
|
|
183656
183456
|
* * Each call to `announce(fraction0, fraction1, arc)` announces one interval that is inside the clip plane.
|
|
@@ -183660,7 +183460,7 @@ class ClipPlane {
|
|
|
183660
183460
|
breaks.clear();
|
|
183661
183461
|
this.appendIntersectionRadians(arc, breaks);
|
|
183662
183462
|
arc.sweep.radiansArrayToPositivePeriodicFractions(breaks);
|
|
183663
|
-
return
|
|
183463
|
+
return _ClipUtils__WEBPACK_IMPORTED_MODULE_6__.ClipUtilities.selectIntervals01(arc, breaks, this, announce);
|
|
183664
183464
|
}
|
|
183665
183465
|
/**
|
|
183666
183466
|
* * Compute intersection of (unbounded) segment with the plane.
|
|
@@ -183720,8 +183520,8 @@ class ClipPlane {
|
|
|
183720
183520
|
* @param work work buffer
|
|
183721
183521
|
* @param tolerance tolerance for "on plane" decision.
|
|
183722
183522
|
*/
|
|
183723
|
-
clipConvexPolygonInPlace(xyz, work, inside = true, tolerance =
|
|
183724
|
-
return
|
|
183523
|
+
clipConvexPolygonInPlace(xyz, work, inside = true, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.smallMetricDistance) {
|
|
183524
|
+
return _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_7__.IndexedXYZCollectionPolygonOps.clipConvexPolygonInPlace(this, xyz, work, inside, tolerance);
|
|
183725
183525
|
}
|
|
183726
183526
|
/**
|
|
183727
183527
|
* Multiply the ClipPlane's DPoint4d by matrix.
|
|
@@ -183756,7 +183556,7 @@ class ClipPlane {
|
|
|
183756
183556
|
const h0 = -this.altitude(pointA);
|
|
183757
183557
|
const h1 = -this.altitude(pointB);
|
|
183758
183558
|
const delta = h1 - h0;
|
|
183759
|
-
const f =
|
|
183559
|
+
const f = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideFraction(-h0, delta);
|
|
183760
183560
|
if (f === undefined) { // The segment is parallel to the plane.
|
|
183761
183561
|
if (h0 <= 0.0) {
|
|
183762
183562
|
if (announce)
|
|
@@ -183788,9 +183588,9 @@ class ClipPlane {
|
|
|
183788
183588
|
*/
|
|
183789
183589
|
getFrame() {
|
|
183790
183590
|
const d = this._distanceFromOrigin;
|
|
183791
|
-
const origin =
|
|
183792
|
-
const matrix =
|
|
183793
|
-
return
|
|
183591
|
+
const origin = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this._inwardNormal.x * d, this._inwardNormal.y * d, this._inwardNormal.z * d);
|
|
183592
|
+
const matrix = _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_8__.Matrix3d.createRigidHeadsUp(this._inwardNormal, _Geometry__WEBPACK_IMPORTED_MODULE_1__.AxisOrder.ZXY);
|
|
183593
|
+
return _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_9__.Transform.createOriginAndMatrix(origin, matrix);
|
|
183794
183594
|
}
|
|
183795
183595
|
/**
|
|
183796
183596
|
* Return the intersection of the plane with a range cube.
|
|
@@ -183803,17 +183603,17 @@ class ClipPlane {
|
|
|
183803
183603
|
const corners = range.corners();
|
|
183804
183604
|
const frameOnPlane = this.getFrame();
|
|
183805
183605
|
frameOnPlane.multiplyInversePoint3dArrayInPlace(corners);
|
|
183806
|
-
const localRange =
|
|
183606
|
+
const localRange = _geometry3d_Range__WEBPACK_IMPORTED_MODULE_10__.Range3d.createArray(corners);
|
|
183807
183607
|
if (localRange.low.z * localRange.high.z > 0.0)
|
|
183808
183608
|
return undefined;
|
|
183809
183609
|
// oversized polygon on local z= 0
|
|
183810
|
-
const xyzOut = new
|
|
183610
|
+
const xyzOut = new _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_11__.GrowableXYZArray();
|
|
183811
183611
|
xyzOut.pushXYZ(localRange.low.x, localRange.low.y, 0);
|
|
183812
183612
|
xyzOut.pushXYZ(localRange.high.x, localRange.low.y, 0);
|
|
183813
183613
|
xyzOut.pushXYZ(localRange.high.x, localRange.high.y, 0);
|
|
183814
183614
|
xyzOut.pushXYZ(localRange.low.x, localRange.high.y, 0);
|
|
183815
183615
|
xyzOut.multiplyTransformInPlace(frameOnPlane);
|
|
183816
|
-
|
|
183616
|
+
_geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_7__.IndexedXYZCollectionPolygonOps.intersectRangeConvexPolygonInPlace(range, xyzOut);
|
|
183817
183617
|
if (xyzOut.length === 0)
|
|
183818
183618
|
return undefined;
|
|
183819
183619
|
if (addClosurePoint)
|
|
@@ -183828,15 +183628,22 @@ class ClipPlane {
|
|
|
183828
183628
|
* @param arrayCache cache for reusable GrowableXYZArray.
|
|
183829
183629
|
*/
|
|
183830
183630
|
appendPolygonClip(xyz, insideFragments, outsideFragments, arrayCache) {
|
|
183831
|
-
const perpendicularRange =
|
|
183631
|
+
const perpendicularRange = _geometry3d_Range__WEBPACK_IMPORTED_MODULE_10__.Range1d.createNull();
|
|
183832
183632
|
const newInside = arrayCache.grabFromCache();
|
|
183833
183633
|
const newOutside = arrayCache.grabFromCache();
|
|
183834
|
-
|
|
183835
|
-
|
|
183836
|
-
|
|
183634
|
+
_geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_7__.IndexedXYZCollectionPolygonOps.splitConvexPolygonInsideOutsidePlane(this, xyz, newInside, newOutside, perpendicularRange);
|
|
183635
|
+
_ClipUtils__WEBPACK_IMPORTED_MODULE_6__.ClipUtilities.captureOrDrop(newInside, 3, insideFragments, arrayCache);
|
|
183636
|
+
_ClipUtils__WEBPACK_IMPORTED_MODULE_6__.ClipUtilities.captureOrDrop(newOutside, 3, outsideFragments, arrayCache);
|
|
183637
|
+
}
|
|
183638
|
+
/**
|
|
183639
|
+
* Project a point in space to the plane.
|
|
183640
|
+
*/
|
|
183641
|
+
projectPointToPlane(spacePoint, result) {
|
|
183642
|
+
const d = -this.altitude(spacePoint);
|
|
183643
|
+
return spacePoint.plusXYZ(d * this._inwardNormal.x, d * this._inwardNormal.y, d * this._inwardNormal.z, result);
|
|
183837
183644
|
}
|
|
183838
183645
|
}
|
|
183839
|
-
ClipPlane._clipArcFractionArray = new
|
|
183646
|
+
ClipPlane._clipArcFractionArray = new _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_12__.GrowableFloat64Array();
|
|
183840
183647
|
|
|
183841
183648
|
|
|
183842
183649
|
|
|
@@ -187148,235 +186955,236 @@ class LineStringOffsetClipperContext {
|
|
|
187148
186955
|
"use strict";
|
|
187149
186956
|
__webpack_require__.r(__webpack_exports__);
|
|
187150
186957
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
187151
|
-
/* harmony export */ "AbstractNewtonIterator": () => (/* reexport safe */
|
|
187152
|
-
/* harmony export */ "AkimaCurve3d": () => (/* reexport safe */
|
|
187153
|
-
/* harmony export */ "AkimaCurve3dOptions": () => (/* reexport safe */
|
|
187154
|
-
/* harmony export */ "AnalyticRoots": () => (/* reexport safe */
|
|
186958
|
+
/* harmony export */ "AbstractNewtonIterator": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.AbstractNewtonIterator),
|
|
186959
|
+
/* harmony export */ "AkimaCurve3d": () => (/* reexport safe */ _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__.AkimaCurve3d),
|
|
186960
|
+
/* harmony export */ "AkimaCurve3dOptions": () => (/* reexport safe */ _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__.AkimaCurve3dOptions),
|
|
186961
|
+
/* harmony export */ "AnalyticRoots": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.AnalyticRoots),
|
|
187155
186962
|
/* harmony export */ "Angle": () => (/* reexport safe */ _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_0__.Angle),
|
|
187156
186963
|
/* harmony export */ "AngleSweep": () => (/* reexport safe */ _geometry3d_AngleSweep__WEBPACK_IMPORTED_MODULE_1__.AngleSweep),
|
|
187157
|
-
/* harmony export */ "AnnotatedLineString3d": () => (/* reexport safe */
|
|
187158
|
-
/* harmony export */ "Arc3d": () => (/* reexport safe */
|
|
187159
|
-
/* harmony export */ "AuxChannel": () => (/* reexport safe */
|
|
187160
|
-
/* harmony export */ "AuxChannelData": () => (/* reexport safe */
|
|
187161
|
-
/* harmony export */ "AuxChannelDataType": () => (/* reexport safe */
|
|
187162
|
-
/* harmony export */ "AxisIndex": () => (/* reexport safe */
|
|
187163
|
-
/* harmony export */ "AxisOrder": () => (/* reexport safe */
|
|
187164
|
-
/* harmony export */ "AxisScaleSelect": () => (/* reexport safe */
|
|
187165
|
-
/* harmony export */ "BSpline1dNd": () => (/* reexport safe */
|
|
187166
|
-
/* harmony export */ "BSpline2dNd": () => (/* reexport safe */
|
|
187167
|
-
/* harmony export */ "BSplineCurve3d": () => (/* reexport safe */
|
|
187168
|
-
/* harmony export */ "BSplineCurve3dBase": () => (/* reexport safe */
|
|
187169
|
-
/* harmony export */ "BSplineCurve3dH": () => (/* reexport safe */
|
|
187170
|
-
/* harmony export */ "BSplineCurveOps": () => (/* reexport safe */
|
|
187171
|
-
/* harmony export */ "BSplineSurface3d": () => (/* reexport safe */
|
|
187172
|
-
/* harmony export */ "BSplineSurface3dH": () => (/* reexport safe */
|
|
187173
|
-
/* harmony export */ "BSplineWrapMode": () => (/* reexport safe */
|
|
187174
|
-
/* harmony export */ "BagOfCurves": () => (/* reexport safe */
|
|
186964
|
+
/* harmony export */ "AnnotatedLineString3d": () => (/* reexport safe */ _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__.AnnotatedLineString3d),
|
|
186965
|
+
/* harmony export */ "Arc3d": () => (/* reexport safe */ _curve_Arc3d__WEBPACK_IMPORTED_MODULE_59__.Arc3d),
|
|
186966
|
+
/* harmony export */ "AuxChannel": () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannel),
|
|
186967
|
+
/* harmony export */ "AuxChannelData": () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannelData),
|
|
186968
|
+
/* harmony export */ "AuxChannelDataType": () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannelDataType),
|
|
186969
|
+
/* harmony export */ "AxisIndex": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.AxisIndex),
|
|
186970
|
+
/* harmony export */ "AxisOrder": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.AxisOrder),
|
|
186971
|
+
/* harmony export */ "AxisScaleSelect": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.AxisScaleSelect),
|
|
186972
|
+
/* harmony export */ "BSpline1dNd": () => (/* reexport safe */ _bspline_BSpline1dNd__WEBPACK_IMPORTED_MODULE_105__.BSpline1dNd),
|
|
186973
|
+
/* harmony export */ "BSpline2dNd": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSpline2dNd),
|
|
186974
|
+
/* harmony export */ "BSplineCurve3d": () => (/* reexport safe */ _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__.BSplineCurve3d),
|
|
186975
|
+
/* harmony export */ "BSplineCurve3dBase": () => (/* reexport safe */ _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__.BSplineCurve3dBase),
|
|
186976
|
+
/* harmony export */ "BSplineCurve3dH": () => (/* reexport safe */ _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_106__.BSplineCurve3dH),
|
|
186977
|
+
/* harmony export */ "BSplineCurveOps": () => (/* reexport safe */ _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_104__.BSplineCurveOps),
|
|
186978
|
+
/* harmony export */ "BSplineSurface3d": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSplineSurface3d),
|
|
186979
|
+
/* harmony export */ "BSplineSurface3dH": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSplineSurface3dH),
|
|
186980
|
+
/* harmony export */ "BSplineWrapMode": () => (/* reexport safe */ _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__.BSplineWrapMode),
|
|
186981
|
+
/* harmony export */ "BagOfCurves": () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__.BagOfCurves),
|
|
187175
186982
|
/* harmony export */ "BarycentricTriangle": () => (/* reexport safe */ _geometry3d_BarycentricTriangle__WEBPACK_IMPORTED_MODULE_3__.BarycentricTriangle),
|
|
187176
|
-
/* harmony export */ "BentleyGeometryFlatBuffer": () => (/* reexport safe */
|
|
187177
|
-
/* harmony export */ "Bezier1dNd": () => (/* reexport safe */
|
|
187178
|
-
/* harmony export */ "BezierBezierIntersectionXYRRToRRD": () => (/* reexport safe */
|
|
187179
|
-
/* harmony export */ "BezierCoffs": () => (/* reexport safe */
|
|
187180
|
-
/* harmony export */ "BezierCurve3d": () => (/* reexport safe */
|
|
187181
|
-
/* harmony export */ "BezierCurve3dH": () => (/* reexport safe */
|
|
187182
|
-
/* harmony export */ "BezierCurveBase": () => (/* reexport safe */
|
|
187183
|
-
/* harmony export */ "BezierPolynomialAlgebra": () => (/* reexport safe */
|
|
186983
|
+
/* harmony export */ "BentleyGeometryFlatBuffer": () => (/* reexport safe */ _serialization_BentleyGeometryFlatBuffer__WEBPACK_IMPORTED_MODULE_126__.BentleyGeometryFlatBuffer),
|
|
186984
|
+
/* harmony export */ "Bezier1dNd": () => (/* reexport safe */ _bspline_Bezier1dNd__WEBPACK_IMPORTED_MODULE_99__.Bezier1dNd),
|
|
186985
|
+
/* harmony export */ "BezierBezierIntersectionXYRRToRRD": () => (/* reexport safe */ _curve_CurveCurveIntersectXY__WEBPACK_IMPORTED_MODULE_66__.BezierBezierIntersectionXYRRToRRD),
|
|
186986
|
+
/* harmony export */ "BezierCoffs": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.BezierCoffs),
|
|
186987
|
+
/* harmony export */ "BezierCurve3d": () => (/* reexport safe */ _bspline_BezierCurve3d__WEBPACK_IMPORTED_MODULE_101__.BezierCurve3d),
|
|
186988
|
+
/* harmony export */ "BezierCurve3dH": () => (/* reexport safe */ _bspline_BezierCurve3dH__WEBPACK_IMPORTED_MODULE_102__.BezierCurve3dH),
|
|
186989
|
+
/* harmony export */ "BezierCurveBase": () => (/* reexport safe */ _bspline_BezierCurveBase__WEBPACK_IMPORTED_MODULE_100__.BezierCurveBase),
|
|
186990
|
+
/* harmony export */ "BezierPolynomialAlgebra": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.BezierPolynomialAlgebra),
|
|
187184
186991
|
/* harmony export */ "BilinearPatch": () => (/* reexport safe */ _geometry3d_BilinearPatch__WEBPACK_IMPORTED_MODULE_4__.BilinearPatch),
|
|
187185
|
-
/* harmony export */ "BilinearPolynomial": () => (/* reexport safe */
|
|
187186
|
-
/* harmony export */ "BooleanClipFactory": () => (/* reexport safe */
|
|
187187
|
-
/* harmony export */ "Box": () => (/* reexport safe */
|
|
187188
|
-
/* harmony export */ "BoxTopology": () => (/* reexport safe */
|
|
187189
|
-
/* harmony export */ "ClipMaskXYZRangePlanes": () => (/* reexport safe */
|
|
187190
|
-
/* harmony export */ "ClipPlane": () => (/* reexport safe */
|
|
187191
|
-
/* harmony export */ "ClipPlaneContainment": () => (/* reexport safe */
|
|
187192
|
-
/* harmony export */ "ClipPrimitive": () => (/* reexport safe */
|
|
187193
|
-
/* harmony export */ "ClipShape": () => (/* reexport safe */
|
|
187194
|
-
/* harmony export */ "ClipStatus": () => (/* reexport safe */
|
|
187195
|
-
/* harmony export */ "ClipStepAction": () => (/* reexport safe */
|
|
187196
|
-
/* harmony export */ "ClipUtilities": () => (/* reexport safe */
|
|
187197
|
-
/* harmony export */ "ClipVector": () => (/* reexport safe */
|
|
187198
|
-
/* harmony export */ "ClippedPolyfaceBuilders": () => (/* reexport safe */
|
|
187199
|
-
/* harmony export */ "ClusterableArray": () => (/* reexport safe */
|
|
187200
|
-
/* harmony export */ "Complex": () => (/* reexport safe */
|
|
187201
|
-
/* harmony export */ "Cone": () => (/* reexport safe */
|
|
187202
|
-
/* harmony export */ "ConsolidateAdjacentCurvePrimitivesOptions": () => (/* reexport safe */
|
|
187203
|
-
/* harmony export */ "Constant": () => (/* reexport safe */
|
|
187204
|
-
/* harmony export */ "ConstructCurveBetweenCurves": () => (/* reexport safe */
|
|
187205
|
-
/* harmony export */ "ConvexClipPlaneSet": () => (/* reexport safe */
|
|
187206
|
-
/* harmony export */ "ConvexPolygon2d": () => (/* reexport safe */
|
|
187207
|
-
/* harmony export */ "CoordinateXYZ": () => (/* reexport safe */
|
|
187208
|
-
/* harmony export */ "CurveChain": () => (/* reexport safe */
|
|
187209
|
-
/* harmony export */ "CurveChainWireOffsetContext": () => (/* reexport safe */
|
|
187210
|
-
/* harmony export */ "CurveChainWithDistanceIndex": () => (/* reexport safe */
|
|
187211
|
-
/* harmony export */ "CurveCollection": () => (/* reexport safe */
|
|
187212
|
-
/* harmony export */ "CurveCurve": () => (/* reexport safe */
|
|
187213
|
-
/* harmony export */ "CurveCurveApproachType": () => (/* reexport safe */
|
|
187214
|
-
/* harmony export */ "CurveCurveIntersectXY": () => (/* reexport safe */
|
|
187215
|
-
/* harmony export */ "CurveCurveIntersectXYZ": () => (/* reexport safe */
|
|
187216
|
-
/* harmony export */ "CurveExtendMode": () => (/* reexport safe */
|
|
187217
|
-
/* harmony export */ "CurveExtendOptions": () => (/* reexport safe */
|
|
187218
|
-
/* harmony export */ "CurveFactory": () => (/* reexport safe */
|
|
187219
|
-
/* harmony export */ "CurveIntervalRole": () => (/* reexport safe */
|
|
187220
|
-
/* harmony export */ "CurveLocationDetail": () => (/* reexport safe */
|
|
187221
|
-
/* harmony export */ "CurveLocationDetailArrayPair": () => (/* reexport safe */
|
|
187222
|
-
/* harmony export */ "CurveLocationDetailPair": () => (/* reexport safe */
|
|
187223
|
-
/* harmony export */ "CurvePrimitive": () => (/* reexport safe */
|
|
187224
|
-
/* harmony export */ "CurveSearchStatus": () => (/* reexport safe */
|
|
187225
|
-
/* harmony export */ "CutLoop": () => (/* reexport safe */
|
|
187226
|
-
/* harmony export */ "CutLoopMergeContext": () => (/* reexport safe */
|
|
187227
|
-
/* harmony export */ "DeepCompare": () => (/* reexport safe */
|
|
187228
|
-
/* harmony export */ "Degree2PowerPolynomial": () => (/* reexport safe */
|
|
187229
|
-
/* harmony export */ "Degree3PowerPolynomial": () => (/* reexport safe */
|
|
187230
|
-
/* harmony export */ "Degree4PowerPolynomial": () => (/* reexport safe */
|
|
187231
|
-
/* harmony export */ "DirectSpiral3d": () => (/* reexport safe */
|
|
187232
|
-
/* harmony export */ "DuplicateFacetClusterSelector": () => (/* reexport safe */
|
|
186992
|
+
/* harmony export */ "BilinearPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.BilinearPolynomial),
|
|
186993
|
+
/* harmony export */ "BooleanClipFactory": () => (/* reexport safe */ _clipping_BooleanClipFactory__WEBPACK_IMPORTED_MODULE_37__.BooleanClipFactory),
|
|
186994
|
+
/* harmony export */ "Box": () => (/* reexport safe */ _solid_Box__WEBPACK_IMPORTED_MODULE_89__.Box),
|
|
186995
|
+
/* harmony export */ "BoxTopology": () => (/* reexport safe */ _polyface_BoxTopology__WEBPACK_IMPORTED_MODULE_111__.BoxTopology),
|
|
186996
|
+
/* harmony export */ "ClipMaskXYZRangePlanes": () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_41__.ClipMaskXYZRangePlanes),
|
|
186997
|
+
/* harmony export */ "ClipPlane": () => (/* reexport safe */ _clipping_ClipPlane__WEBPACK_IMPORTED_MODULE_38__.ClipPlane),
|
|
186998
|
+
/* harmony export */ "ClipPlaneContainment": () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__.ClipPlaneContainment),
|
|
186999
|
+
/* harmony export */ "ClipPrimitive": () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_41__.ClipPrimitive),
|
|
187000
|
+
/* harmony export */ "ClipShape": () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_41__.ClipShape),
|
|
187001
|
+
/* harmony export */ "ClipStatus": () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__.ClipStatus),
|
|
187002
|
+
/* harmony export */ "ClipStepAction": () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__.ClipStepAction),
|
|
187003
|
+
/* harmony export */ "ClipUtilities": () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__.ClipUtilities),
|
|
187004
|
+
/* harmony export */ "ClipVector": () => (/* reexport safe */ _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_42__.ClipVector),
|
|
187005
|
+
/* harmony export */ "ClippedPolyfaceBuilders": () => (/* reexport safe */ _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_118__.ClippedPolyfaceBuilders),
|
|
187006
|
+
/* harmony export */ "ClusterableArray": () => (/* reexport safe */ _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_51__.ClusterableArray),
|
|
187007
|
+
/* harmony export */ "Complex": () => (/* reexport safe */ _numerics_Complex__WEBPACK_IMPORTED_MODULE_53__.Complex),
|
|
187008
|
+
/* harmony export */ "Cone": () => (/* reexport safe */ _solid_Cone__WEBPACK_IMPORTED_MODULE_90__.Cone),
|
|
187009
|
+
/* harmony export */ "ConsolidateAdjacentCurvePrimitivesOptions": () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__.ConsolidateAdjacentCurvePrimitivesOptions),
|
|
187010
|
+
/* harmony export */ "Constant": () => (/* reexport safe */ _Constant__WEBPACK_IMPORTED_MODULE_36__.Constant),
|
|
187011
|
+
/* harmony export */ "ConstructCurveBetweenCurves": () => (/* reexport safe */ _curve_ConstructCurveBetweenCurves__WEBPACK_IMPORTED_MODULE_60__.ConstructCurveBetweenCurves),
|
|
187012
|
+
/* harmony export */ "ConvexClipPlaneSet": () => (/* reexport safe */ _clipping_ConvexClipPlaneSet__WEBPACK_IMPORTED_MODULE_39__.ConvexClipPlaneSet),
|
|
187013
|
+
/* harmony export */ "ConvexPolygon2d": () => (/* reexport safe */ _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_44__.ConvexPolygon2d),
|
|
187014
|
+
/* harmony export */ "CoordinateXYZ": () => (/* reexport safe */ _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_61__.CoordinateXYZ),
|
|
187015
|
+
/* harmony export */ "CurveChain": () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__.CurveChain),
|
|
187016
|
+
/* harmony export */ "CurveChainWireOffsetContext": () => (/* reexport safe */ _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__.CurveChainWireOffsetContext),
|
|
187017
|
+
/* harmony export */ "CurveChainWithDistanceIndex": () => (/* reexport safe */ _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_62__.CurveChainWithDistanceIndex),
|
|
187018
|
+
/* harmony export */ "CurveCollection": () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__.CurveCollection),
|
|
187019
|
+
/* harmony export */ "CurveCurve": () => (/* reexport safe */ _curve_CurveCurve__WEBPACK_IMPORTED_MODULE_65__.CurveCurve),
|
|
187020
|
+
/* harmony export */ "CurveCurveApproachType": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveCurveApproachType),
|
|
187021
|
+
/* harmony export */ "CurveCurveIntersectXY": () => (/* reexport safe */ _curve_CurveCurveIntersectXY__WEBPACK_IMPORTED_MODULE_66__.CurveCurveIntersectXY),
|
|
187022
|
+
/* harmony export */ "CurveCurveIntersectXYZ": () => (/* reexport safe */ _curve_CurveCurveIntersectXYZ__WEBPACK_IMPORTED_MODULE_67__.CurveCurveIntersectXYZ),
|
|
187023
|
+
/* harmony export */ "CurveExtendMode": () => (/* reexport safe */ _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_63__.CurveExtendMode),
|
|
187024
|
+
/* harmony export */ "CurveExtendOptions": () => (/* reexport safe */ _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_63__.CurveExtendOptions),
|
|
187025
|
+
/* harmony export */ "CurveFactory": () => (/* reexport safe */ _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_69__.CurveFactory),
|
|
187026
|
+
/* harmony export */ "CurveIntervalRole": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveIntervalRole),
|
|
187027
|
+
/* harmony export */ "CurveLocationDetail": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveLocationDetail),
|
|
187028
|
+
/* harmony export */ "CurveLocationDetailArrayPair": () => (/* reexport safe */ _curve_CurveCurveIntersectXY__WEBPACK_IMPORTED_MODULE_66__.CurveLocationDetailArrayPair),
|
|
187029
|
+
/* harmony export */ "CurveLocationDetailPair": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveLocationDetailPair),
|
|
187030
|
+
/* harmony export */ "CurvePrimitive": () => (/* reexport safe */ _curve_CurvePrimitive__WEBPACK_IMPORTED_MODULE_70__.CurvePrimitive),
|
|
187031
|
+
/* harmony export */ "CurveSearchStatus": () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__.CurveSearchStatus),
|
|
187032
|
+
/* harmony export */ "CutLoop": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.CutLoop),
|
|
187033
|
+
/* harmony export */ "CutLoopMergeContext": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.CutLoopMergeContext),
|
|
187034
|
+
/* harmony export */ "DeepCompare": () => (/* reexport safe */ _serialization_DeepCompare__WEBPACK_IMPORTED_MODULE_124__.DeepCompare),
|
|
187035
|
+
/* harmony export */ "Degree2PowerPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.Degree2PowerPolynomial),
|
|
187036
|
+
/* harmony export */ "Degree3PowerPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.Degree3PowerPolynomial),
|
|
187037
|
+
/* harmony export */ "Degree4PowerPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.Degree4PowerPolynomial),
|
|
187038
|
+
/* harmony export */ "DirectSpiral3d": () => (/* reexport safe */ _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_86__.DirectSpiral3d),
|
|
187039
|
+
/* harmony export */ "DuplicateFacetClusterSelector": () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_117__.DuplicateFacetClusterSelector),
|
|
187233
187040
|
/* harmony export */ "Ellipsoid": () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.Ellipsoid),
|
|
187234
187041
|
/* harmony export */ "EllipsoidPatch": () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.EllipsoidPatch),
|
|
187235
|
-
/* harmony export */ "FacetFaceData": () => (/* reexport safe */
|
|
187042
|
+
/* harmony export */ "FacetFaceData": () => (/* reexport safe */ _polyface_FacetFaceData__WEBPACK_IMPORTED_MODULE_112__.FacetFaceData),
|
|
187236
187043
|
/* harmony export */ "FrameBuilder": () => (/* reexport safe */ _geometry3d_FrameBuilder__WEBPACK_IMPORTED_MODULE_6__.FrameBuilder),
|
|
187237
|
-
/* harmony export */ "GaussMapper": () => (/* reexport safe */
|
|
187044
|
+
/* harmony export */ "GaussMapper": () => (/* reexport safe */ _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__.GaussMapper),
|
|
187238
187045
|
/* harmony export */ "GeodesicPathPoint": () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.GeodesicPathPoint),
|
|
187239
187046
|
/* harmony export */ "GeodesicPathSolver": () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.GeodesicPathSolver),
|
|
187240
|
-
/* harmony export */ "Geometry": () => (/* reexport safe */
|
|
187047
|
+
/* harmony export */ "Geometry": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.Geometry),
|
|
187241
187048
|
/* harmony export */ "GeometryHandler": () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.GeometryHandler),
|
|
187242
|
-
/* harmony export */ "GeometryQuery": () => (/* reexport safe */
|
|
187049
|
+
/* harmony export */ "GeometryQuery": () => (/* reexport safe */ _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_72__.GeometryQuery),
|
|
187243
187050
|
/* harmony export */ "GrowableBlockedArray": () => (/* reexport safe */ _geometry3d_GrowableBlockedArray__WEBPACK_IMPORTED_MODULE_9__.GrowableBlockedArray),
|
|
187244
187051
|
/* harmony export */ "GrowableFloat64Array": () => (/* reexport safe */ _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_10__.GrowableFloat64Array),
|
|
187245
187052
|
/* harmony export */ "GrowableXYArray": () => (/* reexport safe */ _geometry3d_GrowableXYArray__WEBPACK_IMPORTED_MODULE_11__.GrowableXYArray),
|
|
187246
187053
|
/* harmony export */ "GrowableXYZArray": () => (/* reexport safe */ _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_12__.GrowableXYZArray),
|
|
187247
|
-
/* harmony export */ "HalfEdge": () => (/* reexport safe */
|
|
187248
|
-
/* harmony export */ "HalfEdgeGraph": () => (/* reexport safe */
|
|
187249
|
-
/* harmony export */ "HalfEdgeMask": () => (/* reexport safe */
|
|
187250
|
-
/* harmony export */ "IModelJson": () => (/* reexport safe */
|
|
187251
|
-
/* harmony export */ "ImplicitLineXY": () => (/* reexport safe */
|
|
187054
|
+
/* harmony export */ "HalfEdge": () => (/* reexport safe */ _topology_Graph__WEBPACK_IMPORTED_MODULE_120__.HalfEdge),
|
|
187055
|
+
/* harmony export */ "HalfEdgeGraph": () => (/* reexport safe */ _topology_Graph__WEBPACK_IMPORTED_MODULE_120__.HalfEdgeGraph),
|
|
187056
|
+
/* harmony export */ "HalfEdgeMask": () => (/* reexport safe */ _topology_Graph__WEBPACK_IMPORTED_MODULE_120__.HalfEdgeMask),
|
|
187057
|
+
/* harmony export */ "IModelJson": () => (/* reexport safe */ _serialization_IModelJsonSchema__WEBPACK_IMPORTED_MODULE_123__.IModelJson),
|
|
187058
|
+
/* harmony export */ "ImplicitLineXY": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.ImplicitLineXY),
|
|
187252
187059
|
/* harmony export */ "IndexedCollectionInterval": () => (/* reexport safe */ _geometry3d_IndexedCollectionInterval__WEBPACK_IMPORTED_MODULE_13__.IndexedCollectionInterval),
|
|
187253
|
-
/* harmony export */ "IndexedPolyface": () => (/* reexport safe */
|
|
187254
|
-
/* harmony export */ "IndexedPolyfaceSubsetVisitor": () => (/* reexport safe */
|
|
187255
|
-
/* harmony export */ "IndexedPolyfaceVisitor": () => (/* reexport safe */
|
|
187060
|
+
/* harmony export */ "IndexedPolyface": () => (/* reexport safe */ _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__.IndexedPolyface),
|
|
187061
|
+
/* harmony export */ "IndexedPolyfaceSubsetVisitor": () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_114__.IndexedPolyfaceSubsetVisitor),
|
|
187062
|
+
/* harmony export */ "IndexedPolyfaceVisitor": () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_114__.IndexedPolyfaceVisitor),
|
|
187256
187063
|
/* harmony export */ "IndexedReadWriteXYZCollection": () => (/* reexport safe */ _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__.IndexedReadWriteXYZCollection),
|
|
187257
187064
|
/* harmony export */ "IndexedXYCollection": () => (/* reexport safe */ _geometry3d_IndexedXYCollection__WEBPACK_IMPORTED_MODULE_14__.IndexedXYCollection),
|
|
187258
187065
|
/* harmony export */ "IndexedXYZCollection": () => (/* reexport safe */ _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__.IndexedXYZCollection),
|
|
187259
187066
|
/* harmony export */ "IndexedXYZCollectionInterval": () => (/* reexport safe */ _geometry3d_IndexedCollectionInterval__WEBPACK_IMPORTED_MODULE_13__.IndexedXYZCollectionInterval),
|
|
187260
|
-
/* harmony export */ "IndexedXYZCollectionPolygonOps": () => (/* reexport safe */
|
|
187261
|
-
/* harmony export */ "IntegratedSpiral3d": () => (/* reexport safe */
|
|
187262
|
-
/* harmony export */ "InterpolationCurve3d": () => (/* reexport safe */
|
|
187263
|
-
/* harmony export */ "InterpolationCurve3dOptions": () => (/* reexport safe */
|
|
187067
|
+
/* harmony export */ "IndexedXYZCollectionPolygonOps": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.IndexedXYZCollectionPolygonOps),
|
|
187068
|
+
/* harmony export */ "IntegratedSpiral3d": () => (/* reexport safe */ _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_85__.IntegratedSpiral3d),
|
|
187069
|
+
/* harmony export */ "InterpolationCurve3d": () => (/* reexport safe */ _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__.InterpolationCurve3d),
|
|
187070
|
+
/* harmony export */ "InterpolationCurve3dOptions": () => (/* reexport safe */ _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__.InterpolationCurve3dOptions),
|
|
187264
187071
|
/* harmony export */ "InverseMatrixState": () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.InverseMatrixState),
|
|
187265
|
-
/* harmony export */ "JointOptions": () => (/* reexport safe */
|
|
187266
|
-
/* harmony export */ "KnotVector": () => (/* reexport safe */
|
|
187267
|
-
/* harmony export */ "LineSegment3d": () => (/* reexport safe */
|
|
187268
|
-
/* harmony export */ "LineString3d": () => (/* reexport safe */
|
|
187269
|
-
/* harmony export */ "LinearSweep": () => (/* reexport safe */
|
|
187072
|
+
/* harmony export */ "JointOptions": () => (/* reexport safe */ _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__.JointOptions),
|
|
187073
|
+
/* harmony export */ "KnotVector": () => (/* reexport safe */ _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__.KnotVector),
|
|
187074
|
+
/* harmony export */ "LineSegment3d": () => (/* reexport safe */ _curve_LineSegment3d__WEBPACK_IMPORTED_MODULE_73__.LineSegment3d),
|
|
187075
|
+
/* harmony export */ "LineString3d": () => (/* reexport safe */ _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__.LineString3d),
|
|
187076
|
+
/* harmony export */ "LinearSweep": () => (/* reexport safe */ _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_91__.LinearSweep),
|
|
187270
187077
|
/* harmony export */ "LongitudeLatitudeNumber": () => (/* reexport safe */ _geometry3d_LongitudeLatitudeAltitude__WEBPACK_IMPORTED_MODULE_2__.LongitudeLatitudeNumber),
|
|
187271
|
-
/* harmony export */ "Loop": () => (/* reexport safe */
|
|
187272
|
-
/* harmony export */ "LoopCurveLoopCurve": () => (/* reexport safe */
|
|
187273
|
-
/* harmony export */ "Map4d": () => (/* reexport safe */
|
|
187078
|
+
/* harmony export */ "Loop": () => (/* reexport safe */ _curve_Loop__WEBPACK_IMPORTED_MODULE_75__.Loop),
|
|
187079
|
+
/* harmony export */ "LoopCurveLoopCurve": () => (/* reexport safe */ _curve_Loop__WEBPACK_IMPORTED_MODULE_75__.LoopCurveLoopCurve),
|
|
187080
|
+
/* harmony export */ "Map4d": () => (/* reexport safe */ _geometry4d_Map4d__WEBPACK_IMPORTED_MODULE_48__.Map4d),
|
|
187274
187081
|
/* harmony export */ "Matrix3d": () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.Matrix3d),
|
|
187275
|
-
/* harmony export */ "Matrix4d": () => (/* reexport safe */
|
|
187276
|
-
/* harmony export */ "MomentData": () => (/* reexport safe */
|
|
187277
|
-
/* harmony export */ "Newton1dUnbounded": () => (/* reexport safe */
|
|
187278
|
-
/* harmony export */ "Newton1dUnboundedApproximateDerivative": () => (/* reexport safe */
|
|
187279
|
-
/* harmony export */ "Newton2dUnboundedWithDerivative": () => (/* reexport safe */
|
|
187280
|
-
/* harmony export */ "NewtonEvaluatorRRtoRRD": () => (/* reexport safe */
|
|
187281
|
-
/* harmony export */ "NewtonEvaluatorRtoR": () => (/* reexport safe */
|
|
187282
|
-
/* harmony export */ "NewtonEvaluatorRtoRD": () => (/* reexport safe */
|
|
187082
|
+
/* harmony export */ "Matrix4d": () => (/* reexport safe */ _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_47__.Matrix4d),
|
|
187083
|
+
/* harmony export */ "MomentData": () => (/* reexport safe */ _geometry4d_MomentData__WEBPACK_IMPORTED_MODULE_49__.MomentData),
|
|
187084
|
+
/* harmony export */ "Newton1dUnbounded": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.Newton1dUnbounded),
|
|
187085
|
+
/* harmony export */ "Newton1dUnboundedApproximateDerivative": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.Newton1dUnboundedApproximateDerivative),
|
|
187086
|
+
/* harmony export */ "Newton2dUnboundedWithDerivative": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.Newton2dUnboundedWithDerivative),
|
|
187087
|
+
/* harmony export */ "NewtonEvaluatorRRtoRRD": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.NewtonEvaluatorRRtoRRD),
|
|
187088
|
+
/* harmony export */ "NewtonEvaluatorRtoR": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.NewtonEvaluatorRtoR),
|
|
187089
|
+
/* harmony export */ "NewtonEvaluatorRtoRD": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.NewtonEvaluatorRtoRD),
|
|
187283
187090
|
/* harmony export */ "NullGeometryHandler": () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.NullGeometryHandler),
|
|
187284
|
-
/* harmony export */ "NumberArray": () => (/* reexport safe */
|
|
187285
|
-
/* harmony export */ "OffsetMeshOptions": () => (/* reexport safe */
|
|
187286
|
-
/* harmony export */ "OffsetOptions": () => (/* reexport safe */
|
|
187287
|
-
/* harmony export */ "Order2Bezier": () => (/* reexport safe */
|
|
187288
|
-
/* harmony export */ "Order3Bezier": () => (/* reexport safe */
|
|
187289
|
-
/* harmony export */ "Order4Bezier": () => (/* reexport safe */
|
|
187290
|
-
/* harmony export */ "Order5Bezier": () => (/* reexport safe */
|
|
187091
|
+
/* harmony export */ "NumberArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.NumberArray),
|
|
187092
|
+
/* harmony export */ "OffsetMeshOptions": () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_117__.OffsetMeshOptions),
|
|
187093
|
+
/* harmony export */ "OffsetOptions": () => (/* reexport safe */ _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__.OffsetOptions),
|
|
187094
|
+
/* harmony export */ "Order2Bezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.Order2Bezier),
|
|
187095
|
+
/* harmony export */ "Order3Bezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.Order3Bezier),
|
|
187096
|
+
/* harmony export */ "Order4Bezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.Order4Bezier),
|
|
187097
|
+
/* harmony export */ "Order5Bezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.Order5Bezier),
|
|
187291
187098
|
/* harmony export */ "OrderedRotationAngles": () => (/* reexport safe */ _geometry3d_OrderedRotationAngles__WEBPACK_IMPORTED_MODULE_17__.OrderedRotationAngles),
|
|
187292
187099
|
/* harmony export */ "PackedMatrix3dOps": () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.PackedMatrix3dOps),
|
|
187293
|
-
/* harmony export */ "ParityRegion": () => (/* reexport safe */
|
|
187294
|
-
/* harmony export */ "PascalCoefficients": () => (/* reexport safe */
|
|
187295
|
-
/* harmony export */ "Path": () => (/* reexport safe */
|
|
187296
|
-
/* harmony export */ "PathFragment": () => (/* reexport safe */
|
|
187297
|
-
/* harmony export */ "
|
|
187298
|
-
/* harmony export */ "
|
|
187299
|
-
/* harmony export */ "
|
|
187300
|
-
/* harmony export */ "
|
|
187301
|
-
/* harmony export */ "
|
|
187302
|
-
/* harmony export */ "
|
|
187303
|
-
/* harmony export */ "
|
|
187304
|
-
/* harmony export */ "
|
|
187305
|
-
/* harmony export */ "
|
|
187306
|
-
/* harmony export */ "
|
|
187307
|
-
/* harmony export */ "
|
|
187308
|
-
/* harmony export */ "
|
|
187309
|
-
/* harmony export */ "
|
|
187310
|
-
/* harmony export */ "
|
|
187311
|
-
/* harmony export */ "
|
|
187312
|
-
/* harmony export */ "
|
|
187313
|
-
/* harmony export */ "
|
|
187314
|
-
/* harmony export */ "
|
|
187315
|
-
/* harmony export */ "
|
|
187316
|
-
/* harmony export */ "
|
|
187317
|
-
/* harmony export */ "
|
|
187318
|
-
/* harmony export */ "
|
|
187319
|
-
/* harmony export */ "
|
|
187320
|
-
/* harmony export */ "
|
|
187321
|
-
/* harmony export */ "
|
|
187322
|
-
/* harmony export */ "
|
|
187323
|
-
/* harmony export */ "
|
|
187324
|
-
/* harmony export */ "
|
|
187325
|
-
/* harmony export */ "
|
|
187326
|
-
/* harmony export */ "
|
|
187327
|
-
/* harmony export */ "
|
|
187328
|
-
/* harmony export */ "
|
|
187329
|
-
/* harmony export */ "
|
|
187330
|
-
/* harmony export */ "
|
|
187100
|
+
/* harmony export */ "ParityRegion": () => (/* reexport safe */ _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_76__.ParityRegion),
|
|
187101
|
+
/* harmony export */ "PascalCoefficients": () => (/* reexport safe */ _numerics_PascalCoefficients__WEBPACK_IMPORTED_MODULE_54__.PascalCoefficients),
|
|
187102
|
+
/* harmony export */ "Path": () => (/* reexport safe */ _curve_Path__WEBPACK_IMPORTED_MODULE_77__.Path),
|
|
187103
|
+
/* harmony export */ "PathFragment": () => (/* reexport safe */ _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_62__.PathFragment),
|
|
187104
|
+
/* harmony export */ "Plane3d": () => (/* reexport safe */ _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_18__.Plane3d),
|
|
187105
|
+
/* harmony export */ "Plane3dByOriginAndUnitNormal": () => (/* reexport safe */ _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_19__.Plane3dByOriginAndUnitNormal),
|
|
187106
|
+
/* harmony export */ "Plane3dByOriginAndVectors": () => (/* reexport safe */ _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_20__.Plane3dByOriginAndVectors),
|
|
187107
|
+
/* harmony export */ "PlaneByOriginAndVectors4d": () => (/* reexport safe */ _geometry4d_PlaneByOriginAndVectors4d__WEBPACK_IMPORTED_MODULE_45__.PlaneByOriginAndVectors4d),
|
|
187108
|
+
/* harmony export */ "Point2d": () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.Point2d),
|
|
187109
|
+
/* harmony export */ "Point2dArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point2dArray),
|
|
187110
|
+
/* harmony export */ "Point2dArrayCarrier": () => (/* reexport safe */ _geometry3d_Point2dArrayCarrier__WEBPACK_IMPORTED_MODULE_21__.Point2dArrayCarrier),
|
|
187111
|
+
/* harmony export */ "Point3d": () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.Point3d),
|
|
187112
|
+
/* harmony export */ "Point3dArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point3dArray),
|
|
187113
|
+
/* harmony export */ "Point3dArrayCarrier": () => (/* reexport safe */ _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_25__.Point3dArrayCarrier),
|
|
187114
|
+
/* harmony export */ "Point3dArrayPolygonOps": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.Point3dArrayPolygonOps),
|
|
187115
|
+
/* harmony export */ "Point4d": () => (/* reexport safe */ _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_46__.Point4d),
|
|
187116
|
+
/* harmony export */ "Point4dArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point4dArray),
|
|
187117
|
+
/* harmony export */ "PointString3d": () => (/* reexport safe */ _curve_PointString3d__WEBPACK_IMPORTED_MODULE_81__.PointString3d),
|
|
187118
|
+
/* harmony export */ "Polyface": () => (/* reexport safe */ _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__.Polyface),
|
|
187119
|
+
/* harmony export */ "PolyfaceAuxData": () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.PolyfaceAuxData),
|
|
187120
|
+
/* harmony export */ "PolyfaceBuilder": () => (/* reexport safe */ _polyface_PolyfaceBuilder__WEBPACK_IMPORTED_MODULE_115__.PolyfaceBuilder),
|
|
187121
|
+
/* harmony export */ "PolyfaceClip": () => (/* reexport safe */ _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_118__.PolyfaceClip),
|
|
187122
|
+
/* harmony export */ "PolyfaceData": () => (/* reexport safe */ _polyface_PolyfaceData__WEBPACK_IMPORTED_MODULE_116__.PolyfaceData),
|
|
187123
|
+
/* harmony export */ "PolyfaceQuery": () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_117__.PolyfaceQuery),
|
|
187124
|
+
/* harmony export */ "PolygonLocation": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.PolygonLocation),
|
|
187125
|
+
/* harmony export */ "PolygonLocationDetail": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonLocationDetail),
|
|
187126
|
+
/* harmony export */ "PolygonOps": () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonOps),
|
|
187127
|
+
/* harmony export */ "PolygonWireOffsetContext": () => (/* reexport safe */ _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__.PolygonWireOffsetContext),
|
|
187128
|
+
/* harmony export */ "PolylineOps": () => (/* reexport safe */ _geometry3d_PolylineOps__WEBPACK_IMPORTED_MODULE_26__.PolylineOps),
|
|
187129
|
+
/* harmony export */ "PowerPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.PowerPolynomial),
|
|
187130
|
+
/* harmony export */ "ProxyCurve": () => (/* reexport safe */ _curve_ProxyCurve__WEBPACK_IMPORTED_MODULE_82__.ProxyCurve),
|
|
187131
|
+
/* harmony export */ "Quadrature": () => (/* reexport safe */ _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__.Quadrature),
|
|
187132
|
+
/* harmony export */ "Range1d": () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range1d),
|
|
187133
|
+
/* harmony export */ "Range1dArray": () => (/* reexport safe */ _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__.Range1dArray),
|
|
187134
|
+
/* harmony export */ "Range2d": () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range2d),
|
|
187135
|
+
/* harmony export */ "Range3d": () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range3d),
|
|
187136
|
+
/* harmony export */ "RangeBase": () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.RangeBase),
|
|
187137
|
+
/* harmony export */ "Ray2d": () => (/* reexport safe */ _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_44__.Ray2d),
|
|
187138
|
+
/* harmony export */ "Ray3d": () => (/* reexport safe */ _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_29__.Ray3d),
|
|
187331
187139
|
/* harmony export */ "RecurseToCurvesGeometryHandler": () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.RecurseToCurvesGeometryHandler),
|
|
187332
|
-
/* harmony export */ "RecursiveCurveProcessor": () => (/* reexport safe */
|
|
187333
|
-
/* harmony export */ "RecursiveCurveProcessorWithStack": () => (/* reexport safe */
|
|
187334
|
-
/* harmony export */ "RegionBinaryOpType": () => (/* reexport safe */
|
|
187335
|
-
/* harmony export */ "RegionMomentsXY": () => (/* reexport safe */
|
|
187336
|
-
/* harmony export */ "RegionOps": () => (/* reexport safe */
|
|
187337
|
-
/* harmony export */ "RotationalSweep": () => (/* reexport safe */
|
|
187338
|
-
/* harmony export */ "RuledSweep": () => (/* reexport safe */
|
|
187339
|
-
/* harmony export */ "Sample": () => (/* reexport safe */
|
|
187340
|
-
/* harmony export */ "Segment1d": () => (/* reexport safe */
|
|
187341
|
-
/* harmony export */ "SimpleNewton": () => (/* reexport safe */
|
|
187342
|
-
/* harmony export */ "SineCosinePolynomial": () => (/* reexport safe */
|
|
187343
|
-
/* harmony export */ "SmallSystem": () => (/* reexport safe */
|
|
187140
|
+
/* harmony export */ "RecursiveCurveProcessor": () => (/* reexport safe */ _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__.RecursiveCurveProcessor),
|
|
187141
|
+
/* harmony export */ "RecursiveCurveProcessorWithStack": () => (/* reexport safe */ _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__.RecursiveCurveProcessorWithStack),
|
|
187142
|
+
/* harmony export */ "RegionBinaryOpType": () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_79__.RegionBinaryOpType),
|
|
187143
|
+
/* harmony export */ "RegionMomentsXY": () => (/* reexport safe */ _curve_RegionMomentsXY__WEBPACK_IMPORTED_MODULE_78__.RegionMomentsXY),
|
|
187144
|
+
/* harmony export */ "RegionOps": () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_79__.RegionOps),
|
|
187145
|
+
/* harmony export */ "RotationalSweep": () => (/* reexport safe */ _solid_RotationalSweep__WEBPACK_IMPORTED_MODULE_92__.RotationalSweep),
|
|
187146
|
+
/* harmony export */ "RuledSweep": () => (/* reexport safe */ _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_93__.RuledSweep),
|
|
187147
|
+
/* harmony export */ "Sample": () => (/* reexport safe */ _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_125__.Sample),
|
|
187148
|
+
/* harmony export */ "Segment1d": () => (/* reexport safe */ _geometry3d_Segment1d__WEBPACK_IMPORTED_MODULE_30__.Segment1d),
|
|
187149
|
+
/* harmony export */ "SimpleNewton": () => (/* reexport safe */ _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__.SimpleNewton),
|
|
187150
|
+
/* harmony export */ "SineCosinePolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.SineCosinePolynomial),
|
|
187151
|
+
/* harmony export */ "SmallSystem": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.SmallSystem),
|
|
187344
187152
|
/* harmony export */ "SmoothTransformBetweenFrusta": () => (/* reexport safe */ _geometry3d_FrustumAnimation__WEBPACK_IMPORTED_MODULE_7__.SmoothTransformBetweenFrusta),
|
|
187345
|
-
/* harmony export */ "SolidPrimitive": () => (/* reexport safe */
|
|
187346
|
-
/* harmony export */ "SpacePolygonTriangulation": () => (/* reexport safe */
|
|
187347
|
-
/* harmony export */ "Sphere": () => (/* reexport safe */
|
|
187348
|
-
/* harmony export */ "SphereImplicit": () => (/* reexport safe */
|
|
187349
|
-
/* harmony export */ "StandardViewIndex": () => (/* reexport safe */
|
|
187350
|
-
/* harmony export */ "SteppedIndexFunctionFactory": () => (/* reexport safe */
|
|
187351
|
-
/* harmony export */ "StringifiedClipVector": () => (/* reexport safe */
|
|
187352
|
-
/* harmony export */ "StrokeCountMap": () => (/* reexport safe */
|
|
187353
|
-
/* harmony export */ "StrokeOptions": () => (/* reexport safe */
|
|
187354
|
-
/* harmony export */ "SweepContour": () => (/* reexport safe */
|
|
187355
|
-
/* harmony export */ "TaggedNumericConstants": () => (/* reexport safe */
|
|
187356
|
-
/* harmony export */ "TaggedNumericData": () => (/* reexport safe */
|
|
187357
|
-
/* harmony export */ "TorusImplicit": () => (/* reexport safe */
|
|
187358
|
-
/* harmony export */ "TorusPipe": () => (/* reexport safe */
|
|
187359
|
-
/* harmony export */ "Transform": () => (/* reexport safe */
|
|
187360
|
-
/* harmony export */ "TransitionSpiral3d": () => (/* reexport safe */
|
|
187361
|
-
/* harmony export */ "TriDiagonalSystem": () => (/* reexport safe */
|
|
187153
|
+
/* harmony export */ "SolidPrimitive": () => (/* reexport safe */ _solid_SolidPrimitive__WEBPACK_IMPORTED_MODULE_94__.SolidPrimitive),
|
|
187154
|
+
/* harmony export */ "SpacePolygonTriangulation": () => (/* reexport safe */ _topology_SpaceTriangulation__WEBPACK_IMPORTED_MODULE_122__.SpacePolygonTriangulation),
|
|
187155
|
+
/* harmony export */ "Sphere": () => (/* reexport safe */ _solid_Sphere__WEBPACK_IMPORTED_MODULE_95__.Sphere),
|
|
187156
|
+
/* harmony export */ "SphereImplicit": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.SphereImplicit),
|
|
187157
|
+
/* harmony export */ "StandardViewIndex": () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_35__.StandardViewIndex),
|
|
187158
|
+
/* harmony export */ "SteppedIndexFunctionFactory": () => (/* reexport safe */ _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_125__.SteppedIndexFunctionFactory),
|
|
187159
|
+
/* harmony export */ "StringifiedClipVector": () => (/* reexport safe */ _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_42__.StringifiedClipVector),
|
|
187160
|
+
/* harmony export */ "StrokeCountMap": () => (/* reexport safe */ _curve_Query_StrokeCountMap__WEBPACK_IMPORTED_MODULE_88__.StrokeCountMap),
|
|
187161
|
+
/* harmony export */ "StrokeOptions": () => (/* reexport safe */ _curve_StrokeOptions__WEBPACK_IMPORTED_MODULE_83__.StrokeOptions),
|
|
187162
|
+
/* harmony export */ "SweepContour": () => (/* reexport safe */ _solid_SweepContour__WEBPACK_IMPORTED_MODULE_96__.SweepContour),
|
|
187163
|
+
/* harmony export */ "TaggedNumericConstants": () => (/* reexport safe */ _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_119__.TaggedNumericConstants),
|
|
187164
|
+
/* harmony export */ "TaggedNumericData": () => (/* reexport safe */ _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_119__.TaggedNumericData),
|
|
187165
|
+
/* harmony export */ "TorusImplicit": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.TorusImplicit),
|
|
187166
|
+
/* harmony export */ "TorusPipe": () => (/* reexport safe */ _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_97__.TorusPipe),
|
|
187167
|
+
/* harmony export */ "Transform": () => (/* reexport safe */ _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_31__.Transform),
|
|
187168
|
+
/* harmony export */ "TransitionSpiral3d": () => (/* reexport safe */ _curve_spiral_TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_84__.TransitionSpiral3d),
|
|
187169
|
+
/* harmony export */ "TriDiagonalSystem": () => (/* reexport safe */ _numerics_TriDiagonalSystem__WEBPACK_IMPORTED_MODULE_58__.TriDiagonalSystem),
|
|
187362
187170
|
/* harmony export */ "TriangleLocationDetail": () => (/* reexport safe */ _geometry3d_BarycentricTriangle__WEBPACK_IMPORTED_MODULE_3__.TriangleLocationDetail),
|
|
187363
|
-
/* harmony export */ "Triangulator": () => (/* reexport safe */
|
|
187364
|
-
/* harmony export */ "TrigPolynomial": () => (/* reexport safe */
|
|
187365
|
-
/* harmony export */ "UVSelect": () => (/* reexport safe */
|
|
187366
|
-
/* harmony export */ "UVSurfaceOps": () => (/* reexport safe */
|
|
187367
|
-
/* harmony export */ "UnionOfConvexClipPlaneSets": () => (/* reexport safe */
|
|
187368
|
-
/* harmony export */ "UnionRegion": () => (/* reexport safe */
|
|
187369
|
-
/* harmony export */ "UnivariateBezier": () => (/* reexport safe */
|
|
187370
|
-
/* harmony export */ "Vector2d": () => (/* reexport safe */
|
|
187371
|
-
/* harmony export */ "Vector3d": () => (/* reexport safe */
|
|
187372
|
-
/* harmony export */ "Vector3dArray": () => (/* reexport safe */
|
|
187373
|
-
/* harmony export */ "WeightStyle": () => (/* reexport safe */
|
|
187374
|
-
/* harmony export */ "XY": () => (/* reexport safe */
|
|
187375
|
-
/* harmony export */ "XYAndZ": () => (/* reexport safe */
|
|
187376
|
-
/* harmony export */ "XYZ": () => (/* reexport safe */
|
|
187377
|
-
/* harmony export */ "YawPitchRollAngles": () => (/* reexport safe */
|
|
187378
|
-
/* harmony export */ "compareRange1dLexicalLowHigh": () => (/* reexport safe */
|
|
187379
|
-
/* harmony export */ "interpolateColor": () => (/* reexport safe */
|
|
187171
|
+
/* harmony export */ "Triangulator": () => (/* reexport safe */ _topology_Triangulation__WEBPACK_IMPORTED_MODULE_121__.Triangulator),
|
|
187172
|
+
/* harmony export */ "TrigPolynomial": () => (/* reexport safe */ _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__.TrigPolynomial),
|
|
187173
|
+
/* harmony export */ "UVSelect": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.UVSelect),
|
|
187174
|
+
/* harmony export */ "UVSurfaceOps": () => (/* reexport safe */ _geometry3d_UVSurfaceOps__WEBPACK_IMPORTED_MODULE_32__.UVSurfaceOps),
|
|
187175
|
+
/* harmony export */ "UnionOfConvexClipPlaneSets": () => (/* reexport safe */ _clipping_UnionOfConvexClipPlaneSets__WEBPACK_IMPORTED_MODULE_40__.UnionOfConvexClipPlaneSets),
|
|
187176
|
+
/* harmony export */ "UnionRegion": () => (/* reexport safe */ _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_87__.UnionRegion),
|
|
187177
|
+
/* harmony export */ "UnivariateBezier": () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__.UnivariateBezier),
|
|
187178
|
+
/* harmony export */ "Vector2d": () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.Vector2d),
|
|
187179
|
+
/* harmony export */ "Vector3d": () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.Vector3d),
|
|
187180
|
+
/* harmony export */ "Vector3dArray": () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Vector3dArray),
|
|
187181
|
+
/* harmony export */ "WeightStyle": () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.WeightStyle),
|
|
187182
|
+
/* harmony export */ "XY": () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.XY),
|
|
187183
|
+
/* harmony export */ "XYAndZ": () => (/* reexport safe */ _geometry3d_XYZProps__WEBPACK_IMPORTED_MODULE_33__.XYAndZ),
|
|
187184
|
+
/* harmony export */ "XYZ": () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.XYZ),
|
|
187185
|
+
/* harmony export */ "YawPitchRollAngles": () => (/* reexport safe */ _geometry3d_YawPitchRollAngles__WEBPACK_IMPORTED_MODULE_34__.YawPitchRollAngles),
|
|
187186
|
+
/* harmony export */ "compareRange1dLexicalLowHigh": () => (/* reexport safe */ _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__.compareRange1dLexicalLowHigh),
|
|
187187
|
+
/* harmony export */ "interpolateColor": () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_114__.interpolateColor)
|
|
187380
187188
|
/* harmony export */ });
|
|
187381
187189
|
/* harmony import */ var _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./geometry3d/Angle */ "../../core/geometry/lib/esm/geometry3d/Angle.js");
|
|
187382
187190
|
/* harmony import */ var _geometry3d_AngleSweep__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./geometry3d/AngleSweep */ "../../core/geometry/lib/esm/geometry3d/AngleSweep.js");
|
|
@@ -187396,114 +187204,115 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
187396
187204
|
/* harmony import */ var _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./geometry3d/IndexedXYZCollection */ "../../core/geometry/lib/esm/geometry3d/IndexedXYZCollection.js");
|
|
187397
187205
|
/* harmony import */ var _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./geometry3d/Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
|
|
187398
187206
|
/* harmony import */ var _geometry3d_OrderedRotationAngles__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./geometry3d/OrderedRotationAngles */ "../../core/geometry/lib/esm/geometry3d/OrderedRotationAngles.js");
|
|
187399
|
-
/* harmony import */ var
|
|
187400
|
-
/* harmony import */ var
|
|
187401
|
-
/* harmony import */ var
|
|
187402
|
-
/* harmony import */ var
|
|
187403
|
-
/* harmony import */ var
|
|
187404
|
-
/* harmony import */ var
|
|
187405
|
-
/* harmony import */ var
|
|
187406
|
-
/* harmony import */ var
|
|
187407
|
-
/* harmony import */ var
|
|
187408
|
-
/* harmony import */ var
|
|
187409
|
-
/* harmony import */ var
|
|
187410
|
-
/* harmony import */ var
|
|
187411
|
-
/* harmony import */ var
|
|
187412
|
-
/* harmony import */ var
|
|
187413
|
-
/* harmony import */ var
|
|
187414
|
-
/* harmony import */ var
|
|
187415
|
-
/* harmony import */ var
|
|
187416
|
-
/* harmony import */ var
|
|
187417
|
-
/* harmony import */ var
|
|
187418
|
-
/* harmony import */ var
|
|
187419
|
-
/* harmony import */ var
|
|
187420
|
-
/* harmony import */ var
|
|
187421
|
-
/* harmony import */ var
|
|
187422
|
-
/* harmony import */ var
|
|
187423
|
-
/* harmony import */ var
|
|
187424
|
-
/* harmony import */ var
|
|
187425
|
-
/* harmony import */ var
|
|
187426
|
-
/* harmony import */ var
|
|
187427
|
-
/* harmony import */ var
|
|
187428
|
-
/* harmony import */ var
|
|
187429
|
-
/* harmony import */ var
|
|
187430
|
-
/* harmony import */ var
|
|
187431
|
-
/* harmony import */ var
|
|
187432
|
-
/* harmony import */ var
|
|
187433
|
-
/* harmony import */ var
|
|
187434
|
-
/* harmony import */ var
|
|
187435
|
-
/* harmony import */ var
|
|
187436
|
-
/* harmony import */ var
|
|
187437
|
-
/* harmony import */ var
|
|
187438
|
-
/* harmony import */ var
|
|
187439
|
-
/* harmony import */ var
|
|
187440
|
-
/* harmony import */ var
|
|
187441
|
-
/* harmony import */ var
|
|
187442
|
-
/* harmony import */ var
|
|
187443
|
-
/* harmony import */ var
|
|
187444
|
-
/* harmony import */ var
|
|
187445
|
-
/* harmony import */ var
|
|
187446
|
-
/* harmony import */ var
|
|
187447
|
-
/* harmony import */ var
|
|
187448
|
-
/* harmony import */ var
|
|
187449
|
-
/* harmony import */ var
|
|
187450
|
-
/* harmony import */ var
|
|
187451
|
-
/* harmony import */ var
|
|
187452
|
-
/* harmony import */ var
|
|
187453
|
-
/* harmony import */ var
|
|
187454
|
-
/* harmony import */ var
|
|
187455
|
-
/* harmony import */ var
|
|
187456
|
-
/* harmony import */ var
|
|
187457
|
-
/* harmony import */ var
|
|
187458
|
-
/* harmony import */ var
|
|
187459
|
-
/* harmony import */ var
|
|
187460
|
-
/* harmony import */ var
|
|
187461
|
-
/* harmony import */ var
|
|
187462
|
-
/* harmony import */ var
|
|
187463
|
-
/* harmony import */ var
|
|
187464
|
-
/* harmony import */ var
|
|
187465
|
-
/* harmony import */ var
|
|
187466
|
-
/* harmony import */ var
|
|
187467
|
-
/* harmony import */ var
|
|
187468
|
-
/* harmony import */ var
|
|
187469
|
-
/* harmony import */ var
|
|
187470
|
-
/* harmony import */ var
|
|
187471
|
-
/* harmony import */ var
|
|
187472
|
-
/* harmony import */ var
|
|
187473
|
-
/* harmony import */ var
|
|
187474
|
-
/* harmony import */ var
|
|
187475
|
-
/* harmony import */ var
|
|
187476
|
-
/* harmony import */ var
|
|
187477
|
-
/* harmony import */ var
|
|
187478
|
-
/* harmony import */ var
|
|
187479
|
-
/* harmony import */ var
|
|
187480
|
-
/* harmony import */ var
|
|
187481
|
-
/* harmony import */ var
|
|
187482
|
-
/* harmony import */ var
|
|
187483
|
-
/* harmony import */ var
|
|
187484
|
-
/* harmony import */ var
|
|
187485
|
-
/* harmony import */ var
|
|
187486
|
-
/* harmony import */ var
|
|
187487
|
-
/* harmony import */ var
|
|
187488
|
-
/* harmony import */ var
|
|
187489
|
-
/* harmony import */ var
|
|
187490
|
-
/* harmony import */ var
|
|
187491
|
-
/* harmony import */ var
|
|
187492
|
-
/* harmony import */ var
|
|
187493
|
-
/* harmony import */ var
|
|
187494
|
-
/* harmony import */ var
|
|
187495
|
-
/* harmony import */ var
|
|
187496
|
-
/* harmony import */ var
|
|
187497
|
-
/* harmony import */ var
|
|
187498
|
-
/* harmony import */ var
|
|
187499
|
-
/* harmony import */ var
|
|
187500
|
-
/* harmony import */ var
|
|
187501
|
-
/* harmony import */ var
|
|
187502
|
-
/* harmony import */ var
|
|
187503
|
-
/* harmony import */ var
|
|
187504
|
-
/* harmony import */ var
|
|
187505
|
-
/* harmony import */ var
|
|
187506
|
-
/* harmony import */ var
|
|
187207
|
+
/* harmony import */ var _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./geometry3d/Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
187208
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./geometry3d/Plane3dByOriginAndUnitNormal */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndUnitNormal.js");
|
|
187209
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./geometry3d/Plane3dByOriginAndVectors */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndVectors.js");
|
|
187210
|
+
/* harmony import */ var _geometry3d_Point2dArrayCarrier__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./geometry3d/Point2dArrayCarrier */ "../../core/geometry/lib/esm/geometry3d/Point2dArrayCarrier.js");
|
|
187211
|
+
/* harmony import */ var _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./geometry3d/Point2dVector2d */ "../../core/geometry/lib/esm/geometry3d/Point2dVector2d.js");
|
|
187212
|
+
/* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
187213
|
+
/* harmony import */ var _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./geometry3d/PointHelpers */ "../../core/geometry/lib/esm/geometry3d/PointHelpers.js");
|
|
187214
|
+
/* harmony import */ var _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./geometry3d/Point3dArrayCarrier */ "../../core/geometry/lib/esm/geometry3d/Point3dArrayCarrier.js");
|
|
187215
|
+
/* harmony import */ var _geometry3d_PolylineOps__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./geometry3d/PolylineOps */ "../../core/geometry/lib/esm/geometry3d/PolylineOps.js");
|
|
187216
|
+
/* harmony import */ var _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./geometry3d/PolygonOps */ "../../core/geometry/lib/esm/geometry3d/PolygonOps.js");
|
|
187217
|
+
/* harmony import */ var _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./geometry3d/Range */ "../../core/geometry/lib/esm/geometry3d/Range.js");
|
|
187218
|
+
/* harmony import */ var _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./geometry3d/Ray3d */ "../../core/geometry/lib/esm/geometry3d/Ray3d.js");
|
|
187219
|
+
/* harmony import */ var _geometry3d_Segment1d__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./geometry3d/Segment1d */ "../../core/geometry/lib/esm/geometry3d/Segment1d.js");
|
|
187220
|
+
/* harmony import */ var _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./geometry3d/Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
187221
|
+
/* harmony import */ var _geometry3d_UVSurfaceOps__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./geometry3d/UVSurfaceOps */ "../../core/geometry/lib/esm/geometry3d/UVSurfaceOps.js");
|
|
187222
|
+
/* harmony import */ var _geometry3d_XYZProps__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./geometry3d/XYZProps */ "../../core/geometry/lib/esm/geometry3d/XYZProps.js");
|
|
187223
|
+
/* harmony import */ var _geometry3d_YawPitchRollAngles__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./geometry3d/YawPitchRollAngles */ "../../core/geometry/lib/esm/geometry3d/YawPitchRollAngles.js");
|
|
187224
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
187225
|
+
/* harmony import */ var _Constant__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./Constant */ "../../core/geometry/lib/esm/Constant.js");
|
|
187226
|
+
/* harmony import */ var _clipping_BooleanClipFactory__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./clipping/BooleanClipFactory */ "../../core/geometry/lib/esm/clipping/BooleanClipFactory.js");
|
|
187227
|
+
/* harmony import */ var _clipping_ClipPlane__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./clipping/ClipPlane */ "../../core/geometry/lib/esm/clipping/ClipPlane.js");
|
|
187228
|
+
/* harmony import */ var _clipping_ConvexClipPlaneSet__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./clipping/ConvexClipPlaneSet */ "../../core/geometry/lib/esm/clipping/ConvexClipPlaneSet.js");
|
|
187229
|
+
/* harmony import */ var _clipping_UnionOfConvexClipPlaneSets__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./clipping/UnionOfConvexClipPlaneSets */ "../../core/geometry/lib/esm/clipping/UnionOfConvexClipPlaneSets.js");
|
|
187230
|
+
/* harmony import */ var _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./clipping/ClipPrimitive */ "../../core/geometry/lib/esm/clipping/ClipPrimitive.js");
|
|
187231
|
+
/* harmony import */ var _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./clipping/ClipVector */ "../../core/geometry/lib/esm/clipping/ClipVector.js");
|
|
187232
|
+
/* harmony import */ var _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./clipping/ClipUtils */ "../../core/geometry/lib/esm/clipping/ClipUtils.js");
|
|
187233
|
+
/* harmony import */ var _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./numerics/ConvexPolygon2d */ "../../core/geometry/lib/esm/numerics/ConvexPolygon2d.js");
|
|
187234
|
+
/* harmony import */ var _geometry4d_PlaneByOriginAndVectors4d__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./geometry4d/PlaneByOriginAndVectors4d */ "../../core/geometry/lib/esm/geometry4d/PlaneByOriginAndVectors4d.js");
|
|
187235
|
+
/* harmony import */ var _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./geometry4d/Point4d */ "../../core/geometry/lib/esm/geometry4d/Point4d.js");
|
|
187236
|
+
/* harmony import */ var _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry4d/Matrix4d */ "../../core/geometry/lib/esm/geometry4d/Matrix4d.js");
|
|
187237
|
+
/* harmony import */ var _geometry4d_Map4d__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry4d/Map4d */ "../../core/geometry/lib/esm/geometry4d/Map4d.js");
|
|
187238
|
+
/* harmony import */ var _geometry4d_MomentData__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry4d/MomentData */ "../../core/geometry/lib/esm/geometry4d/MomentData.js");
|
|
187239
|
+
/* harmony import */ var _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./numerics/BezierPolynomials */ "../../core/geometry/lib/esm/numerics/BezierPolynomials.js");
|
|
187240
|
+
/* harmony import */ var _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./numerics/ClusterableArray */ "../../core/geometry/lib/esm/numerics/ClusterableArray.js");
|
|
187241
|
+
/* harmony import */ var _numerics_Newton__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./numerics/Newton */ "../../core/geometry/lib/esm/numerics/Newton.js");
|
|
187242
|
+
/* harmony import */ var _numerics_Complex__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./numerics/Complex */ "../../core/geometry/lib/esm/numerics/Complex.js");
|
|
187243
|
+
/* harmony import */ var _numerics_PascalCoefficients__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./numerics/PascalCoefficients */ "../../core/geometry/lib/esm/numerics/PascalCoefficients.js");
|
|
187244
|
+
/* harmony import */ var _numerics_Polynomials__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./numerics/Polynomials */ "../../core/geometry/lib/esm/numerics/Polynomials.js");
|
|
187245
|
+
/* harmony import */ var _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./numerics/Quadrature */ "../../core/geometry/lib/esm/numerics/Quadrature.js");
|
|
187246
|
+
/* harmony import */ var _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./numerics/Range1dArray */ "../../core/geometry/lib/esm/numerics/Range1dArray.js");
|
|
187247
|
+
/* harmony import */ var _numerics_TriDiagonalSystem__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./numerics/TriDiagonalSystem */ "../../core/geometry/lib/esm/numerics/TriDiagonalSystem.js");
|
|
187248
|
+
/* harmony import */ var _curve_Arc3d__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./curve/Arc3d */ "../../core/geometry/lib/esm/curve/Arc3d.js");
|
|
187249
|
+
/* harmony import */ var _curve_ConstructCurveBetweenCurves__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./curve/ConstructCurveBetweenCurves */ "../../core/geometry/lib/esm/curve/ConstructCurveBetweenCurves.js");
|
|
187250
|
+
/* harmony import */ var _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./curve/CoordinateXYZ */ "../../core/geometry/lib/esm/curve/CoordinateXYZ.js");
|
|
187251
|
+
/* harmony import */ var _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./curve/CurveChainWithDistanceIndex */ "../../core/geometry/lib/esm/curve/CurveChainWithDistanceIndex.js");
|
|
187252
|
+
/* harmony import */ var _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./curve/CurveExtendMode */ "../../core/geometry/lib/esm/curve/CurveExtendMode.js");
|
|
187253
|
+
/* harmony import */ var _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./curve/CurveCollection */ "../../core/geometry/lib/esm/curve/CurveCollection.js");
|
|
187254
|
+
/* harmony import */ var _curve_CurveCurve__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./curve/CurveCurve */ "../../core/geometry/lib/esm/curve/CurveCurve.js");
|
|
187255
|
+
/* harmony import */ var _curve_CurveCurveIntersectXY__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./curve/CurveCurveIntersectXY */ "../../core/geometry/lib/esm/curve/CurveCurveIntersectXY.js");
|
|
187256
|
+
/* harmony import */ var _curve_CurveCurveIntersectXYZ__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./curve/CurveCurveIntersectXYZ */ "../../core/geometry/lib/esm/curve/CurveCurveIntersectXYZ.js");
|
|
187257
|
+
/* harmony import */ var _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./curve/CurveLocationDetail */ "../../core/geometry/lib/esm/curve/CurveLocationDetail.js");
|
|
187258
|
+
/* harmony import */ var _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./curve/CurveFactory */ "../../core/geometry/lib/esm/curve/CurveFactory.js");
|
|
187259
|
+
/* harmony import */ var _curve_CurvePrimitive__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./curve/CurvePrimitive */ "../../core/geometry/lib/esm/curve/CurvePrimitive.js");
|
|
187260
|
+
/* harmony import */ var _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./curve/CurveProcessor */ "../../core/geometry/lib/esm/curve/CurveProcessor.js");
|
|
187261
|
+
/* harmony import */ var _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./curve/GeometryQuery */ "../../core/geometry/lib/esm/curve/GeometryQuery.js");
|
|
187262
|
+
/* harmony import */ var _curve_LineSegment3d__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./curve/LineSegment3d */ "../../core/geometry/lib/esm/curve/LineSegment3d.js");
|
|
187263
|
+
/* harmony import */ var _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./curve/LineString3d */ "../../core/geometry/lib/esm/curve/LineString3d.js");
|
|
187264
|
+
/* harmony import */ var _curve_Loop__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./curve/Loop */ "../../core/geometry/lib/esm/curve/Loop.js");
|
|
187265
|
+
/* harmony import */ var _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./curve/ParityRegion */ "../../core/geometry/lib/esm/curve/ParityRegion.js");
|
|
187266
|
+
/* harmony import */ var _curve_Path__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./curve/Path */ "../../core/geometry/lib/esm/curve/Path.js");
|
|
187267
|
+
/* harmony import */ var _curve_RegionMomentsXY__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./curve/RegionMomentsXY */ "../../core/geometry/lib/esm/curve/RegionMomentsXY.js");
|
|
187268
|
+
/* harmony import */ var _curve_RegionOps__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./curve/RegionOps */ "../../core/geometry/lib/esm/curve/RegionOps.js");
|
|
187269
|
+
/* harmony import */ var _curve_internalContexts_PolygonOffsetContext__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./curve/internalContexts/PolygonOffsetContext */ "../../core/geometry/lib/esm/curve/internalContexts/PolygonOffsetContext.js");
|
|
187270
|
+
/* harmony import */ var _curve_PointString3d__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./curve/PointString3d */ "../../core/geometry/lib/esm/curve/PointString3d.js");
|
|
187271
|
+
/* harmony import */ var _curve_ProxyCurve__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./curve/ProxyCurve */ "../../core/geometry/lib/esm/curve/ProxyCurve.js");
|
|
187272
|
+
/* harmony import */ var _curve_StrokeOptions__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./curve/StrokeOptions */ "../../core/geometry/lib/esm/curve/StrokeOptions.js");
|
|
187273
|
+
/* harmony import */ var _curve_spiral_TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./curve/spiral/TransitionSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/TransitionSpiral3d.js");
|
|
187274
|
+
/* harmony import */ var _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./curve/spiral/IntegratedSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/IntegratedSpiral3d.js");
|
|
187275
|
+
/* harmony import */ var _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./curve/spiral/DirectSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/DirectSpiral3d.js");
|
|
187276
|
+
/* harmony import */ var _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./curve/UnionRegion */ "../../core/geometry/lib/esm/curve/UnionRegion.js");
|
|
187277
|
+
/* harmony import */ var _curve_Query_StrokeCountMap__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./curve/Query/StrokeCountMap */ "../../core/geometry/lib/esm/curve/Query/StrokeCountMap.js");
|
|
187278
|
+
/* harmony import */ var _solid_Box__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./solid/Box */ "../../core/geometry/lib/esm/solid/Box.js");
|
|
187279
|
+
/* harmony import */ var _solid_Cone__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./solid/Cone */ "../../core/geometry/lib/esm/solid/Cone.js");
|
|
187280
|
+
/* harmony import */ var _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./solid/LinearSweep */ "../../core/geometry/lib/esm/solid/LinearSweep.js");
|
|
187281
|
+
/* harmony import */ var _solid_RotationalSweep__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./solid/RotationalSweep */ "../../core/geometry/lib/esm/solid/RotationalSweep.js");
|
|
187282
|
+
/* harmony import */ var _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./solid/RuledSweep */ "../../core/geometry/lib/esm/solid/RuledSweep.js");
|
|
187283
|
+
/* harmony import */ var _solid_SolidPrimitive__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./solid/SolidPrimitive */ "../../core/geometry/lib/esm/solid/SolidPrimitive.js");
|
|
187284
|
+
/* harmony import */ var _solid_Sphere__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./solid/Sphere */ "../../core/geometry/lib/esm/solid/Sphere.js");
|
|
187285
|
+
/* harmony import */ var _solid_SweepContour__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./solid/SweepContour */ "../../core/geometry/lib/esm/solid/SweepContour.js");
|
|
187286
|
+
/* harmony import */ var _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./solid/TorusPipe */ "../../core/geometry/lib/esm/solid/TorusPipe.js");
|
|
187287
|
+
/* harmony import */ var _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./bspline/AkimaCurve3d */ "../../core/geometry/lib/esm/bspline/AkimaCurve3d.js");
|
|
187288
|
+
/* harmony import */ var _bspline_Bezier1dNd__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./bspline/Bezier1dNd */ "../../core/geometry/lib/esm/bspline/Bezier1dNd.js");
|
|
187289
|
+
/* harmony import */ var _bspline_BezierCurveBase__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./bspline/BezierCurveBase */ "../../core/geometry/lib/esm/bspline/BezierCurveBase.js");
|
|
187290
|
+
/* harmony import */ var _bspline_BezierCurve3d__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./bspline/BezierCurve3d */ "../../core/geometry/lib/esm/bspline/BezierCurve3d.js");
|
|
187291
|
+
/* harmony import */ var _bspline_BezierCurve3dH__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./bspline/BezierCurve3dH */ "../../core/geometry/lib/esm/bspline/BezierCurve3dH.js");
|
|
187292
|
+
/* harmony import */ var _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./bspline/BSplineCurve */ "../../core/geometry/lib/esm/bspline/BSplineCurve.js");
|
|
187293
|
+
/* harmony import */ var _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./bspline/BSplineCurveOps */ "../../core/geometry/lib/esm/bspline/BSplineCurveOps.js");
|
|
187294
|
+
/* harmony import */ var _bspline_BSpline1dNd__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./bspline/BSpline1dNd */ "../../core/geometry/lib/esm/bspline/BSpline1dNd.js");
|
|
187295
|
+
/* harmony import */ var _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./bspline/BSplineCurve3dH */ "../../core/geometry/lib/esm/bspline/BSplineCurve3dH.js");
|
|
187296
|
+
/* harmony import */ var _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./bspline/BSplineSurface */ "../../core/geometry/lib/esm/bspline/BSplineSurface.js");
|
|
187297
|
+
/* harmony import */ var _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./bspline/InterpolationCurve3d */ "../../core/geometry/lib/esm/bspline/InterpolationCurve3d.js");
|
|
187298
|
+
/* harmony import */ var _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./bspline/KnotVector */ "../../core/geometry/lib/esm/bspline/KnotVector.js");
|
|
187299
|
+
/* harmony import */ var _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./polyface/AuxData */ "../../core/geometry/lib/esm/polyface/AuxData.js");
|
|
187300
|
+
/* harmony import */ var _polyface_BoxTopology__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./polyface/BoxTopology */ "../../core/geometry/lib/esm/polyface/BoxTopology.js");
|
|
187301
|
+
/* harmony import */ var _polyface_FacetFaceData__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./polyface/FacetFaceData */ "../../core/geometry/lib/esm/polyface/FacetFaceData.js");
|
|
187302
|
+
/* harmony import */ var _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./polyface/Polyface */ "../../core/geometry/lib/esm/polyface/Polyface.js");
|
|
187303
|
+
/* harmony import */ var _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./polyface/IndexedPolyfaceVisitor */ "../../core/geometry/lib/esm/polyface/IndexedPolyfaceVisitor.js");
|
|
187304
|
+
/* harmony import */ var _polyface_PolyfaceBuilder__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./polyface/PolyfaceBuilder */ "../../core/geometry/lib/esm/polyface/PolyfaceBuilder.js");
|
|
187305
|
+
/* harmony import */ var _polyface_PolyfaceData__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./polyface/PolyfaceData */ "../../core/geometry/lib/esm/polyface/PolyfaceData.js");
|
|
187306
|
+
/* harmony import */ var _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./polyface/PolyfaceQuery */ "../../core/geometry/lib/esm/polyface/PolyfaceQuery.js");
|
|
187307
|
+
/* harmony import */ var _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./polyface/PolyfaceClip */ "../../core/geometry/lib/esm/polyface/PolyfaceClip.js");
|
|
187308
|
+
/* harmony import */ var _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./polyface/TaggedNumericData */ "../../core/geometry/lib/esm/polyface/TaggedNumericData.js");
|
|
187309
|
+
/* harmony import */ var _topology_Graph__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./topology/Graph */ "../../core/geometry/lib/esm/topology/Graph.js");
|
|
187310
|
+
/* harmony import */ var _topology_Triangulation__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./topology/Triangulation */ "../../core/geometry/lib/esm/topology/Triangulation.js");
|
|
187311
|
+
/* harmony import */ var _topology_SpaceTriangulation__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./topology/SpaceTriangulation */ "../../core/geometry/lib/esm/topology/SpaceTriangulation.js");
|
|
187312
|
+
/* harmony import */ var _serialization_IModelJsonSchema__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./serialization/IModelJsonSchema */ "../../core/geometry/lib/esm/serialization/IModelJsonSchema.js");
|
|
187313
|
+
/* harmony import */ var _serialization_DeepCompare__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./serialization/DeepCompare */ "../../core/geometry/lib/esm/serialization/DeepCompare.js");
|
|
187314
|
+
/* harmony import */ var _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./serialization/GeometrySamples */ "../../core/geometry/lib/esm/serialization/GeometrySamples.js");
|
|
187315
|
+
/* harmony import */ var _serialization_BentleyGeometryFlatBuffer__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./serialization/BentleyGeometryFlatBuffer */ "../../core/geometry/lib/esm/serialization/BentleyGeometryFlatBuffer.js");
|
|
187507
187316
|
/*---------------------------------------------------------------------------------------------
|
|
187508
187317
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
187509
187318
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -187533,6 +187342,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
187533
187342
|
* * Transform -- an origin and axes.
|
|
187534
187343
|
* * Range1d, Range2d, Range3d -- subsets of 1d, 2d, and 3d space bounded by low and high values.
|
|
187535
187344
|
* * Ray3d -- a ray defined by origin and direction vector
|
|
187345
|
+
* * Plane3d -- an abstract base class extended by Plane3dByOriginAndNormal, Plane3dByOriginAndUnitNormal, Point4d, and ClipPlane
|
|
187536
187346
|
* * Plane3dByOriginAndUnitNormal -- a plane defined by an origin and a single vector which is perpendicular to the plane
|
|
187537
187347
|
* * plane3dByOriginAndVectors -- a plane defined by an origin and two vectors in the plane.
|
|
187538
187348
|
* * Angles
|
|
@@ -187751,6 +187561,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
187751
187561
|
|
|
187752
187562
|
|
|
187753
187563
|
|
|
187564
|
+
|
|
187754
187565
|
|
|
187755
187566
|
|
|
187756
187567
|
/***/ }),
|
|
@@ -214695,6 +214506,113 @@ OrderedRotationAngles._sTreatVectorsAsColumns = false;
|
|
|
214695
214506
|
|
|
214696
214507
|
|
|
214697
214508
|
|
|
214509
|
+
/***/ }),
|
|
214510
|
+
|
|
214511
|
+
/***/ "../../core/geometry/lib/esm/geometry3d/Plane3d.js":
|
|
214512
|
+
/*!*********************************************************!*\
|
|
214513
|
+
!*** ../../core/geometry/lib/esm/geometry3d/Plane3d.js ***!
|
|
214514
|
+
\*********************************************************/
|
|
214515
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
214516
|
+
|
|
214517
|
+
"use strict";
|
|
214518
|
+
__webpack_require__.r(__webpack_exports__);
|
|
214519
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
214520
|
+
/* harmony export */ "Plane3d": () => (/* binding */ Plane3d)
|
|
214521
|
+
/* harmony export */ });
|
|
214522
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
214523
|
+
/* harmony import */ var _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
214524
|
+
/*---------------------------------------------------------------------------------------------
|
|
214525
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
214526
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
214527
|
+
*--------------------------------------------------------------------------------------------*/
|
|
214528
|
+
/** @packageDocumentation
|
|
214529
|
+
* @module CartesianGeometry
|
|
214530
|
+
*/
|
|
214531
|
+
|
|
214532
|
+
|
|
214533
|
+
/**
|
|
214534
|
+
* Plane3d is the abstract base class for multiple 3d plane representations:
|
|
214535
|
+
* * [[Plane3dByOriginAndUnitNormal]] -- plane defined by origin and normal, with no preferred in-plane directions
|
|
214536
|
+
* * [[Plane3dByOriginAndVectors]] -- plane defined by origin and 2 vectors in the plane, with normal implied by the vectors' cross product
|
|
214537
|
+
* * [[Point4d]] -- homogeneous form of xyzw plane.
|
|
214538
|
+
* * [[ClipPlane]] -- implicit plane with additional markup as used by compound clip structures such as [[ConvexClipPlaneSet]] and [[UnionOfConvexClipPlaneSets]]
|
|
214539
|
+
*
|
|
214540
|
+
* As an abstract base class, Plane3d demands that its derived classes implement queries to answer questions
|
|
214541
|
+
* about the plane's normal and the altitude of points above or below the plane. (Altitude is measured perpendicular to the plane.)
|
|
214542
|
+
* These abstract methods are:
|
|
214543
|
+
* * altitude(Point3d), altitudeXYZ(x,y,z), and altitudeXYZW(Point4d) -- evaluate altitude
|
|
214544
|
+
* * normalX(), normalY(), normalZ() -- return components of the plane's normal vector.
|
|
214545
|
+
* * velocity(Vector3d), velocityXYZ(x,y,z) -- return dot product of the input vector with the plane normal.
|
|
214546
|
+
* * projectPointToPlane (spacePoint: Point3d) -- return projection of spacePoint into the plane.
|
|
214547
|
+
*
|
|
214548
|
+
* The Plane3d base class also provides implementations of several queries which it can implement by calling the abstract queries.
|
|
214549
|
+
* * Derived classes may choose to override these default implementations using private knowledge of what they have stored.
|
|
214550
|
+
* * isPointInPlane(spacePoint, tolerance?) -- test if spacePoint is in the plane with tolerance. Default tolerance is small metric distance
|
|
214551
|
+
* * classifyAltitude (spacePoint, tolerance?), classifyAltitudeXYZ (x,y,z,tolerance?) -- return -1,0,1 indicating if spacePoint's altitude
|
|
214552
|
+
* is negative, near zero, or positive.
|
|
214553
|
+
*
|
|
214554
|
+
* Notes about scaling and signs in methods that compute altitudes, normal components and velocities:
|
|
214555
|
+
* * The term "altitude" indicates a _signed_ distance from the plane.
|
|
214556
|
+
* * altitude zero is _on_ the plane
|
|
214557
|
+
* * positive altitudes are on one side
|
|
214558
|
+
* * negatives are on the other.
|
|
214559
|
+
* * 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
|
|
214560
|
+
* understands that it can be OK for its plane implementation to have that scaling.
|
|
214561
|
+
* * By convention, derived classes whose definitions (normals and vectors in plane) are simple cartesian are expected
|
|
214562
|
+
* to return true distances. This applies to:
|
|
214563
|
+
* * [[Plane3dByOriginAndUnitNormal]] and [[ClipPlane]]
|
|
214564
|
+
* * These maintain a stored unit normal so the altitude calculations are inherently true cartesian distance.
|
|
214565
|
+
* * [[Plane3dByOriginAndVectors]] -- this is a bit expensive because
|
|
214566
|
+
* * the normal is the cross product of the defining vectors.
|
|
214567
|
+
* * that cross product is not typically unit
|
|
214568
|
+
* * normalization adds to the cost of computing off-plane distances
|
|
214569
|
+
* * 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.
|
|
214570
|
+
* * "4 dimensional" (homogeneous coordinate planes) ([[Point4d]] and [[PlaneByOriginAndVectors4d]])
|
|
214571
|
+
* * typically do _not_ force their coefficients to any distance-based normalization
|
|
214572
|
+
* * are typically used for calculations in spaces with skewing effects do to perspective, and true distances are not required.
|
|
214573
|
+
* * In all classes, the `weightedAltitude` method is free to be scaled distance.
|
|
214574
|
+
* @public
|
|
214575
|
+
*/
|
|
214576
|
+
class Plane3d {
|
|
214577
|
+
/** Returns true if spacePoint is within distance tolerance of the plane. */
|
|
214578
|
+
isPointInPlane(spacePoint, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistance) {
|
|
214579
|
+
return Math.abs(this.altitude(spacePoint)) <= tolerance;
|
|
214580
|
+
}
|
|
214581
|
+
/** return a value -1, 0, 1 giving a signed indicator of whether the toleranced altitude of the point is
|
|
214582
|
+
* negative, near zero, or positive.
|
|
214583
|
+
*
|
|
214584
|
+
*/
|
|
214585
|
+
classifyAltitude(point, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistance) {
|
|
214586
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.split3Way01(this.altitude(point), tolerance);
|
|
214587
|
+
}
|
|
214588
|
+
/** return a value -1, 0, 1 giving a signed indicator of whether the toleranced altitude of x,y,z is
|
|
214589
|
+
* negative, near zero, or positive.
|
|
214590
|
+
*
|
|
214591
|
+
*/
|
|
214592
|
+
classifyAltitudeXYZ(x, y, z, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallMetricDistance) {
|
|
214593
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.split3Way01(this.altitudeXYZ(x, y, z), tolerance);
|
|
214594
|
+
}
|
|
214595
|
+
/**
|
|
214596
|
+
* Return the unit normal for the plane.
|
|
214597
|
+
* * The abstract base class implementation assembles the normal from normalX, normalY, normalZ calls.
|
|
214598
|
+
* * Derived classes should (but are not required to) override for maximum efficiency if the separate normal calls cause repeated normalization.
|
|
214599
|
+
* @param result
|
|
214600
|
+
*/
|
|
214601
|
+
getUnitNormal(result) {
|
|
214602
|
+
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.createNormalized(this.normalX(), this.normalY(), this.normalZ(), result);
|
|
214603
|
+
}
|
|
214604
|
+
/**
|
|
214605
|
+
* Return any point on the plane.
|
|
214606
|
+
* * Default implementation projects the origin (0,0,0) to the plane.
|
|
214607
|
+
* * Classes that have a preferred origin for their plane should override.
|
|
214608
|
+
* * Classes with a purely implicit equation of their plane can accept the default implementation
|
|
214609
|
+
* */
|
|
214610
|
+
getAnyPointOnPlane(result) {
|
|
214611
|
+
return this.projectPointToPlane(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(0, 0, 0), result);
|
|
214612
|
+
}
|
|
214613
|
+
}
|
|
214614
|
+
|
|
214615
|
+
|
|
214698
214616
|
/***/ }),
|
|
214699
214617
|
|
|
214700
214618
|
/***/ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndUnitNormal.js":
|
|
@@ -214708,10 +214626,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
214708
214626
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
214709
214627
|
/* harmony export */ "Plane3dByOriginAndUnitNormal": () => (/* binding */ Plane3dByOriginAndUnitNormal)
|
|
214710
214628
|
/* harmony export */ });
|
|
214711
|
-
/* harmony import */ var
|
|
214712
|
-
/* harmony import */ var
|
|
214713
|
-
/* harmony import */ var
|
|
214714
|
-
/* harmony import */ var
|
|
214629
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
214630
|
+
/* harmony import */ var _Plane3d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
214631
|
+
/* harmony import */ var _Matrix3d__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
|
|
214632
|
+
/* harmony import */ var _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
214633
|
+
/* harmony import */ var _Transform__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
214715
214634
|
/*---------------------------------------------------------------------------------------------
|
|
214716
214635
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
214717
214636
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -214723,21 +214642,23 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
214723
214642
|
|
|
214724
214643
|
|
|
214725
214644
|
|
|
214645
|
+
|
|
214726
214646
|
/**
|
|
214727
214647
|
* A plane defined by
|
|
214728
214648
|
* * Any point on the plane.
|
|
214729
214649
|
* * a unit normal.
|
|
214730
214650
|
* @public
|
|
214731
214651
|
*/
|
|
214732
|
-
class Plane3dByOriginAndUnitNormal {
|
|
214652
|
+
class Plane3dByOriginAndUnitNormal extends _Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
|
|
214733
214653
|
// constructor captures references !!!
|
|
214734
214654
|
constructor(origin, normal) {
|
|
214655
|
+
super();
|
|
214735
214656
|
this._origin = origin;
|
|
214736
214657
|
this._normal = normal;
|
|
214737
214658
|
}
|
|
214738
214659
|
// This is private because it does not check validity of the unit vector.
|
|
214739
214660
|
static _create(x, y, z, u, v, w) {
|
|
214740
|
-
return new Plane3dByOriginAndUnitNormal(
|
|
214661
|
+
return new Plane3dByOriginAndUnitNormal(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(x, y, z), _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.create(u, v, w));
|
|
214741
214662
|
}
|
|
214742
214663
|
/**
|
|
214743
214664
|
* Create a plane parallel to the XY plane
|
|
@@ -214780,20 +214701,33 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
214780
214701
|
}
|
|
214781
214702
|
return new Plane3dByOriginAndUnitNormal(origin.clone(), normalized);
|
|
214782
214703
|
}
|
|
214704
|
+
/** create a new Plane3dByOriginAndUnitNormal from a variety of plane types.
|
|
214705
|
+
* * The inputs are NOT captured.
|
|
214706
|
+
* * Returns undefined if the normal vector is all zeros.
|
|
214707
|
+
*/
|
|
214708
|
+
static createFrom(source, result) {
|
|
214709
|
+
if (source instanceof Plane3dByOriginAndUnitNormal)
|
|
214710
|
+
return source.clone(result);
|
|
214711
|
+
const normal = source.getUnitNormal();
|
|
214712
|
+
if (normal === undefined)
|
|
214713
|
+
return undefined;
|
|
214714
|
+
const origin = source.getAnyPointOnPlane();
|
|
214715
|
+
return this.create(origin, normal, result);
|
|
214716
|
+
}
|
|
214783
214717
|
/** create a new Plane3dByOriginAndUnitNormal with direct coordinates of origin and normal.
|
|
214784
214718
|
* * Returns undefined if the normal vector is all zeros.
|
|
214785
214719
|
* * If unable to normalize return undefined. (And if result is given it is left unchanged)
|
|
214786
214720
|
*/
|
|
214787
214721
|
static createXYZUVW(ax, ay, az, ux, uy, uz, result) {
|
|
214788
|
-
const magU =
|
|
214789
|
-
if (magU <
|
|
214722
|
+
const magU = _Geometry__WEBPACK_IMPORTED_MODULE_2__.Geometry.hypotenuseXYZ(ux, uy, uz);
|
|
214723
|
+
if (magU < _Geometry__WEBPACK_IMPORTED_MODULE_2__.Geometry.smallMetricDistance)
|
|
214790
214724
|
return undefined;
|
|
214791
214725
|
if (result) {
|
|
214792
214726
|
result._origin.set(ax, ay, az);
|
|
214793
214727
|
result._normal.set(ux / magU, uy / magU, uz / magU);
|
|
214794
214728
|
return result;
|
|
214795
214729
|
}
|
|
214796
|
-
return new Plane3dByOriginAndUnitNormal(
|
|
214730
|
+
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));
|
|
214797
214731
|
}
|
|
214798
214732
|
/** 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.
|
|
214799
214733
|
* * origin and normal both have z = 0.
|
|
@@ -214814,7 +214748,7 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
214814
214748
|
result._normal.set(normalAngleFromX.cos(), normalAngleFromX.sin(), 0.0);
|
|
214815
214749
|
return result;
|
|
214816
214750
|
}
|
|
214817
|
-
return new Plane3dByOriginAndUnitNormal(
|
|
214751
|
+
return new Plane3dByOriginAndUnitNormal(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Point3d.create(x, y, 0), _Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.create(normalAngleFromX.cos(), normalAngleFromX.sin()));
|
|
214818
214752
|
}
|
|
214819
214753
|
/** Create a plane defined by two points and an in-plane vector.
|
|
214820
214754
|
* @param pointA any point in the plane
|
|
@@ -214827,6 +214761,28 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
214827
214761
|
return new Plane3dByOriginAndUnitNormal(pointA, cross);
|
|
214828
214762
|
return undefined;
|
|
214829
214763
|
}
|
|
214764
|
+
/** Create a plane defined by three points.
|
|
214765
|
+
* @param pointA any point in the plane. This will be the origin.
|
|
214766
|
+
* @param pointB any other point in the plane
|
|
214767
|
+
* @param pointC any third point in the plane but not on the line of pointA and pointB
|
|
214768
|
+
*/
|
|
214769
|
+
static createOriginAndTargets(pointA, pointB, pointC) {
|
|
214770
|
+
const cross = pointA.crossProductToPoints(pointB, pointC);
|
|
214771
|
+
if (cross.tryNormalizeInPlace())
|
|
214772
|
+
return new Plane3dByOriginAndUnitNormal(pointA, cross);
|
|
214773
|
+
return undefined;
|
|
214774
|
+
}
|
|
214775
|
+
/** Create a plane defined by a point and two vectors in the plane
|
|
214776
|
+
* @param pointA any point in the plane
|
|
214777
|
+
* @param vectorB any vector in the plane
|
|
214778
|
+
* @param vectorC any vector in the plane but not parallel to vectorB
|
|
214779
|
+
*/
|
|
214780
|
+
static createOriginAndVectors(pointA, vectorB, vectorC) {
|
|
214781
|
+
const cross = vectorB.crossProduct(vectorC);
|
|
214782
|
+
if (cross.tryNormalizeInPlace())
|
|
214783
|
+
return new Plane3dByOriginAndUnitNormal(pointA, cross);
|
|
214784
|
+
return undefined;
|
|
214785
|
+
}
|
|
214830
214786
|
/** test for (toleranced) equality with `other` */
|
|
214831
214787
|
isAlmostEqual(other) {
|
|
214832
214788
|
return this._origin.isAlmostEqual(other._origin) && this._normal.isAlmostEqual(other._normal);
|
|
@@ -214865,16 +214821,16 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
214865
214821
|
* * x,y axes in plane.
|
|
214866
214822
|
*/
|
|
214867
214823
|
getLocalToWorld() {
|
|
214868
|
-
const axes =
|
|
214869
|
-
return
|
|
214824
|
+
const axes = _Matrix3d__WEBPACK_IMPORTED_MODULE_3__.Matrix3d.createRigidHeadsUp(this._normal, _Geometry__WEBPACK_IMPORTED_MODULE_2__.AxisOrder.ZXY);
|
|
214825
|
+
return _Transform__WEBPACK_IMPORTED_MODULE_4__.Transform.createRefs(this._origin.clone(), axes);
|
|
214870
214826
|
}
|
|
214871
214827
|
/** Return a (singular) transform which projects points to this plane.
|
|
214872
214828
|
*/
|
|
214873
214829
|
getProjectionToPlane() {
|
|
214874
|
-
const axes =
|
|
214830
|
+
const axes = _Matrix3d__WEBPACK_IMPORTED_MODULE_3__.Matrix3d.createIdentity();
|
|
214875
214831
|
axes.addScaledOuterProductInPlace(this._normal, this._normal, -1.0);
|
|
214876
214832
|
axes.markSingular();
|
|
214877
|
-
return
|
|
214833
|
+
return _Transform__WEBPACK_IMPORTED_MODULE_4__.Transform.createFixedPointAndMatrix(this._origin, axes);
|
|
214878
214834
|
}
|
|
214879
214835
|
/** Copy coordinates from the given origin and normal. */
|
|
214880
214836
|
set(origin, normal) {
|
|
@@ -214928,11 +214884,23 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
214928
214884
|
* Return the z component of the normal used to evaluate altitude.
|
|
214929
214885
|
*/
|
|
214930
214886
|
normalZ() { return this._normal.z; }
|
|
214931
|
-
/**
|
|
214887
|
+
/**
|
|
214888
|
+
* Return (a clone of) the unit normal.
|
|
214889
|
+
*/
|
|
214890
|
+
getUnitNormal(result) {
|
|
214891
|
+
return this._normal.clone(result);
|
|
214892
|
+
}
|
|
214893
|
+
/**
|
|
214894
|
+
* Return (a clone of) the origin.
|
|
214895
|
+
*/
|
|
214896
|
+
getAnyPointOnPlane(result) {
|
|
214897
|
+
return this._origin.clone(result);
|
|
214898
|
+
}
|
|
214899
|
+
/** Return the signed altitude of weighted spacePoint above or below the plane. (Below is negative) */
|
|
214932
214900
|
weightedAltitude(spacePoint) {
|
|
214933
214901
|
return this._normal.dotProductStart3dEnd4d(this._origin, spacePoint);
|
|
214934
214902
|
}
|
|
214935
|
-
/** return
|
|
214903
|
+
/** return any point at specified (signed) altitude. */
|
|
214936
214904
|
altitudeToPoint(altitude, result) {
|
|
214937
214905
|
return this._origin.plusScaled(this._normal, altitude, result);
|
|
214938
214906
|
}
|
|
@@ -214956,8 +214924,13 @@ class Plane3dByOriginAndUnitNormal {
|
|
|
214956
214924
|
projectPointToPlane(spacePoint, result) {
|
|
214957
214925
|
return spacePoint.plusScaled(this._normal, -this._normal.dotProductStartEnd(this._origin, spacePoint), result);
|
|
214958
214926
|
}
|
|
214959
|
-
/** Returns true
|
|
214960
|
-
|
|
214927
|
+
/** Returns true if spacePoint is within distance tolerance of the plane.
|
|
214928
|
+
* * This logic is identical to the [[Plane3d]] method but avoids a level of function call.
|
|
214929
|
+
*/
|
|
214930
|
+
isPointInPlane(spacePoint, tolerance = _Geometry__WEBPACK_IMPORTED_MODULE_2__.Geometry.smallMetricDistance) {
|
|
214931
|
+
const altitude = this._normal.dotProductStartEnd(this._origin, spacePoint);
|
|
214932
|
+
return Math.abs(altitude) <= tolerance;
|
|
214933
|
+
}
|
|
214961
214934
|
}
|
|
214962
214935
|
|
|
214963
214936
|
|
|
@@ -214974,10 +214947,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
214974
214947
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
214975
214948
|
/* harmony export */ "Plane3dByOriginAndVectors": () => (/* binding */ Plane3dByOriginAndVectors)
|
|
214976
214949
|
/* harmony export */ });
|
|
214977
|
-
/* harmony import */ var
|
|
214978
|
-
/* harmony import */ var
|
|
214979
|
-
/* harmony import */ var
|
|
214980
|
-
/* harmony import */ var
|
|
214950
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
214951
|
+
/* harmony import */ var _Plane3d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
214952
|
+
/* harmony import */ var _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
214953
|
+
/* harmony import */ var _Ray3d__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Ray3d */ "../../core/geometry/lib/esm/geometry3d/Ray3d.js");
|
|
214954
|
+
/* harmony import */ var _Transform__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
214955
|
+
/* harmony import */ var _Matrix3d__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Matrix3d */ "../../core/geometry/lib/esm/geometry3d/Matrix3d.js");
|
|
214981
214956
|
/*---------------------------------------------------------------------------------------------
|
|
214982
214957
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
214983
214958
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -214989,21 +214964,29 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
214989
214964
|
|
|
214990
214965
|
|
|
214991
214966
|
|
|
214967
|
+
|
|
214968
|
+
|
|
214992
214969
|
/**
|
|
214993
214970
|
* A Plane3dByOriginAndVectors is an origin and a pair of vectors.
|
|
214994
214971
|
* This defines a plane with a (possibly skewed) uv coordinate grid
|
|
214995
214972
|
* * The grid directions (`vectorU` and `vectorV`)
|
|
214996
214973
|
* * are NOT required to be unit vectors.
|
|
214997
214974
|
* * are NOT required to be perpendicular vectors.
|
|
214975
|
+
* * The skewed, non-uniform scaling of the grid directions is the primary focus of this class.
|
|
214976
|
+
* * Queries of altitude, velocity, normalX, normalY, and normalZ use the NORMALIZED cross product of vectorU and vectorV as plane normal.
|
|
214977
|
+
* * Hence these are cartesian distances.
|
|
214978
|
+
* * If numerous calls to these are expected, the repeated normalization may be a performance issue.
|
|
214979
|
+
* * Using a [[Plane3dByOriginAndUnitNormal]] or the rigid transform returned by [[toRigidFrame]] would provide better performance.
|
|
214998
214980
|
* @public
|
|
214999
214981
|
*/
|
|
215000
|
-
class Plane3dByOriginAndVectors {
|
|
214982
|
+
class Plane3dByOriginAndVectors extends _Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
|
|
215001
214983
|
constructor(origin, vectorU, vectorV) {
|
|
214984
|
+
super();
|
|
215002
214985
|
this.origin = origin;
|
|
215003
214986
|
this.vectorU = vectorU;
|
|
215004
214987
|
this.vectorV = vectorV;
|
|
215005
214988
|
}
|
|
215006
|
-
/** create a new plane from origin and vectors. */
|
|
214989
|
+
/** create a new plane from origin and 2 in-plane vectors. */
|
|
215007
214990
|
static createOriginAndVectors(origin, vectorU, vectorV, result) {
|
|
215008
214991
|
if (result) {
|
|
215009
214992
|
result.origin.setFrom(origin);
|
|
@@ -215014,9 +214997,29 @@ class Plane3dByOriginAndVectors {
|
|
|
215014
214997
|
return new Plane3dByOriginAndVectors(origin.clone(), vectorU.clone(), vectorV.clone());
|
|
215015
214998
|
}
|
|
215016
214999
|
/** clone to a new plane. */
|
|
215017
|
-
clone() {
|
|
215000
|
+
clone(result) {
|
|
215001
|
+
if (result !== undefined)
|
|
215002
|
+
result.setOriginAndVectors(this.origin, this.vectorU, this.vectorV);
|
|
215018
215003
|
return new Plane3dByOriginAndVectors(this.origin.clone(), this.vectorU.clone(), this.vectorV.clone());
|
|
215019
215004
|
}
|
|
215005
|
+
/** create a new Plane3dByOriginAndVectors from a variety of plane types.
|
|
215006
|
+
* * The input is NOT captured.
|
|
215007
|
+
*/
|
|
215008
|
+
static createFrom(source, result) {
|
|
215009
|
+
if (source instanceof Plane3dByOriginAndVectors)
|
|
215010
|
+
return source.clone(result);
|
|
215011
|
+
const normal = source.getUnitNormal();
|
|
215012
|
+
if (normal === undefined)
|
|
215013
|
+
return undefined;
|
|
215014
|
+
const origin = source.getAnyPointOnPlane();
|
|
215015
|
+
const vectorU = _Matrix3d__WEBPACK_IMPORTED_MODULE_1__.Matrix3d.createPerpendicularVectorFavorXYPlane(normal);
|
|
215016
|
+
if (vectorU.tryNormalizeInPlace()) {
|
|
215017
|
+
const vectorV = normal.unitCrossProduct(vectorU);
|
|
215018
|
+
if (vectorV !== undefined)
|
|
215019
|
+
return new Plane3dByOriginAndVectors(origin, vectorU, vectorV);
|
|
215020
|
+
}
|
|
215021
|
+
return undefined;
|
|
215022
|
+
}
|
|
215020
215023
|
/**
|
|
215021
215024
|
* Return a Plane3dByOriginAndVectors, with
|
|
215022
215025
|
* * origin is the translation (aka origin) from the Transform
|
|
@@ -215071,7 +215074,7 @@ class Plane3dByOriginAndVectors {
|
|
|
215071
215074
|
static createOriginAndVectorsXYZ(x0, y0, z0, ux, uy, uz, vx, vy, vz, result) {
|
|
215072
215075
|
if (result)
|
|
215073
215076
|
return result.setOriginAndVectorsXYZ(x0, y0, z0, ux, uy, uz, vx, vy, vz);
|
|
215074
|
-
return new Plane3dByOriginAndVectors(
|
|
215077
|
+
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));
|
|
215075
215078
|
}
|
|
215076
215079
|
/** Define a plane by three points in the plane.
|
|
215077
215080
|
* @param origin origin for the parameterization.
|
|
@@ -215102,7 +215105,7 @@ class Plane3dByOriginAndVectors {
|
|
|
215102
215105
|
static createOriginAndVectorsWeightedArrays(originW, vectorUw, vectorVw, result) {
|
|
215103
215106
|
const w = originW[3];
|
|
215104
215107
|
result = Plane3dByOriginAndVectors.createXYPlane(result);
|
|
215105
|
-
if (
|
|
215108
|
+
if (_Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.isSmallMetricDistance(w))
|
|
215106
215109
|
return result;
|
|
215107
215110
|
const dw = 1.0 / w;
|
|
215108
215111
|
const au = vectorUw[3] * dw * dw;
|
|
@@ -215115,8 +215118,8 @@ class Plane3dByOriginAndVectors {
|
|
|
215115
215118
|
// The w parts of the formal xyzw sums are identically 0.
|
|
215116
215119
|
// Here the X' and its w' are taken from each vectorUw and vectorVw
|
|
215117
215120
|
result.origin.set(originW[0] * dw, originW[1] * dw, originW[2] * dw);
|
|
215118
|
-
|
|
215119
|
-
|
|
215121
|
+
_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createAdd2ScaledXYZ(vectorUw[0], vectorUw[1], vectorUw[2], dw, originW[0], originW[1], originW[2], -au, result.vectorU);
|
|
215122
|
+
_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createAdd2ScaledXYZ(vectorVw[0], vectorVw[1], vectorVw[2], dw, originW[0], originW[1], originW[2], -av, result.vectorV);
|
|
215120
215123
|
return result;
|
|
215121
215124
|
}
|
|
215122
215125
|
/**
|
|
@@ -215132,7 +215135,7 @@ class Plane3dByOriginAndVectors {
|
|
|
215132
215135
|
}
|
|
215133
215136
|
/** Return the vector from the plane origin to parametric coordinate (u.v) */
|
|
215134
215137
|
fractionToVector(u, v, result) {
|
|
215135
|
-
return
|
|
215138
|
+
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.createAdd2Scaled(this.vectorU, u, this.vectorV, v, result);
|
|
215136
215139
|
}
|
|
215137
215140
|
/** Set coordinates from a json object such as `{origin: [1,2,3], vectorU:[4,5,6], vectorV[3,2,1]}` */
|
|
215138
215141
|
setFromJSON(json) {
|
|
@@ -215170,7 +215173,7 @@ class Plane3dByOriginAndVectors {
|
|
|
215170
215173
|
&& this.vectorU.isAlmostEqual(other.vectorU)
|
|
215171
215174
|
&& this.vectorV.isAlmostEqual(other.vectorV);
|
|
215172
215175
|
}
|
|
215173
|
-
/** Normalize both `vectorU` and `vectorV` in place.
|
|
215176
|
+
/** Normalize both `vectorU` and `vectorV` in place. This does NOT make them perpendicular.
|
|
215174
215177
|
* * Return true if both succeeded.
|
|
215175
215178
|
*/
|
|
215176
215179
|
normalizeInPlace() {
|
|
@@ -215181,19 +215184,32 @@ class Plane3dByOriginAndVectors {
|
|
|
215181
215184
|
/**
|
|
215182
215185
|
* Return (if possible) a unit normal to the plane.
|
|
215183
215186
|
*/
|
|
215187
|
+
getUnitNormal(result) {
|
|
215188
|
+
return this.vectorU.unitCrossProduct(this.vectorV, result);
|
|
215189
|
+
}
|
|
215190
|
+
/**
|
|
215191
|
+
* Return (if possible) a unit normal to the plane.
|
|
215192
|
+
* * This method is the same as getUnitNormal, which was created later as part of the abstract base class Plane3d.
|
|
215193
|
+
*/
|
|
215184
215194
|
unitNormal(result) {
|
|
215185
215195
|
return this.vectorU.unitCrossProduct(this.vectorV, result);
|
|
215186
215196
|
}
|
|
215197
|
+
/**
|
|
215198
|
+
* Return some point on the plane.
|
|
215199
|
+
*/
|
|
215200
|
+
getAnyPointOnPlane(result) {
|
|
215201
|
+
return this.origin.clone(result);
|
|
215202
|
+
}
|
|
215187
215203
|
/**
|
|
215188
215204
|
* Return (if possible) a ray with origin at plane origin, direction as unit normal to the plane.
|
|
215189
215205
|
*/
|
|
215190
215206
|
unitNormalRay(result) {
|
|
215191
215207
|
if (!Plane3dByOriginAndVectors._workVector)
|
|
215192
|
-
Plane3dByOriginAndVectors._workVector =
|
|
215208
|
+
Plane3dByOriginAndVectors._workVector = _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create();
|
|
215193
215209
|
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV, Plane3dByOriginAndVectors._workVector);
|
|
215194
215210
|
if (unitNormal === undefined)
|
|
215195
215211
|
return undefined;
|
|
215196
|
-
return
|
|
215212
|
+
return _Ray3d__WEBPACK_IMPORTED_MODULE_4__.Ray3d.create(this.origin, unitNormal, result);
|
|
215197
215213
|
}
|
|
215198
215214
|
/**
|
|
215199
215215
|
* Create a rigid frame (i.e. frenet frame) with
|
|
@@ -215204,7 +215220,7 @@ class Plane3dByOriginAndVectors {
|
|
|
215204
215220
|
* @param result optional result
|
|
215205
215221
|
*/
|
|
215206
215222
|
toRigidFrame(result) {
|
|
215207
|
-
return
|
|
215223
|
+
return _Transform__WEBPACK_IMPORTED_MODULE_5__.Transform.createRigidFromOriginAndColumns(this.origin, this.vectorU, this.vectorV, _Geometry__WEBPACK_IMPORTED_MODULE_3__.AxisOrder.XYZ, result);
|
|
215208
215224
|
}
|
|
215209
215225
|
/**
|
|
215210
215226
|
* Apply the transform to the origin and vectors in place.
|
|
@@ -215214,6 +215230,95 @@ class Plane3dByOriginAndVectors {
|
|
|
215214
215230
|
transform.multiplyVector(this.vectorU, this.vectorU);
|
|
215215
215231
|
transform.multiplyVector(this.vectorV, this.vectorV);
|
|
215216
215232
|
}
|
|
215233
|
+
// Implement PlaneAltitudeEvaluator methods . . .
|
|
215234
|
+
/**
|
|
215235
|
+
* Return x component of the (normalized!) {vectorU CROSS vectorV}.
|
|
215236
|
+
* Return 0 if the cross product is zero.
|
|
215237
|
+
* */
|
|
215238
|
+
normalX() {
|
|
215239
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
215240
|
+
return unitNormal !== undefined ? unitNormal.x : 0.0;
|
|
215241
|
+
}
|
|
215242
|
+
/**
|
|
215243
|
+
* Return y component of the (normalized!) {vectorU CROSS vectorV}.
|
|
215244
|
+
* Return 0 if the cross product is zero.
|
|
215245
|
+
* */
|
|
215246
|
+
normalY() {
|
|
215247
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
215248
|
+
return unitNormal !== undefined ? unitNormal.y : 0.0;
|
|
215249
|
+
}
|
|
215250
|
+
/**
|
|
215251
|
+
* Return z component of the (normalized!) {vectorU CROSS vectorV}.
|
|
215252
|
+
* Return 0 if the cross product is zero.
|
|
215253
|
+
* */
|
|
215254
|
+
normalZ() {
|
|
215255
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
215256
|
+
return unitNormal !== undefined ? unitNormal.z : 0.0;
|
|
215257
|
+
}
|
|
215258
|
+
/** Return signed cartesian altitude perpendicular to the plane. This uses the normalized cross product as normal. */
|
|
215259
|
+
altitude(xyz) {
|
|
215260
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
215261
|
+
if (unitNormal === undefined)
|
|
215262
|
+
return 0.0;
|
|
215263
|
+
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);
|
|
215264
|
+
}
|
|
215265
|
+
/** Return signed cartesian altitude perpendicular to the plane. This uses the normalized cross product as normal. */
|
|
215266
|
+
altitudeXYZ(x, y, z) {
|
|
215267
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
215268
|
+
if (unitNormal === undefined)
|
|
215269
|
+
return 0.0;
|
|
215270
|
+
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);
|
|
215271
|
+
}
|
|
215272
|
+
/** Return signed projection of the input vector to the plane normal. This uses the normalized cross product as normal. */
|
|
215273
|
+
velocity(xyzVector) {
|
|
215274
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
215275
|
+
if (unitNormal === undefined)
|
|
215276
|
+
return 0.0;
|
|
215277
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.dotProductXYZXYZ(xyzVector.x, xyzVector.y, xyzVector.z, unitNormal.x, unitNormal.y, unitNormal.z);
|
|
215278
|
+
}
|
|
215279
|
+
/** Return signed projection of the input vector to the plane normal. This uses the normalized cross product as normal. */
|
|
215280
|
+
velocityXYZ(x, y, z) {
|
|
215281
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
215282
|
+
if (unitNormal === undefined)
|
|
215283
|
+
return 0.0;
|
|
215284
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.dotProductXYZXYZ(x, y, z, unitNormal.x, unitNormal.y, unitNormal.z);
|
|
215285
|
+
}
|
|
215286
|
+
/** Return triple product of homogeneous difference {(xyzw - w * origin)} with vectorU and vectorV.
|
|
215287
|
+
* * In the usual manner of homogeneous calculations, this is proportional to true cartesian distance from the plane but is not a physical distance.
|
|
215288
|
+
*/
|
|
215289
|
+
weightedAltitude(xyzw) {
|
|
215290
|
+
const w = xyzw.w;
|
|
215291
|
+
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);
|
|
215292
|
+
}
|
|
215293
|
+
/**
|
|
215294
|
+
* Return the projection of spacePoint onto the plane.
|
|
215295
|
+
* If the plane is degenerate to a ray, project to the ray.
|
|
215296
|
+
* If the plane is degenerate to its origin, return the point
|
|
215297
|
+
*/
|
|
215298
|
+
projectPointToPlane(spacePoint, result) {
|
|
215299
|
+
const unitNormal = this.vectorU.unitCrossProduct(this.vectorV);
|
|
215300
|
+
if (unitNormal !== undefined) {
|
|
215301
|
+
const w = unitNormal.dotProductStartEnd(this.origin, spacePoint);
|
|
215302
|
+
return spacePoint.plusScaled(unitNormal, -w, result);
|
|
215303
|
+
}
|
|
215304
|
+
// uh oh. vectorU and vectorV are colinear or zero.
|
|
215305
|
+
// project to ray defined by the longer one, or just to origin.
|
|
215306
|
+
const dotUU = this.vectorU.magnitudeSquared();
|
|
215307
|
+
const dotVV = this.vectorV.magnitudeSquared();
|
|
215308
|
+
if (dotUU >= dotVV) {
|
|
215309
|
+
const dotUW = this.vectorU.dotProductStartEnd(this.origin, spacePoint);
|
|
215310
|
+
const f = _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.conditionalDivideCoordinate(dotUW, dotUU, 0.0);
|
|
215311
|
+
if (f !== undefined)
|
|
215312
|
+
return spacePoint.plusScaled(this.vectorU, f, result);
|
|
215313
|
+
}
|
|
215314
|
+
else {
|
|
215315
|
+
const dotVW = this.vectorV.dotProductStartEnd(this.origin, spacePoint);
|
|
215316
|
+
const f = _Geometry__WEBPACK_IMPORTED_MODULE_3__.Geometry.conditionalDivideCoordinate(dotVW, dotVV, 0.0);
|
|
215317
|
+
if (f !== undefined)
|
|
215318
|
+
return spacePoint.plusScaled(this.vectorV, f, result);
|
|
215319
|
+
}
|
|
215320
|
+
return this.origin.clone(result);
|
|
215321
|
+
}
|
|
215217
215322
|
}
|
|
215218
215323
|
|
|
215219
215324
|
|
|
@@ -216423,6 +216528,15 @@ class XYZ {
|
|
|
216423
216528
|
&& _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.y, y, tol)
|
|
216424
216529
|
&& _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.z, z, tol);
|
|
216425
216530
|
}
|
|
216531
|
+
/**
|
|
216532
|
+
* Return true if this and {other + vector*scale} have equal x,y,z parts within Geometry.smallMetricDistance.
|
|
216533
|
+
* * this method is useful in testing "point on ray" without explicitly constructing the projection point
|
|
216534
|
+
*/
|
|
216535
|
+
isAlmostEqualPointPlusScaledVector(other, vector, scale, tol) {
|
|
216536
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.x, other.x + vector.x * scale, tol)
|
|
216537
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.y, other.y + vector.y * scale, tol)
|
|
216538
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.z, other.z + vector.z * scale, tol);
|
|
216539
|
+
}
|
|
216426
216540
|
/** Return true if this and other have equal x,y parts within Geometry.smallMetricDistance. */
|
|
216427
216541
|
isAlmostEqualXY(other, tol) {
|
|
216428
216542
|
return _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSameCoordinate(this.x, other.x, tol)
|
|
@@ -216955,6 +217069,17 @@ class Vector3d extends XYZ {
|
|
|
216955
217069
|
static createCrossProductToPoints(origin, pointA, pointB, result) {
|
|
216956
217070
|
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);
|
|
216957
217071
|
}
|
|
217072
|
+
/**
|
|
217073
|
+
* Return the NORMALIZED cross product of the vectors from origin to pointA and pointB, or undefined
|
|
217074
|
+
*
|
|
217075
|
+
* * the result is a vector
|
|
217076
|
+
* * the result is perpendicular to both vectors, with right hand orientation
|
|
217077
|
+
* * the magnitude of the vector is twice the area of the triangle.
|
|
217078
|
+
*/
|
|
217079
|
+
static createUnitCrossProductToPoints(origin, pointA, pointB, result) {
|
|
217080
|
+
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);
|
|
217081
|
+
return vector.normalize();
|
|
217082
|
+
}
|
|
216958
217083
|
/**
|
|
216959
217084
|
* Return a vector defined by polar coordinates distance and angle from x axis
|
|
216960
217085
|
* @param r distance measured from origin
|
|
@@ -222495,10 +222620,28 @@ class Ray3d {
|
|
|
222495
222620
|
}
|
|
222496
222621
|
return new Ray3d(_Point3dVector3d__WEBPACK_IMPORTED_MODULE_0__.Point3d.createZero(), _Point3dVector3d__WEBPACK_IMPORTED_MODULE_0__.Vector3d.createZero());
|
|
222497
222622
|
}
|
|
222498
|
-
/** Test for nearly equal
|
|
222623
|
+
/** Test for nearly equal Ray3d objects.
|
|
222624
|
+
* * This tests for near equality of origin and direction -- i.e. member-by-member comparison.
|
|
222625
|
+
* * Use [[isAlmostEqualPointSet]] to allow origins to be anywhere along the common ray and to have to allow the directions to be scaled or opposing.
|
|
222626
|
+
*/
|
|
222499
222627
|
isAlmostEqual(other) {
|
|
222500
222628
|
return this.origin.isAlmostEqual(other.origin) && this.direction.isAlmostEqual(other.direction);
|
|
222501
222629
|
}
|
|
222630
|
+
/** Test for nearly equal rays, allowing origin float and direction scaling.
|
|
222631
|
+
* * Use [[isAlmostEqual]] to require member-by-member comparison.
|
|
222632
|
+
*/
|
|
222633
|
+
isAlmostEqualPointSet(other) {
|
|
222634
|
+
if (!this.direction.isParallelTo(other.direction, true))
|
|
222635
|
+
return false;
|
|
222636
|
+
// 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.
|
|
222637
|
+
let workPoint = this.projectPointToRay(other.origin);
|
|
222638
|
+
if (!other.origin.isAlmostEqualMetric(workPoint))
|
|
222639
|
+
return false;
|
|
222640
|
+
workPoint = other.projectPointToRay(this.origin);
|
|
222641
|
+
if (!this.origin.isAlmostEqualMetric(workPoint))
|
|
222642
|
+
return false;
|
|
222643
|
+
return true;
|
|
222644
|
+
}
|
|
222502
222645
|
/** Create a ray from origin and direction. */
|
|
222503
222646
|
static create(origin, direction, result) {
|
|
222504
222647
|
if (result) {
|
|
@@ -226080,12 +226223,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
226080
226223
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
226081
226224
|
/* harmony export */ "Point4d": () => (/* binding */ Point4d)
|
|
226082
226225
|
/* harmony export */ });
|
|
226083
|
-
/* harmony import */ var
|
|
226084
|
-
/* harmony import */ var
|
|
226085
|
-
/* harmony import */ var
|
|
226086
|
-
/* harmony import */ var
|
|
226087
|
-
/* harmony import */ var
|
|
226088
|
-
/* harmony import */ var
|
|
226226
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
226227
|
+
/* harmony import */ var _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../geometry3d/Plane3d */ "../../core/geometry/lib/esm/geometry3d/Plane3d.js");
|
|
226228
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../geometry3d/Plane3dByOriginAndUnitNormal */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndUnitNormal.js");
|
|
226229
|
+
/* harmony import */ var _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../geometry3d/Plane3dByOriginAndVectors */ "../../core/geometry/lib/esm/geometry3d/Plane3dByOriginAndVectors.js");
|
|
226230
|
+
/* harmony import */ var _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../geometry3d/Point2dVector2d */ "../../core/geometry/lib/esm/geometry3d/Point2dVector2d.js");
|
|
226231
|
+
/* harmony import */ var _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../geometry3d/Point3dVector3d */ "../../core/geometry/lib/esm/geometry3d/Point3dVector3d.js");
|
|
226232
|
+
/* harmony import */ var _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../geometry3d/Ray3d */ "../../core/geometry/lib/esm/geometry3d/Ray3d.js");
|
|
226089
226233
|
/*---------------------------------------------------------------------------------------------
|
|
226090
226234
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
226091
226235
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -226099,6 +226243,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
226099
226243
|
|
|
226100
226244
|
|
|
226101
226245
|
|
|
226246
|
+
|
|
226102
226247
|
/**
|
|
226103
226248
|
*
|
|
226104
226249
|
* @param ddg numerator second derivative
|
|
@@ -226120,7 +226265,7 @@ function quotientDerivative2(ddg, dh, ddh, f, df, divH) {
|
|
|
226120
226265
|
* *
|
|
226121
226266
|
* @public
|
|
226122
226267
|
*/
|
|
226123
|
-
class Point4d {
|
|
226268
|
+
class Point4d extends _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_0__.Plane3d {
|
|
226124
226269
|
/** Set x,y,z,w of this point. */
|
|
226125
226270
|
set(x = 0, y = 0, z = 0, w = 0) {
|
|
226126
226271
|
this.xyzw[0] = x;
|
|
@@ -226151,6 +226296,7 @@ class Point4d {
|
|
|
226151
226296
|
set w(val) { this.xyzw[3] = val; }
|
|
226152
226297
|
/** Construct from coordinates. */
|
|
226153
226298
|
constructor(x = 0, y = 0, z = 0, w = 0) {
|
|
226299
|
+
super();
|
|
226154
226300
|
this.xyzw = new Float64Array(4);
|
|
226155
226301
|
this.xyzw[0] = x;
|
|
226156
226302
|
this.xyzw[1] = y;
|
|
@@ -226161,6 +226307,15 @@ class Point4d {
|
|
|
226161
226307
|
static create(x = 0, y = 0, z = 0, w = 0, result) {
|
|
226162
226308
|
return result ? result.set(x, y, z, w) : new Point4d(x, y, z, w);
|
|
226163
226309
|
}
|
|
226310
|
+
/**
|
|
226311
|
+
* Create a "Point4d as a plane" from "any" other [[PlaneAltitudeEvaluator]] type.
|
|
226312
|
+
* @param source
|
|
226313
|
+
* @returns
|
|
226314
|
+
*/
|
|
226315
|
+
static createPlaneFrom(source) {
|
|
226316
|
+
return new Point4d(source.normalX(), source.normalY(), source.normalZ(), source.altitudeXYZ(0, 0, 0));
|
|
226317
|
+
return undefined;
|
|
226318
|
+
}
|
|
226164
226319
|
/** Copy coordinates from `other`. */
|
|
226165
226320
|
setFrom(other) {
|
|
226166
226321
|
this.xyzw[0] = other.xyzw[0];
|
|
@@ -226175,7 +226330,7 @@ class Point4d {
|
|
|
226175
226330
|
}
|
|
226176
226331
|
/** Set this point's xyzw from a json array `[x,y,z,w]` */
|
|
226177
226332
|
setFromJSON(json) {
|
|
226178
|
-
if (
|
|
226333
|
+
if (_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isNumberArray(json, 4))
|
|
226179
226334
|
this.set(json[0], json[1], json[2], json[3]);
|
|
226180
226335
|
else
|
|
226181
226336
|
this.set(0, 0, 0, 0);
|
|
@@ -226188,10 +226343,10 @@ class Point4d {
|
|
|
226188
226343
|
}
|
|
226189
226344
|
/** Near-equality test, using `Geometry.isSameCoordinate` on all 4 x,y,z,w */
|
|
226190
226345
|
isAlmostEqual(other) {
|
|
226191
|
-
return
|
|
226192
|
-
&&
|
|
226193
|
-
&&
|
|
226194
|
-
&&
|
|
226346
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.x, other.x)
|
|
226347
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.y, other.y)
|
|
226348
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.z, other.z)
|
|
226349
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.w, other.w);
|
|
226195
226350
|
}
|
|
226196
226351
|
/**
|
|
226197
226352
|
* Test for same coordinate by direct x,y,z,w args
|
|
@@ -226201,10 +226356,10 @@ class Point4d {
|
|
|
226201
226356
|
* @param w w to test
|
|
226202
226357
|
*/
|
|
226203
226358
|
isAlmostEqualXYZW(x, y, z, w) {
|
|
226204
|
-
return
|
|
226205
|
-
&&
|
|
226206
|
-
&&
|
|
226207
|
-
&&
|
|
226359
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.x, x)
|
|
226360
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.y, y)
|
|
226361
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.z, z)
|
|
226362
|
+
&& _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSameCoordinate(this.w, w);
|
|
226208
226363
|
}
|
|
226209
226364
|
/**
|
|
226210
226365
|
* Convert an Angle to a JSON object.
|
|
@@ -226217,22 +226372,22 @@ class Point4d {
|
|
|
226217
226372
|
* * x,y,z,w all participate without normalization.
|
|
226218
226373
|
*/
|
|
226219
226374
|
distanceXYZW(other) {
|
|
226220
|
-
return
|
|
226375
|
+
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]);
|
|
226221
226376
|
}
|
|
226222
226377
|
/** Return the squared 4d distance from this point to other, with all 4 components squared into the hypotenuse.
|
|
226223
226378
|
* * x,y,z,w all participate without normalization.
|
|
226224
226379
|
*/
|
|
226225
226380
|
distanceSquaredXYZW(other) {
|
|
226226
|
-
return
|
|
226381
|
+
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]);
|
|
226227
226382
|
}
|
|
226228
226383
|
/** Return the distance between the instance and other after normalizing by weights
|
|
226229
226384
|
*/
|
|
226230
226385
|
realDistanceXY(other) {
|
|
226231
226386
|
const wA = this.w;
|
|
226232
226387
|
const wB = other.w;
|
|
226233
|
-
if (
|
|
226388
|
+
if (_Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSmallMetricDistance(wA) || _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSmallMetricDistance(wB))
|
|
226234
226389
|
return undefined;
|
|
226235
|
-
return
|
|
226390
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseXY(other.xyzw[0] / wB - this.xyzw[0] / wA, other.xyzw[1] / wB - this.xyzw[1] / wA);
|
|
226236
226391
|
}
|
|
226237
226392
|
/** Return the largest absolute distance between corresponding components
|
|
226238
226393
|
* * x,y,z,w all participate without normalization.
|
|
@@ -226246,11 +226401,11 @@ class Point4d {
|
|
|
226246
226401
|
}
|
|
226247
226402
|
/** Returns the magnitude including all 4 components x,y,z,w */
|
|
226248
226403
|
magnitudeXYZW() {
|
|
226249
|
-
return
|
|
226404
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseXYZW(this.xyzw[0], this.xyzw[1], this.xyzw[2], this.xyzw[3]);
|
|
226250
226405
|
}
|
|
226251
226406
|
/** Returns the magnitude of the leading xyz components. w is ignored. (i.e. the leading xyz are NOT divided by w.) */
|
|
226252
226407
|
magnitudeSquaredXYZ() {
|
|
226253
|
-
return
|
|
226408
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.hypotenuseSquaredXYZ(this.xyzw[0], this.xyzw[1], this.xyzw[2]);
|
|
226254
226409
|
}
|
|
226255
226410
|
/** Return the difference (this-other) using all 4 components x,y,z,w */
|
|
226256
226411
|
minus(other, result) {
|
|
@@ -226260,12 +226415,12 @@ class Point4d {
|
|
|
226260
226415
|
crossWeightedMinus(other, result) {
|
|
226261
226416
|
const wa = this.xyzw[3];
|
|
226262
226417
|
const wb = other.xyzw[3];
|
|
226263
|
-
return
|
|
226418
|
+
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);
|
|
226264
226419
|
}
|
|
226265
226420
|
/** Return `((other.w * this) - (this.w * other))`, with other.w known to be 1 */
|
|
226266
226421
|
crossWeightedMinusPoint3d(other, result) {
|
|
226267
226422
|
const wa = this.xyzw[3];
|
|
226268
|
-
return
|
|
226423
|
+
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);
|
|
226269
226424
|
}
|
|
226270
226425
|
/** Return the sum of this and other, using all 4 components x,y,z,w */
|
|
226271
226426
|
plus(other, result) {
|
|
@@ -226273,7 +226428,7 @@ class Point4d {
|
|
|
226273
226428
|
}
|
|
226274
226429
|
/** Test if all components are nearly zero. */
|
|
226275
226430
|
get isAlmostZero() {
|
|
226276
|
-
return
|
|
226431
|
+
return _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.isSmallMetricDistance(this.maxAbs());
|
|
226277
226432
|
}
|
|
226278
226433
|
/** Create a point with zero in all coordinates. */
|
|
226279
226434
|
static createZero() { return new Point4d(0, 0, 0, 0); }
|
|
@@ -226305,9 +226460,9 @@ class Point4d {
|
|
|
226305
226460
|
* * default 2 is 1.0 (array[3] can replace)
|
|
226306
226461
|
*/
|
|
226307
226462
|
static createFromPoint(point) {
|
|
226308
|
-
if (point instanceof
|
|
226463
|
+
if (point instanceof _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_3__.Point2d)
|
|
226309
226464
|
return new Point4d(point.x, point.y, 0, 1);
|
|
226310
|
-
if (point instanceof
|
|
226465
|
+
if (point instanceof _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d)
|
|
226311
226466
|
return new Point4d(point.x, point.y, point.z, 1);
|
|
226312
226467
|
if (point instanceof Point4d)
|
|
226313
226468
|
return point.clone();
|
|
@@ -226413,6 +226568,18 @@ class Point4d {
|
|
|
226413
226568
|
}
|
|
226414
226569
|
return undefined;
|
|
226415
226570
|
}
|
|
226571
|
+
/**
|
|
226572
|
+
* * Return xyz projection of spacePoint to the plane of the DPoint4d (understood as coefficients, not point coordinates)
|
|
226573
|
+
* * If the xyz part of `this` are all zero, (a clone of) `spacePoint` is returned.
|
|
226574
|
+
*/
|
|
226575
|
+
projectPointToPlane(spacePoint, result) {
|
|
226576
|
+
const h = this.altitude(spacePoint);
|
|
226577
|
+
const nn = this.magnitudeSquaredXYZ();
|
|
226578
|
+
const alpha = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideCoordinate(-h, nn);
|
|
226579
|
+
if (alpha === undefined)
|
|
226580
|
+
return spacePoint.clone(result);
|
|
226581
|
+
return spacePoint.plusXYZ(alpha * this.x, alpha * this.y, alpha * this.z, result);
|
|
226582
|
+
}
|
|
226416
226583
|
/** scale all components (including w!!) */
|
|
226417
226584
|
scale(scale, result) {
|
|
226418
226585
|
result = result ? result : new Point4d();
|
|
@@ -226437,7 +226604,7 @@ class Point4d {
|
|
|
226437
226604
|
* @param result optional result
|
|
226438
226605
|
*/
|
|
226439
226606
|
normalizeWeight(result) {
|
|
226440
|
-
const mag =
|
|
226607
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.xyzw[3]);
|
|
226441
226608
|
result = result ? result : new Point4d();
|
|
226442
226609
|
return this.safeDivideOrNull(mag, result);
|
|
226443
226610
|
}
|
|
@@ -226447,22 +226614,22 @@ class Point4d {
|
|
|
226447
226614
|
* @param result optional result
|
|
226448
226615
|
*/
|
|
226449
226616
|
realPoint(result) {
|
|
226450
|
-
const mag =
|
|
226617
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.xyzw[3]);
|
|
226451
226618
|
if (mag === 0.0)
|
|
226452
226619
|
return undefined;
|
|
226453
226620
|
const a = 1.0 / mag; // in zero case everything multiplies right back to true zero.
|
|
226454
|
-
return
|
|
226621
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this.xyzw[0] * a, this.xyzw[1] * a, this.xyzw[2] * a, result);
|
|
226455
226622
|
}
|
|
226456
226623
|
/** Convert the homogeneous point to a (strongly typed) point or vector.
|
|
226457
226624
|
* * If `this.w` is nonzero, return a Point3d `(x/w,y/w,z/w)`
|
|
226458
226625
|
* * If `this.w` is zero, return a Vector3d `(x,y,z)`
|
|
226459
226626
|
*/
|
|
226460
226627
|
realPointOrVector() {
|
|
226461
|
-
const mag =
|
|
226628
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.xyzw[3]);
|
|
226462
226629
|
if (mag === 0.0)
|
|
226463
|
-
return
|
|
226630
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(this.x, this.y, this.z);
|
|
226464
226631
|
const a = 1.0 / mag; // in zero case everything multiplies right back to true zero.
|
|
226465
|
-
return
|
|
226632
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this.x * a, this.y * a, this.z * a);
|
|
226466
226633
|
}
|
|
226467
226634
|
/**
|
|
226468
226635
|
* * If w is nonzero, return Point3d with x/w,y/w,z/w.
|
|
@@ -226474,9 +226641,9 @@ class Point4d {
|
|
|
226474
226641
|
* @param result optional result
|
|
226475
226642
|
*/
|
|
226476
226643
|
static createRealPoint3dDefault000(x, y, z, w, result) {
|
|
226477
|
-
const mag =
|
|
226644
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(w);
|
|
226478
226645
|
const a = mag === 0 ? 0.0 : (1.0 / mag); // in zero case everything multiplies right back to true zero.
|
|
226479
|
-
return
|
|
226646
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(x * a, y * a, z * a, result);
|
|
226480
226647
|
}
|
|
226481
226648
|
/**
|
|
226482
226649
|
* * If w is nonzero, return Vector3d which is the derivative of the projected xyz with given w and 4d derivatives.
|
|
@@ -226492,12 +226659,12 @@ class Point4d {
|
|
|
226492
226659
|
* @param result optional result
|
|
226493
226660
|
*/
|
|
226494
226661
|
static createRealDerivativeRay3dDefault000(x, y, z, w, dx, dy, dz, dw, result) {
|
|
226495
|
-
const mag =
|
|
226662
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(w);
|
|
226496
226663
|
// real point is X/w.
|
|
226497
226664
|
// real derivative is (X' * w - X *w) / ww, and weight is always 0 by cross products.
|
|
226498
226665
|
const a = mag === 0 ? 0.0 : (1.0 / mag); // in zero case everything multiplies right back to true zero.
|
|
226499
226666
|
const aa = a * a;
|
|
226500
|
-
return
|
|
226667
|
+
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);
|
|
226501
226668
|
}
|
|
226502
226669
|
/**
|
|
226503
226670
|
* * If w is nonzero, return Vector3d which is the derivative of the projected xyz with given w and 4d derivatives.
|
|
@@ -226513,7 +226680,7 @@ class Point4d {
|
|
|
226513
226680
|
* @param result optional result
|
|
226514
226681
|
*/
|
|
226515
226682
|
static createRealDerivativePlane3dByOriginAndVectorsDefault000(x, y, z, w, dx, dy, dz, dw, ddx, ddy, ddz, ddw, result) {
|
|
226516
|
-
const mag =
|
|
226683
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(w);
|
|
226517
226684
|
// real point is X/w.
|
|
226518
226685
|
// real derivative is (X' * w - X *w) / ww, and weight is always 0 by cross products.
|
|
226519
226686
|
const a = mag === 0 ? 0.0 : (1.0 / mag); // in zero case everything multiplies right back to true zero.
|
|
@@ -226524,19 +226691,19 @@ class Point4d {
|
|
|
226524
226691
|
const dfx = (dx * w - dw * x) * aa;
|
|
226525
226692
|
const dfy = (dy * w - dw * y) * aa;
|
|
226526
226693
|
const dfz = (dz * w - dw * z) * aa;
|
|
226527
|
-
return
|
|
226694
|
+
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);
|
|
226528
226695
|
}
|
|
226529
226696
|
/**
|
|
226530
226697
|
* * If this.w is nonzero, return Point3d with x/w,y/w,z/w.
|
|
226531
226698
|
* * If this.w is zero, return 000
|
|
226532
226699
|
*/
|
|
226533
226700
|
realPointDefault000(result) {
|
|
226534
|
-
const mag =
|
|
226701
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.xyzw[3]);
|
|
226535
226702
|
if (mag === 0.0)
|
|
226536
|
-
return
|
|
226537
|
-
result = result ? result : new
|
|
226703
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(0, 0, 0, result);
|
|
226704
|
+
result = result ? result : new _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d();
|
|
226538
226705
|
const a = 1.0 / mag;
|
|
226539
|
-
return
|
|
226706
|
+
return _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this.xyzw[0] * a, this.xyzw[1] * a, this.xyzw[2] * a, result);
|
|
226540
226707
|
}
|
|
226541
226708
|
/** divide all components (x,y,z,w) by the 4d magnitude.
|
|
226542
226709
|
*
|
|
@@ -226544,7 +226711,7 @@ class Point4d {
|
|
|
226544
226711
|
* * Use normalizeWeight to divide by the w component.
|
|
226545
226712
|
*/
|
|
226546
226713
|
normalizeXYZW(result) {
|
|
226547
|
-
const mag =
|
|
226714
|
+
const mag = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.correctSmallMetricDistance(this.magnitudeXYZW());
|
|
226548
226715
|
result = result ? result : new Point4d();
|
|
226549
226716
|
return this.safeDivideOrNull(mag, result);
|
|
226550
226717
|
}
|
|
@@ -226552,7 +226719,7 @@ class Point4d {
|
|
|
226552
226719
|
* Return the determinant of the 3x3 matrix using components i,j,k of the 3 inputs.
|
|
226553
226720
|
*/
|
|
226554
226721
|
static determinantIndexed3X3(pointA, pointB, pointC, i, j, k) {
|
|
226555
|
-
return
|
|
226722
|
+
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]);
|
|
226556
226723
|
}
|
|
226557
226724
|
/**
|
|
226558
226725
|
* Return a Point4d perpendicular to all 3 inputs. (A higher level cross product concept)
|
|
@@ -226565,17 +226732,7 @@ class Point4d {
|
|
|
226565
226732
|
}
|
|
226566
226733
|
/** Treating this Point4d as plane coefficients, convert to origin and normal form. */
|
|
226567
226734
|
toPlane3dByOriginAndUnitNormal(result) {
|
|
226568
|
-
|
|
226569
|
-
const direction = _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_1__.Vector3d.create(this.x, this.y, this.z);
|
|
226570
|
-
const w = this.w;
|
|
226571
|
-
const divA = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.conditionalDivideFraction(1.0, a);
|
|
226572
|
-
if (divA !== undefined) {
|
|
226573
|
-
const divASquared = divA * divA;
|
|
226574
|
-
const b = -w * divASquared;
|
|
226575
|
-
direction.scaleInPlace(divASquared);
|
|
226576
|
-
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);
|
|
226577
|
-
}
|
|
226578
|
-
return undefined;
|
|
226735
|
+
return _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_6__.Plane3dByOriginAndUnitNormal.createFrom(this, result);
|
|
226579
226736
|
}
|
|
226580
226737
|
/** Normalize so sum of squares of all 4 coordinates is 1. */
|
|
226581
226738
|
normalizeQuaternion() {
|
|
@@ -226643,7 +226800,7 @@ class Point4d {
|
|
|
226643
226800
|
const magA = this.magnitudeXYZW();
|
|
226644
226801
|
const magB = other.magnitudeXYZW();
|
|
226645
226802
|
const dot = this.dotProduct(other); // == cos (theta) * magA * magB
|
|
226646
|
-
const cos =
|
|
226803
|
+
const cos = _Geometry__WEBPACK_IMPORTED_MODULE_1__.Geometry.conditionalDivideFraction(dot, magA * magB);
|
|
226647
226804
|
if (cos === undefined)
|
|
226648
226805
|
return undefined;
|
|
226649
226806
|
return Math.acos(cos);
|
|
@@ -281177,7 +281334,7 @@ class TestContext {
|
|
|
281177
281334
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
281178
281335
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
281179
281336
|
await core_frontend_1.NoRenderApp.startup({
|
|
281180
|
-
applicationVersion: "4.0.0-dev.
|
|
281337
|
+
applicationVersion: "4.0.0-dev.60",
|
|
281181
281338
|
applicationId: this.settings.gprid,
|
|
281182
281339
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
281183
281340
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -300750,7 +300907,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
300750
300907
|
/***/ ((module) => {
|
|
300751
300908
|
|
|
300752
300909
|
"use strict";
|
|
300753
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.
|
|
300910
|
+
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"}}]}}');
|
|
300754
300911
|
|
|
300755
300912
|
/***/ }),
|
|
300756
300913
|
|