@itwin/ecschema-rpcinterface-tests 5.1.0-dev.66 → 5.1.0-dev.69
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 +556 -391
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +15 -15
|
@@ -45125,6 +45125,15 @@ class Helmert2DWithZOffset {
|
|
|
45125
45125
|
Math.abs(this.rotDeg - other.rotDeg) < _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallAngleDegrees &&
|
|
45126
45126
|
Math.abs(this.scale - other.scale) < _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallFraction);
|
|
45127
45127
|
}
|
|
45128
|
+
/** Convert Helmert2DWithZOffset object into Transfrom object
|
|
45129
|
+
* @public */
|
|
45130
|
+
convertHelmertToTransform() {
|
|
45131
|
+
const rotationXY = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Matrix3d.createRotationAroundAxisIndex(_itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.AxisIndex.Z, _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Angle.createDegrees(this?.rotDeg));
|
|
45132
|
+
rotationXY.scaleColumnsInPlace(this.scale, this.scale, 1.0);
|
|
45133
|
+
const translation = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Vector3d.create(this.translationX, this.translationY, this.translationZ);
|
|
45134
|
+
const helmertTransform = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Transform.createRefs(translation, rotationXY);
|
|
45135
|
+
return helmertTransform;
|
|
45136
|
+
}
|
|
45128
45137
|
}
|
|
45129
45138
|
/** Additional Transform implementation.
|
|
45130
45139
|
* An additional transform is a transformation that can apply to either the horizontal or vertical coordinates of a
|
|
@@ -54469,7 +54478,8 @@ class MeshEdge {
|
|
|
54469
54478
|
class MeshEdges {
|
|
54470
54479
|
visible = [];
|
|
54471
54480
|
silhouette = [];
|
|
54472
|
-
|
|
54481
|
+
appearance;
|
|
54482
|
+
polylineGroups = [];
|
|
54473
54483
|
silhouetteNormals = [];
|
|
54474
54484
|
constructor() { }
|
|
54475
54485
|
}
|
|
@@ -54504,15 +54514,17 @@ class SilhouetteEdgeArgs extends EdgeArgs {
|
|
|
54504
54514
|
}
|
|
54505
54515
|
/** @internal */
|
|
54506
54516
|
class PolylineEdgeArgs {
|
|
54507
|
-
|
|
54508
|
-
constructor(
|
|
54509
|
-
|
|
54510
|
-
|
|
54517
|
+
groups;
|
|
54518
|
+
constructor(groups) {
|
|
54519
|
+
this.init(groups);
|
|
54520
|
+
}
|
|
54521
|
+
init(groups) {
|
|
54522
|
+
this.groups = groups?.filter((group) => group.polylines.length > 0);
|
|
54511
54523
|
return this.isValid;
|
|
54512
54524
|
}
|
|
54513
|
-
get
|
|
54514
|
-
get isValid() { return this.
|
|
54515
|
-
clear() { this.
|
|
54525
|
+
get numGroups() { return this.groups?.length ?? 0; }
|
|
54526
|
+
get isValid() { return this.numGroups > 0; }
|
|
54527
|
+
clear() { this.groups = undefined; }
|
|
54516
54528
|
}
|
|
54517
54529
|
|
|
54518
54530
|
|
|
@@ -103225,6 +103237,7 @@ function isGltf1Material(material) {
|
|
|
103225
103237
|
"use strict";
|
|
103226
103238
|
__webpack_require__.r(__webpack_exports__);
|
|
103227
103239
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
103240
|
+
/* harmony export */ compactEdgeIterator: () => (/* binding */ compactEdgeIterator),
|
|
103228
103241
|
/* harmony export */ indexedEdgeParamsFromCompactEdges: () => (/* binding */ indexedEdgeParamsFromCompactEdges)
|
|
103229
103242
|
/* harmony export */ });
|
|
103230
103243
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
@@ -103244,23 +103257,25 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
103244
103257
|
|
|
103245
103258
|
/** Iterate over the compact edges.
|
|
103246
103259
|
* @note The same object is returned on each iteration, mutated in place.
|
|
103260
|
+
* @internal
|
|
103247
103261
|
*/
|
|
103248
|
-
function* compactEdgeIterator(visibilityFlags,
|
|
103262
|
+
function* compactEdgeIterator(visibilityFlags, normalPairs, numIndices, decodeIndex) {
|
|
103249
103263
|
let bitIndex = 0;
|
|
103250
103264
|
let flagsIndex = 0;
|
|
103251
103265
|
let normalIndex = 0;
|
|
103252
103266
|
const output = { index0: 0, index1: 1 };
|
|
103253
|
-
for (let i = 0; i <
|
|
103267
|
+
for (let i = 0; i < numIndices; i++) {
|
|
103254
103268
|
const visibility = (visibilityFlags[flagsIndex] >> bitIndex) & 3;
|
|
103255
103269
|
bitIndex += 2;
|
|
103256
103270
|
if (bitIndex === 8) {
|
|
103257
103271
|
bitIndex = 0;
|
|
103258
103272
|
flagsIndex++;
|
|
103259
103273
|
}
|
|
103260
|
-
if (_ImdlSchema__WEBPACK_IMPORTED_MODULE_1__.ImdlEdgeVisibility.Hidden === visibility)
|
|
103274
|
+
if (_ImdlSchema__WEBPACK_IMPORTED_MODULE_1__.ImdlEdgeVisibility.Hidden === visibility || _ImdlSchema__WEBPACK_IMPORTED_MODULE_1__.ImdlEdgeVisibility.VisibleDuplicate === visibility) {
|
|
103261
103275
|
continue;
|
|
103262
|
-
|
|
103263
|
-
output.
|
|
103276
|
+
}
|
|
103277
|
+
output.index0 = decodeIndex(i);
|
|
103278
|
+
output.index1 = decodeIndex(i % 3 === 2 ? i - 2 : i + 1);
|
|
103264
103279
|
if (_ImdlSchema__WEBPACK_IMPORTED_MODULE_1__.ImdlEdgeVisibility.Silhouette === visibility) {
|
|
103265
103280
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== normalPairs);
|
|
103266
103281
|
output.normals = normalPairs[normalIndex++];
|
|
@@ -103293,7 +103308,7 @@ function indexedEdgeParamsFromCompactEdges(compact) {
|
|
|
103293
103308
|
const edgeTable = new Uint8Array(width * height * 4);
|
|
103294
103309
|
let curVisibleIndex = 0;
|
|
103295
103310
|
let curSilhouetteIndex = 0;
|
|
103296
|
-
for (const edge of compactEdgeIterator(compact.visibility, compact.vertexIndices, compact.
|
|
103311
|
+
for (const edge of compactEdgeIterator(compact.visibility, compact.normalPairs, compact.vertexIndices.length, (vertIdx) => compact.vertexIndices.decodeIndex(vertIdx))) {
|
|
103297
103312
|
if (undefined === edge.normals) {
|
|
103298
103313
|
const index = curVisibleIndex++;
|
|
103299
103314
|
const byteIndex = index * 6;
|
|
@@ -103451,6 +103466,10 @@ var ImdlEdgeVisibility;
|
|
|
103451
103466
|
ImdlEdgeVisibility[ImdlEdgeVisibility["Silhouette"] = 1] = "Silhouette";
|
|
103452
103467
|
/** The edge is always visible. */
|
|
103453
103468
|
ImdlEdgeVisibility[ImdlEdgeVisibility["Visible"] = 2] = "Visible";
|
|
103469
|
+
/** Used only by EXT_mesh_primitive_edge_visibility to indicate a repeated edge previously encoded as `Visible`.
|
|
103470
|
+
iMdl simply marks these redundant edges as `Hidden`.
|
|
103471
|
+
*/
|
|
103472
|
+
ImdlEdgeVisibility[ImdlEdgeVisibility["VisibleDuplicate"] = 3] = "VisibleDuplicate";
|
|
103454
103473
|
})(ImdlEdgeVisibility || (ImdlEdgeVisibility = {}));
|
|
103455
103474
|
|
|
103456
103475
|
|
|
@@ -103652,11 +103671,13 @@ function edgeParamsFromImdl(imdl) {
|
|
|
103652
103671
|
...imdl.silhouettes,
|
|
103653
103672
|
indices: new _internal_render_VertexIndices__WEBPACK_IMPORTED_MODULE_9__.VertexIndices(imdl.silhouettes.indices),
|
|
103654
103673
|
} : undefined,
|
|
103655
|
-
|
|
103656
|
-
|
|
103657
|
-
|
|
103658
|
-
|
|
103659
|
-
|
|
103674
|
+
polylineGroups: imdl.polylines ? [{
|
|
103675
|
+
polyline: {
|
|
103676
|
+
...imdl.polylines,
|
|
103677
|
+
indices: new _internal_render_VertexIndices__WEBPACK_IMPORTED_MODULE_9__.VertexIndices(imdl.polylines.indices),
|
|
103678
|
+
prevIndices: new _internal_render_VertexIndices__WEBPACK_IMPORTED_MODULE_9__.VertexIndices(imdl.polylines.prevIndices),
|
|
103679
|
+
},
|
|
103680
|
+
}] : undefined,
|
|
103660
103681
|
indexed: imdl.indexed ? {
|
|
103661
103682
|
indices: new _internal_render_VertexIndices__WEBPACK_IMPORTED_MODULE_9__.VertexIndices(imdl.indexed.indices),
|
|
103662
103683
|
edges: imdl.indexed.edges,
|
|
@@ -103675,10 +103696,10 @@ function edgeParamsToImdl(params) {
|
|
|
103675
103696
|
...params.silhouettes,
|
|
103676
103697
|
indices: params.silhouettes.indices.data,
|
|
103677
103698
|
} : undefined,
|
|
103678
|
-
polylines: params.
|
|
103679
|
-
...params.
|
|
103680
|
-
indices: params.
|
|
103681
|
-
prevIndices: params.
|
|
103699
|
+
polylines: params.polylineGroups?.length === 1 ? {
|
|
103700
|
+
...params.polylineGroups[0].polyline,
|
|
103701
|
+
indices: params.polylineGroups[0].polyline.indices.data,
|
|
103702
|
+
prevIndices: params.polylineGroups[0].polyline.prevIndices.data,
|
|
103682
103703
|
} : undefined,
|
|
103683
103704
|
indexed: params.indexed ? {
|
|
103684
103705
|
indices: params.indexed.indices.data,
|
|
@@ -105413,10 +105434,9 @@ function convertSilhouettes(edges, normalPairs) {
|
|
|
105413
105434
|
normalPairs: normalPairBytes,
|
|
105414
105435
|
};
|
|
105415
105436
|
}
|
|
105416
|
-
function buildIndexedEdges(args,
|
|
105437
|
+
function buildIndexedEdges(args, polylines, maxSize) {
|
|
105417
105438
|
const hardEdges = args.edges?.edges;
|
|
105418
105439
|
const silhouettes = args.silhouettes;
|
|
105419
|
-
const polylines = doPolylines ? args.polylines?.lines : undefined;
|
|
105420
105440
|
const numHardEdges = hardEdges?.length ?? 0;
|
|
105421
105441
|
const numSilhouettes = silhouettes?.edges?.length ?? 0;
|
|
105422
105442
|
const numPolylines = polylines ? polylines.reduce((count, pd) => count + Math.max(0, pd.length - 1), 0) : 0;
|
|
@@ -105484,6 +105504,11 @@ function buildIndexedEdges(args, doPolylines, maxSize) {
|
|
|
105484
105504
|
numSegments: numSegmentEdges,
|
|
105485
105505
|
silhouettePadding,
|
|
105486
105506
|
},
|
|
105507
|
+
appearance: {
|
|
105508
|
+
width: args.width,
|
|
105509
|
+
linePixels: args.linePixels,
|
|
105510
|
+
color: args.color,
|
|
105511
|
+
}
|
|
105487
105512
|
};
|
|
105488
105513
|
}
|
|
105489
105514
|
/** @internal */
|
|
@@ -105492,26 +105517,44 @@ function createEdgeParams(args) {
|
|
|
105492
105517
|
const edgeArgs = meshArgs.edges;
|
|
105493
105518
|
if (!edgeArgs)
|
|
105494
105519
|
return undefined;
|
|
105495
|
-
|
|
105496
|
-
const
|
|
105520
|
+
// If we've got a single polyline edge group and we don't need to round its corners, convert it to segment edges.
|
|
105521
|
+
const polylinesToProcess = 1 === edgeArgs.polylines.groups?.length
|
|
105522
|
+
&& undefined === edgeArgs.polylines.groups[0].appearance
|
|
105523
|
+
&& !(0,_PolylineParams__WEBPACK_IMPORTED_MODULE_1__.wantJointTriangles)(edgeArgs.width, true === meshArgs.is2d)
|
|
105524
|
+
? edgeArgs.polylines.groups[0].polylines.map((x) => x.indices) : undefined;
|
|
105497
105525
|
let segments;
|
|
105498
105526
|
let silhouettes;
|
|
105499
105527
|
let indexed;
|
|
105500
105528
|
if (createIndexed) {
|
|
105501
|
-
indexed = buildIndexedEdges(edgeArgs,
|
|
105529
|
+
indexed = buildIndexedEdges(edgeArgs, polylinesToProcess, maxWidth);
|
|
105502
105530
|
}
|
|
105503
105531
|
else {
|
|
105504
|
-
segments = convertPolylinesAndEdges(
|
|
105532
|
+
segments = convertPolylinesAndEdges(polylinesToProcess, edgeArgs.edges.edges);
|
|
105505
105533
|
silhouettes = edgeArgs.silhouettes.edges && edgeArgs.silhouettes.normals ? convertSilhouettes(edgeArgs.silhouettes.edges, edgeArgs.silhouettes.normals) : undefined;
|
|
105506
105534
|
}
|
|
105507
|
-
|
|
105535
|
+
let polylineGroups;
|
|
105536
|
+
if (!polylinesToProcess && edgeArgs.polylines.groups) {
|
|
105537
|
+
for (const group of edgeArgs.polylines.groups) {
|
|
105538
|
+
const polyline = (0,_PolylineParams__WEBPACK_IMPORTED_MODULE_1__.tesselatePolylineList)({
|
|
105539
|
+
points: args.meshArgs.points,
|
|
105540
|
+
polylines: group.polylines,
|
|
105541
|
+
width: group.appearance?.width ?? edgeArgs.width,
|
|
105542
|
+
is2d: true === args.meshArgs.is2d,
|
|
105543
|
+
});
|
|
105544
|
+
if (!polylineGroups) {
|
|
105545
|
+
polylineGroups = [];
|
|
105546
|
+
}
|
|
105547
|
+
polylineGroups.push({ polyline, appearance: group.appearance });
|
|
105548
|
+
}
|
|
105549
|
+
}
|
|
105550
|
+
if (!segments && !silhouettes && !polylineGroups && !indexed)
|
|
105508
105551
|
return undefined;
|
|
105509
105552
|
return {
|
|
105510
105553
|
weight: edgeArgs.width,
|
|
105511
105554
|
linePixels: edgeArgs.linePixels,
|
|
105512
105555
|
segments,
|
|
105513
105556
|
silhouettes,
|
|
105514
|
-
|
|
105557
|
+
polylineGroups,
|
|
105515
105558
|
indexed,
|
|
105516
105559
|
};
|
|
105517
105560
|
}
|
|
@@ -107176,6 +107219,7 @@ class MeshArgsEdges {
|
|
|
107176
107219
|
polylines = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PolylineEdgeArgs();
|
|
107177
107220
|
width = 0;
|
|
107178
107221
|
linePixels = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.LinePixels.Solid;
|
|
107222
|
+
color;
|
|
107179
107223
|
clear() {
|
|
107180
107224
|
this.edges.clear();
|
|
107181
107225
|
this.silhouettes.clear();
|
|
@@ -107197,15 +107241,12 @@ function createMeshArgs(mesh) {
|
|
|
107197
107241
|
let edges;
|
|
107198
107242
|
if (mesh.edges) {
|
|
107199
107243
|
edges = new MeshArgsEdges();
|
|
107200
|
-
edges.width = mesh.displayParams.width;
|
|
107201
|
-
edges.linePixels = mesh.displayParams.linePixels;
|
|
107244
|
+
edges.width = mesh.edges.appearance?.width ?? mesh.displayParams.width;
|
|
107245
|
+
edges.linePixels = mesh.edges.appearance?.linePixels ?? mesh.displayParams.linePixels;
|
|
107202
107246
|
edges.edges.init(mesh.edges);
|
|
107203
107247
|
edges.silhouettes.init(mesh.edges);
|
|
107204
|
-
|
|
107205
|
-
|
|
107206
|
-
if (meshPolyline.indices.length > 0)
|
|
107207
|
-
polylines.push(meshPolyline.indices);
|
|
107208
|
-
edges.polylines.init(polylines);
|
|
107248
|
+
edges.color = mesh.edges.appearance?.color;
|
|
107249
|
+
edges.polylines.init(mesh.edges.polylineGroups);
|
|
107209
107250
|
}
|
|
107210
107251
|
return {
|
|
107211
107252
|
vertIndices: mesh.triangles.indices,
|
|
@@ -107533,7 +107574,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
107533
107574
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
107534
107575
|
/* harmony export */ createPolylineParams: () => (/* binding */ createPolylineParams),
|
|
107535
107576
|
/* harmony export */ tesselatePolyline: () => (/* binding */ tesselatePolyline),
|
|
107536
|
-
/* harmony export */
|
|
107577
|
+
/* harmony export */ tesselatePolylineList: () => (/* binding */ tesselatePolylineList),
|
|
107537
107578
|
/* harmony export */ wantJointTriangles: () => (/* binding */ wantJointTriangles)
|
|
107538
107579
|
/* harmony export */ });
|
|
107539
107580
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
@@ -107553,10 +107594,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
107553
107594
|
|
|
107554
107595
|
|
|
107555
107596
|
|
|
107556
|
-
|
|
107557
|
-
|
|
107558
|
-
|
|
107559
|
-
return tesselator?.tesselate();
|
|
107597
|
+
function tesselatePolylineList(args) {
|
|
107598
|
+
const tesselator = PolylineTesselator.create(args);
|
|
107599
|
+
return tesselator.tesselate();
|
|
107560
107600
|
}
|
|
107561
107601
|
class PolylineVertex {
|
|
107562
107602
|
isSegmentStart = false;
|
|
@@ -107613,10 +107653,8 @@ class PolylineTesselator {
|
|
|
107613
107653
|
static fromPolyline(args) {
|
|
107614
107654
|
return new PolylineTesselator(args.polylines, args.points, wantJointTriangles(args.width, !!args.flags.is2d));
|
|
107615
107655
|
}
|
|
107616
|
-
static
|
|
107617
|
-
|
|
107618
|
-
return new PolylineTesselator(args.edges.polylines.lines, args.points, wantJointTriangles(args.edges.width, true === args.is2d));
|
|
107619
|
-
return undefined;
|
|
107656
|
+
static create(args) {
|
|
107657
|
+
return new PolylineTesselator(args.polylines.map((x) => x.indices), args.points, wantJointTriangles(args.width, args.is2d));
|
|
107620
107658
|
}
|
|
107621
107659
|
tesselate() {
|
|
107622
107660
|
this._tesselate();
|
|
@@ -109221,8 +109259,8 @@ function splitEdges(source, nodes, maxDimension) {
|
|
|
109221
109259
|
const edges = new Map();
|
|
109222
109260
|
remapSegmentEdges("segments", source, nodes, edges);
|
|
109223
109261
|
remapSegmentEdges("silhouettes", source, nodes, edges);
|
|
109224
|
-
if (source.
|
|
109225
|
-
remapPolylineEdges(source.
|
|
109262
|
+
if (source.polylineGroups?.length === 1)
|
|
109263
|
+
remapPolylineEdges(source.polylineGroups[0].polyline, nodes, edges);
|
|
109226
109264
|
if (source.indexed)
|
|
109227
109265
|
remapIndexedEdges(source.indexed, nodes, edges);
|
|
109228
109266
|
const result = new Map();
|
|
@@ -109264,11 +109302,13 @@ function splitEdges(source, nodes, maxDimension) {
|
|
|
109264
109302
|
endPointAndQuadIndices: remappedEdges.silhouettes.endPointAndQuadIndices.toUint8Array(),
|
|
109265
109303
|
normalPairs: remappedEdges.silhouettes.normalPairs.toUint8Array(),
|
|
109266
109304
|
} : undefined,
|
|
109267
|
-
|
|
109268
|
-
|
|
109269
|
-
|
|
109270
|
-
|
|
109271
|
-
|
|
109305
|
+
polylineGroups: remappedEdges.polylines ? [{
|
|
109306
|
+
polyline: {
|
|
109307
|
+
indices: remappedEdges.polylines.indices.toVertexIndices(),
|
|
109308
|
+
prevIndices: remappedEdges.polylines.prevIndices.toVertexIndices(),
|
|
109309
|
+
nextIndicesAndParams: remappedEdges.polylines.nextIndicesAndParams.toUint8Array(),
|
|
109310
|
+
},
|
|
109311
|
+
}] : undefined,
|
|
109272
109312
|
indexed: remappedEdges.indexed ? {
|
|
109273
109313
|
indices: edgeIndices,
|
|
109274
109314
|
edges: edgeTable,
|
|
@@ -117608,10 +117648,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
117608
117648
|
/* harmony import */ var _render_RenderMemory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../render/RenderMemory */ "../../core/frontend/lib/esm/render/RenderMemory.js");
|
|
117609
117649
|
/* harmony import */ var _AttributeMap__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AttributeMap */ "../../core/frontend/lib/esm/internal/render/webgl/AttributeMap.js");
|
|
117610
117650
|
/* harmony import */ var _CachedGeometry__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./CachedGeometry */ "../../core/frontend/lib/esm/internal/render/webgl/CachedGeometry.js");
|
|
117611
|
-
/* harmony import */ var
|
|
117612
|
-
/* harmony import */ var
|
|
117613
|
-
/* harmony import */ var
|
|
117614
|
-
/* harmony import */ var
|
|
117651
|
+
/* harmony import */ var _ColorInfo__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ColorInfo */ "../../core/frontend/lib/esm/internal/render/webgl/ColorInfo.js");
|
|
117652
|
+
/* harmony import */ var _GL__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./GL */ "../../core/frontend/lib/esm/internal/render/webgl/GL.js");
|
|
117653
|
+
/* harmony import */ var _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./AttributeBuffers */ "../../core/frontend/lib/esm/internal/render/webgl/AttributeBuffers.js");
|
|
117654
|
+
/* harmony import */ var _System__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./System */ "../../core/frontend/lib/esm/internal/render/webgl/System.js");
|
|
117655
|
+
/* harmony import */ var _MeshGeometry__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./MeshGeometry */ "../../core/frontend/lib/esm/internal/render/webgl/MeshGeometry.js");
|
|
117656
|
+
/* harmony import */ var _common_internal_render_LineCode__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ../../../common/internal/render/LineCode */ "../../core/frontend/lib/esm/common/internal/render/LineCode.js");
|
|
117615
117657
|
/*---------------------------------------------------------------------------------------------
|
|
117616
117658
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
117617
117659
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -117628,8 +117670,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
117628
117670
|
|
|
117629
117671
|
|
|
117630
117672
|
|
|
117673
|
+
|
|
117674
|
+
|
|
117631
117675
|
/** @internal */
|
|
117632
|
-
class EdgeGeometry extends
|
|
117676
|
+
class EdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_9__.MeshGeometry {
|
|
117633
117677
|
buffers;
|
|
117634
117678
|
_indices;
|
|
117635
117679
|
_endPointAndQuadIndices;
|
|
@@ -117638,8 +117682,8 @@ class EdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_8__.MeshGeomet
|
|
|
117638
117682
|
get asEdge() { return this; }
|
|
117639
117683
|
get asSilhouette() { return undefined; }
|
|
117640
117684
|
static create(mesh, edges) {
|
|
117641
|
-
const indexBuffer =
|
|
117642
|
-
const endPointBuffer =
|
|
117685
|
+
const indexBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(edges.indices.data);
|
|
117686
|
+
const endPointBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(edges.endPointAndQuadIndices);
|
|
117643
117687
|
return undefined !== indexBuffer && undefined !== endPointBuffer ? new EdgeGeometry(indexBuffer, endPointBuffer, edges.indices.length, mesh) : undefined;
|
|
117644
117688
|
}
|
|
117645
117689
|
get isDisposed() {
|
|
@@ -117658,7 +117702,7 @@ class EdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_8__.MeshGeomet
|
|
|
117658
117702
|
_draw(numInstances, instanceBuffersContainer) {
|
|
117659
117703
|
const bufs = instanceBuffersContainer !== undefined ? instanceBuffersContainer : this.buffers;
|
|
117660
117704
|
bufs.bind();
|
|
117661
|
-
|
|
117705
|
+
_System__WEBPACK_IMPORTED_MODULE_8__.System.instance.drawArrays(_GL__WEBPACK_IMPORTED_MODULE_6__.GL.PrimitiveType.Triangles, 0, this._numIndices, numInstances);
|
|
117662
117706
|
bufs.unbind();
|
|
117663
117707
|
}
|
|
117664
117708
|
_wantWoWReversal(_target) { return true; }
|
|
@@ -117673,13 +117717,13 @@ class EdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_8__.MeshGeomet
|
|
|
117673
117717
|
}
|
|
117674
117718
|
constructor(indices, endPointAndQuadsIndices, numIndices, mesh) {
|
|
117675
117719
|
super(mesh, numIndices);
|
|
117676
|
-
this.buffers =
|
|
117720
|
+
this.buffers = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BuffersContainer.create();
|
|
117677
117721
|
const attrPos = _AttributeMap__WEBPACK_IMPORTED_MODULE_3__.AttributeMap.findAttribute("a_pos", 4 /* TechniqueId.Edge */, false);
|
|
117678
117722
|
const attrEndPointAndQuadIndices = _AttributeMap__WEBPACK_IMPORTED_MODULE_3__.AttributeMap.findAttribute("a_endPointAndQuadIndices", 4 /* TechniqueId.Edge */, false);
|
|
117679
117723
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(attrPos !== undefined);
|
|
117680
117724
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(attrEndPointAndQuadIndices !== undefined);
|
|
117681
|
-
this.buffers.addBuffer(indices, [
|
|
117682
|
-
this.buffers.addBuffer(endPointAndQuadsIndices, [
|
|
117725
|
+
this.buffers.addBuffer(indices, [_AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferParameters.create(attrPos.location, 3, _GL__WEBPACK_IMPORTED_MODULE_6__.GL.DataType.UnsignedByte, false, 0, 0, false)]);
|
|
117726
|
+
this.buffers.addBuffer(endPointAndQuadsIndices, [_AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferParameters.create(attrEndPointAndQuadIndices.location, 4, _GL__WEBPACK_IMPORTED_MODULE_6__.GL.DataType.UnsignedByte, false, 0, 0, false)]);
|
|
117683
117727
|
this._indices = indices;
|
|
117684
117728
|
this._endPointAndQuadIndices = endPointAndQuadsIndices;
|
|
117685
117729
|
}
|
|
@@ -117689,9 +117733,9 @@ class SilhouetteEdgeGeometry extends EdgeGeometry {
|
|
|
117689
117733
|
_normalPairs;
|
|
117690
117734
|
get asSilhouette() { return this; }
|
|
117691
117735
|
static createSilhouettes(mesh, params) {
|
|
117692
|
-
const indexBuffer =
|
|
117693
|
-
const endPointBuffer =
|
|
117694
|
-
const normalsBuffer =
|
|
117736
|
+
const indexBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(params.indices.data);
|
|
117737
|
+
const endPointBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(params.endPointAndQuadIndices);
|
|
117738
|
+
const normalsBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(params.normalPairs);
|
|
117695
117739
|
return undefined !== indexBuffer && undefined !== endPointBuffer && undefined !== normalsBuffer ? new SilhouetteEdgeGeometry(indexBuffer, endPointBuffer, normalsBuffer, params.indices.length, mesh) : undefined;
|
|
117696
117740
|
}
|
|
117697
117741
|
get isDisposed() { return super.isDisposed && this._normalPairs.isDisposed; }
|
|
@@ -117709,17 +117753,20 @@ class SilhouetteEdgeGeometry extends EdgeGeometry {
|
|
|
117709
117753
|
super(indices, endPointAndQuadsIndices, numIndices, mesh);
|
|
117710
117754
|
const attrNormals = _AttributeMap__WEBPACK_IMPORTED_MODULE_3__.AttributeMap.findAttribute("a_normals", 5 /* TechniqueId.SilhouetteEdge */, false);
|
|
117711
117755
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(attrNormals !== undefined);
|
|
117712
|
-
this.buffers.addBuffer(normalPairs, [
|
|
117756
|
+
this.buffers.addBuffer(normalPairs, [_AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferParameters.create(attrNormals.location, 4, _GL__WEBPACK_IMPORTED_MODULE_6__.GL.DataType.UnsignedByte, false, 0, 0, false)]);
|
|
117713
117757
|
this._normalPairs = normalPairs;
|
|
117714
117758
|
}
|
|
117715
117759
|
}
|
|
117716
117760
|
/** @internal */
|
|
117717
|
-
class PolylineEdgeGeometry extends
|
|
117761
|
+
class PolylineEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_9__.MeshGeometry {
|
|
117718
117762
|
_buffers;
|
|
117763
|
+
_colorInfo;
|
|
117764
|
+
_width;
|
|
117765
|
+
_lineCode;
|
|
117719
117766
|
get lutBuffers() { return this._buffers.buffers; }
|
|
117720
|
-
static create(mesh,
|
|
117721
|
-
const buffers = _CachedGeometry__WEBPACK_IMPORTED_MODULE_4__.PolylineBuffers.create(polyline);
|
|
117722
|
-
return undefined !== buffers ? new PolylineEdgeGeometry(polyline.indices.length, buffers, mesh) : undefined;
|
|
117767
|
+
static create(mesh, group) {
|
|
117768
|
+
const buffers = _CachedGeometry__WEBPACK_IMPORTED_MODULE_4__.PolylineBuffers.create(group.polyline);
|
|
117769
|
+
return undefined !== buffers ? new PolylineEdgeGeometry(group.polyline.indices.length, buffers, mesh, group.appearance) : undefined;
|
|
117723
117770
|
}
|
|
117724
117771
|
get isDisposed() { return this._buffers.isDisposed; }
|
|
117725
117772
|
[Symbol.dispose]() {
|
|
@@ -117729,26 +117776,35 @@ class PolylineEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_8__.Me
|
|
|
117729
117776
|
this._buffers.collectStatistics(stats, _render_RenderMemory__WEBPACK_IMPORTED_MODULE_2__.RenderMemory.BufferType.PolylineEdges);
|
|
117730
117777
|
}
|
|
117731
117778
|
_wantWoWReversal(_target) { return true; }
|
|
117732
|
-
_getLineWeight(params) { return this.computeEdgeWeight(params); }
|
|
117733
|
-
_getLineCode(params) { return this.computeEdgeLineCode(params); }
|
|
117734
|
-
getColor(target) { return this.computeEdgeColor(target); }
|
|
117735
117779
|
get techniqueId() { return 1 /* TechniqueId.Polyline */; }
|
|
117736
117780
|
getPass(target) { return this.computeEdgePass(target); }
|
|
117737
117781
|
get renderOrder() { return this.isPlanar ? 14 /* RenderOrder.PlanarEdge */ : 6 /* RenderOrder.Edge */; }
|
|
117738
117782
|
get polylineBuffers() { return this._buffers; }
|
|
117783
|
+
_getLineCode(params) {
|
|
117784
|
+
return params.target.computeEdgeLineCode(params.renderPass, this._lineCode);
|
|
117785
|
+
}
|
|
117786
|
+
_getLineWeight(params) {
|
|
117787
|
+
return params.target.computeEdgeWeight(params.renderPass, this._width);
|
|
117788
|
+
}
|
|
117789
|
+
getColor(target) {
|
|
117790
|
+
return target.computeEdgeColor(this._colorInfo);
|
|
117791
|
+
}
|
|
117739
117792
|
wantMonochrome(target) {
|
|
117740
117793
|
return target.currentViewFlags.renderMode === _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RenderMode.Wireframe;
|
|
117741
117794
|
}
|
|
117742
117795
|
_draw(numInstances, instanceBuffersContainer) {
|
|
117743
|
-
const gl =
|
|
117796
|
+
const gl = _System__WEBPACK_IMPORTED_MODULE_8__.System.instance;
|
|
117744
117797
|
const bufs = instanceBuffersContainer !== undefined ? instanceBuffersContainer : this._buffers.buffers;
|
|
117745
117798
|
bufs.bind();
|
|
117746
|
-
gl.drawArrays(
|
|
117799
|
+
gl.drawArrays(_GL__WEBPACK_IMPORTED_MODULE_6__.GL.PrimitiveType.Triangles, 0, this._numIndices, numInstances);
|
|
117747
117800
|
bufs.unbind();
|
|
117748
117801
|
}
|
|
117749
|
-
constructor(numIndices, buffers, mesh) {
|
|
117802
|
+
constructor(numIndices, buffers, mesh, appearance) {
|
|
117750
117803
|
super(mesh, numIndices);
|
|
117751
117804
|
this._buffers = buffers;
|
|
117805
|
+
this._colorInfo = appearance?.color ? _ColorInfo__WEBPACK_IMPORTED_MODULE_5__.ColorInfo.createFromColorDef(appearance.color) : mesh.lut.colorInfo;
|
|
117806
|
+
this._width = appearance?.width ?? mesh.edgeWidth;
|
|
117807
|
+
this._lineCode = appearance?.linePixels ? (0,_common_internal_render_LineCode__WEBPACK_IMPORTED_MODULE_10__.lineCodeFromLinePixels)(appearance?.linePixels) : mesh.edgeLineCode;
|
|
117752
117808
|
}
|
|
117753
117809
|
}
|
|
117754
117810
|
|
|
@@ -119995,6 +120051,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
119995
120051
|
/* harmony import */ var _AttributeMap__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./AttributeMap */ "../../core/frontend/lib/esm/internal/render/webgl/AttributeMap.js");
|
|
119996
120052
|
/* harmony import */ var _GL__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./GL */ "../../core/frontend/lib/esm/internal/render/webgl/GL.js");
|
|
119997
120053
|
/* harmony import */ var _System__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./System */ "../../core/frontend/lib/esm/internal/render/webgl/System.js");
|
|
120054
|
+
/* harmony import */ var _ColorInfo__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ColorInfo */ "../../core/frontend/lib/esm/internal/render/webgl/ColorInfo.js");
|
|
120055
|
+
/* harmony import */ var _common_internal_render_LineCode__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../../common/internal/render/LineCode */ "../../core/frontend/lib/esm/common/internal/render/LineCode.js");
|
|
119998
120056
|
/*---------------------------------------------------------------------------------------------
|
|
119999
120057
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
120000
120058
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -120010,6 +120068,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
120010
120068
|
|
|
120011
120069
|
|
|
120012
120070
|
|
|
120071
|
+
|
|
120072
|
+
|
|
120013
120073
|
/** @see [[EdgeTable]]
|
|
120014
120074
|
* @internal
|
|
120015
120075
|
*/
|
|
@@ -120042,10 +120102,13 @@ class EdgeLUT {
|
|
|
120042
120102
|
class IndexedEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_4__.MeshGeometry {
|
|
120043
120103
|
_buffers;
|
|
120044
120104
|
_indices;
|
|
120105
|
+
_colorInfo;
|
|
120106
|
+
_width;
|
|
120107
|
+
_lineCode;
|
|
120045
120108
|
edgeLut;
|
|
120046
120109
|
get lutBuffers() { return this._buffers; }
|
|
120047
120110
|
get asIndexedEdge() { return this; }
|
|
120048
|
-
constructor(mesh, indices, numIndices, lut) {
|
|
120111
|
+
constructor(mesh, indices, numIndices, lut, appearance) {
|
|
120049
120112
|
super(mesh, numIndices);
|
|
120050
120113
|
this.edgeLut = lut;
|
|
120051
120114
|
this._buffers = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_3__.BuffersContainer.create();
|
|
@@ -120053,6 +120116,9 @@ class IndexedEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_4__.Mes
|
|
|
120053
120116
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== attrPos);
|
|
120054
120117
|
this._buffers.addBuffer(indices, [_AttributeBuffers__WEBPACK_IMPORTED_MODULE_3__.BufferParameters.create(attrPos.location, 3, _GL__WEBPACK_IMPORTED_MODULE_6__.GL.DataType.UnsignedByte, false, 0, 0, false)]);
|
|
120055
120118
|
this._indices = indices;
|
|
120119
|
+
this._colorInfo = appearance?.color ? _ColorInfo__WEBPACK_IMPORTED_MODULE_8__.ColorInfo.createFromColorDef(appearance.color) : mesh.lut.colorInfo;
|
|
120120
|
+
this._width = appearance?.width ?? mesh.edgeWidth;
|
|
120121
|
+
this._lineCode = appearance?.linePixels ? (0,_common_internal_render_LineCode__WEBPACK_IMPORTED_MODULE_9__.lineCodeFromLinePixels)(appearance?.linePixels) : mesh.edgeLineCode;
|
|
120056
120122
|
}
|
|
120057
120123
|
[Symbol.dispose]() {
|
|
120058
120124
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._buffers);
|
|
@@ -120065,7 +120131,7 @@ class IndexedEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_4__.Mes
|
|
|
120065
120131
|
static create(mesh, params) {
|
|
120066
120132
|
const indexBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_3__.BufferHandle.createArrayBuffer(params.indices.data);
|
|
120067
120133
|
const lut = EdgeLUT.create(params.edges);
|
|
120068
|
-
return indexBuffer && lut ? new IndexedEdgeGeometry(mesh, indexBuffer, params.indices.length, lut) : undefined;
|
|
120134
|
+
return indexBuffer && lut ? new IndexedEdgeGeometry(mesh, indexBuffer, params.indices.length, lut, params.appearance) : undefined;
|
|
120069
120135
|
}
|
|
120070
120136
|
collectStatistics(stats) {
|
|
120071
120137
|
stats.addIndexedEdges(this._indices.bytesUsed);
|
|
@@ -120078,11 +120144,18 @@ class IndexedEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_4__.Mes
|
|
|
120078
120144
|
bufs.unbind();
|
|
120079
120145
|
}
|
|
120080
120146
|
_wantWoWReversal() { return true; }
|
|
120081
|
-
_getLineCode(params) {
|
|
120147
|
+
_getLineCode(params) {
|
|
120148
|
+
return params.target.computeEdgeLineCode(params.renderPass, this._lineCode);
|
|
120149
|
+
}
|
|
120150
|
+
_getLineWeight(params) {
|
|
120151
|
+
return params.target.computeEdgeWeight(params.renderPass, this._width);
|
|
120152
|
+
}
|
|
120153
|
+
getColor(target) {
|
|
120154
|
+
return target.computeEdgeColor(this._colorInfo);
|
|
120155
|
+
}
|
|
120082
120156
|
get techniqueId() { return 6 /* TechniqueId.IndexedEdge */; }
|
|
120083
120157
|
getPass(target) { return this.computeEdgePass(target); }
|
|
120084
120158
|
get renderOrder() { return this.isPlanar ? 14 /* RenderOrder.PlanarEdge */ : 6 /* RenderOrder.Edge */; }
|
|
120085
|
-
getColor(target) { return this.computeEdgeColor(target); }
|
|
120086
120159
|
wantMonochrome(target) { return target.currentViewFlags.renderMode === _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RenderMode.Wireframe; }
|
|
120087
120160
|
}
|
|
120088
120161
|
|
|
@@ -121711,8 +121784,15 @@ class MeshRenderGeometry {
|
|
|
121711
121784
|
this.silhouetteEdges = _EdgeGeometry__WEBPACK_IMPORTED_MODULE_4__.SilhouetteEdgeGeometry.createSilhouettes(data, edges.silhouettes);
|
|
121712
121785
|
if (edges.segments)
|
|
121713
121786
|
this.segmentEdges = _EdgeGeometry__WEBPACK_IMPORTED_MODULE_4__.EdgeGeometry.create(data, edges.segments);
|
|
121714
|
-
if (edges.
|
|
121715
|
-
this.polylineEdges =
|
|
121787
|
+
if (edges.polylineGroups) {
|
|
121788
|
+
this.polylineEdges = [];
|
|
121789
|
+
for (const group of edges.polylineGroups) {
|
|
121790
|
+
const polyline = _EdgeGeometry__WEBPACK_IMPORTED_MODULE_4__.PolylineEdgeGeometry.create(data, group);
|
|
121791
|
+
if (polyline) {
|
|
121792
|
+
this.polylineEdges.push(polyline);
|
|
121793
|
+
}
|
|
121794
|
+
}
|
|
121795
|
+
}
|
|
121716
121796
|
if (edges.indexed)
|
|
121717
121797
|
this.indexedEdges = _IndexedEdgeGeometry__WEBPACK_IMPORTED_MODULE_5__.IndexedEdgeGeometry.create(data, edges.indexed);
|
|
121718
121798
|
}
|
|
@@ -121728,7 +121808,7 @@ class MeshRenderGeometry {
|
|
|
121728
121808
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this.surface);
|
|
121729
121809
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this.segmentEdges);
|
|
121730
121810
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this.silhouetteEdges);
|
|
121731
|
-
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.
|
|
121811
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.disposeArray)(this.polylineEdges);
|
|
121732
121812
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this.indexedEdges);
|
|
121733
121813
|
}
|
|
121734
121814
|
get isDisposed() {
|
|
@@ -121736,7 +121816,7 @@ class MeshRenderGeometry {
|
|
|
121736
121816
|
(!this.surface || this.surface.isDisposed) &&
|
|
121737
121817
|
(!this.segmentEdges || this.segmentEdges.isDisposed) &&
|
|
121738
121818
|
(!this.silhouetteEdges || this.silhouetteEdges.isDisposed) &&
|
|
121739
|
-
(!this.polylineEdges || this.polylineEdges.isDisposed) &&
|
|
121819
|
+
(!this.polylineEdges || this.polylineEdges.every((x) => x.isDisposed)) &&
|
|
121740
121820
|
(!this.indexedEdges || this.indexedEdges.isDisposed);
|
|
121741
121821
|
}
|
|
121742
121822
|
collectStatistics(stats) {
|
|
@@ -121744,7 +121824,7 @@ class MeshRenderGeometry {
|
|
|
121744
121824
|
this.surface?.collectStatistics(stats);
|
|
121745
121825
|
this.segmentEdges?.collectStatistics(stats);
|
|
121746
121826
|
this.silhouetteEdges?.collectStatistics(stats);
|
|
121747
|
-
this.polylineEdges?.collectStatistics(stats);
|
|
121827
|
+
this.polylineEdges?.forEach((x) => x.collectStatistics(stats));
|
|
121748
121828
|
this.indexedEdges?.collectStatistics(stats);
|
|
121749
121829
|
}
|
|
121750
121830
|
computeRange(out) {
|
|
@@ -121777,8 +121857,8 @@ class MeshGraphic extends _Graphic__WEBPACK_IMPORTED_MODULE_2__.Graphic {
|
|
|
121777
121857
|
this.addPrimitive(geometry.surface);
|
|
121778
121858
|
this.addPrimitive(geometry.segmentEdges);
|
|
121779
121859
|
this.addPrimitive(geometry.silhouetteEdges);
|
|
121780
|
-
this.addPrimitive(geometry.polylineEdges);
|
|
121781
121860
|
this.addPrimitive(geometry.indexedEdges);
|
|
121861
|
+
geometry.polylineEdges?.forEach((x) => this.addPrimitive(x));
|
|
121782
121862
|
}
|
|
121783
121863
|
get isDisposed() { return this.meshData.isDisposed && 0 === this._primitives.length; }
|
|
121784
121864
|
get isPickable() { return false; }
|
|
@@ -155259,7 +155339,6 @@ class QuantityFormatter {
|
|
|
155259
155339
|
requestedSystem = isImperial ? "imperial" : "metric";
|
|
155260
155340
|
return this.getParserSpecByQuantityTypeAndSystem(type, requestedSystem);
|
|
155261
155341
|
}
|
|
155262
|
-
// eslint-disable-next-line @typescript-eslint/promise-function-async
|
|
155263
155342
|
formatQuantity(args, spec) {
|
|
155264
155343
|
if (typeof args === "number") {
|
|
155265
155344
|
/** Format a quantity value. Default FormatterSpec implementation uses Formatter.formatQuantity. */
|
|
@@ -155282,7 +155361,6 @@ class QuantityFormatter {
|
|
|
155282
155361
|
});
|
|
155283
155362
|
return formatSpec.applyFormatting(value);
|
|
155284
155363
|
}
|
|
155285
|
-
// eslint-disable-next-line @typescript-eslint/promise-function-async
|
|
155286
155364
|
parseToQuantityValue(args, parserSpec) {
|
|
155287
155365
|
if (typeof args === "string") {
|
|
155288
155366
|
/** Parse a quantity value. Default ParserSpec implementation uses ParserSpec.parseToQuantityValue. */
|
|
@@ -158543,6 +158621,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158543
158621
|
/* harmony import */ var _common_internal_render_MeshPrimitive__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ../common/internal/render/MeshPrimitive */ "../../core/frontend/lib/esm/common/internal/render/MeshPrimitive.js");
|
|
158544
158622
|
/* harmony import */ var _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../common/gltf/GltfSchema */ "../../core/frontend/lib/esm/common/gltf/GltfSchema.js");
|
|
158545
158623
|
/* harmony import */ var _internal_render_GraphicTemplateImpl__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../internal/render/GraphicTemplateImpl */ "../../core/frontend/lib/esm/internal/render/GraphicTemplateImpl.js");
|
|
158624
|
+
/* harmony import */ var _common_imdl_CompactEdges__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../common/imdl/CompactEdges */ "../../core/frontend/lib/esm/common/imdl/CompactEdges.js");
|
|
158546
158625
|
/*---------------------------------------------------------------------------------------------
|
|
158547
158626
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
158548
158627
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -158564,6 +158643,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158564
158643
|
|
|
158565
158644
|
|
|
158566
158645
|
|
|
158646
|
+
|
|
158567
158647
|
/**
|
|
158568
158648
|
* A chunk of binary data exposed as a typed array.
|
|
158569
158649
|
* The count member indicates how many elements exist. This may be less than this.buffer.length due to padding added to the
|
|
@@ -159627,8 +159707,75 @@ class GltfReader {
|
|
|
159627
159707
|
mesh.primitive.edges.visible.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdge(data.buffer[i++], data.buffer[i++]));
|
|
159628
159708
|
}
|
|
159629
159709
|
}
|
|
159710
|
+
else if (primitive.extensions?.EXT_mesh_primitive_edge_visibility) {
|
|
159711
|
+
const ext = primitive.extensions.EXT_mesh_primitive_edge_visibility;
|
|
159712
|
+
const visibility = this.readBufferData8(ext, "visibility");
|
|
159713
|
+
if (visibility) {
|
|
159714
|
+
const indices = mesh.indices;
|
|
159715
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(indices !== undefined);
|
|
159716
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(visibility.buffer instanceof Uint8Array);
|
|
159717
|
+
const silhouetteNormals = this.readBufferData16(ext, "silhouetteNormals");
|
|
159718
|
+
const normalPairs = silhouetteNormals ? new Uint32Array(silhouetteNormals.buffer.buffer, silhouetteNormals.buffer.byteOffset, silhouetteNormals.buffer.byteLength / 4) : undefined;
|
|
159719
|
+
mesh.primitive.edges = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdges();
|
|
159720
|
+
for (const edge of (0,_common_imdl_CompactEdges__WEBPACK_IMPORTED_MODULE_14__.compactEdgeIterator)(visibility.buffer, normalPairs, indices.length, (idx) => indices[idx])) {
|
|
159721
|
+
if (undefined === edge.normals) {
|
|
159722
|
+
mesh.primitive.edges.visible.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdge(edge.index0, edge.index1));
|
|
159723
|
+
}
|
|
159724
|
+
else {
|
|
159725
|
+
mesh.primitive.edges.silhouette.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdge(edge.index0, edge.index1));
|
|
159726
|
+
const normal0 = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.OctEncodedNormal(edge.normals & 0x0000ffff);
|
|
159727
|
+
const normal1 = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.OctEncodedNormal(edge.normals >>> 16);
|
|
159728
|
+
mesh.primitive.edges.silhouetteNormals.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.OctEncodedNormalPair(normal0, normal1));
|
|
159729
|
+
}
|
|
159730
|
+
}
|
|
159731
|
+
}
|
|
159732
|
+
const lineStrings = ext.lineStrings;
|
|
159733
|
+
if (lineStrings) {
|
|
159734
|
+
for (const extLineString of lineStrings) {
|
|
159735
|
+
const polylineIndices = this.readBufferData32(extLineString, "indices");
|
|
159736
|
+
if (polylineIndices) {
|
|
159737
|
+
if (!mesh.primitive.edges) {
|
|
159738
|
+
mesh.primitive.edges = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdges();
|
|
159739
|
+
}
|
|
159740
|
+
const curGroup = {
|
|
159741
|
+
appearance: this.getEdgeAppearance(extLineString.material),
|
|
159742
|
+
polylines: [],
|
|
159743
|
+
};
|
|
159744
|
+
const curLineString = [];
|
|
159745
|
+
for (const index of polylineIndices.buffer) {
|
|
159746
|
+
if (index === 0xffffffff) {
|
|
159747
|
+
if (curLineString.length > 1) {
|
|
159748
|
+
curGroup.polylines.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshPolyline(curLineString));
|
|
159749
|
+
}
|
|
159750
|
+
curLineString.length = 0;
|
|
159751
|
+
}
|
|
159752
|
+
else {
|
|
159753
|
+
curLineString.push(index);
|
|
159754
|
+
}
|
|
159755
|
+
}
|
|
159756
|
+
if (curLineString.length > 1) {
|
|
159757
|
+
curGroup.polylines.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshPolyline(curLineString));
|
|
159758
|
+
}
|
|
159759
|
+
if (curGroup.polylines.length > 0) {
|
|
159760
|
+
mesh.primitive.edges.polylineGroups.push(curGroup);
|
|
159761
|
+
}
|
|
159762
|
+
}
|
|
159763
|
+
}
|
|
159764
|
+
}
|
|
159765
|
+
if (mesh.primitive.edges) {
|
|
159766
|
+
mesh.primitive.edges.appearance = this.getEdgeAppearance(ext.material);
|
|
159767
|
+
}
|
|
159768
|
+
}
|
|
159630
159769
|
return mesh;
|
|
159631
159770
|
}
|
|
159771
|
+
getEdgeAppearance(materialId) {
|
|
159772
|
+
const material = undefined !== materialId ? this._materials[materialId] : undefined;
|
|
159773
|
+
const displayParams = material ? this.createDisplayParams(material, false) : undefined;
|
|
159774
|
+
if (displayParams) {
|
|
159775
|
+
return { color: displayParams.lineColor };
|
|
159776
|
+
}
|
|
159777
|
+
return undefined;
|
|
159778
|
+
}
|
|
159632
159779
|
readPointCloud2(primitive, hasFeatures) {
|
|
159633
159780
|
let pointRange;
|
|
159634
159781
|
let positions;
|
|
@@ -197878,149 +198025,150 @@ class LineStringOffsetClipperContext {
|
|
|
197878
198025
|
"use strict";
|
|
197879
198026
|
__webpack_require__.r(__webpack_exports__);
|
|
197880
198027
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
197881
|
-
/* harmony export */ AkimaCurve3d: () => (/* reexport safe */
|
|
197882
|
-
/* harmony export */ AkimaCurve3dOptions: () => (/* reexport safe */
|
|
198028
|
+
/* harmony export */ AkimaCurve3d: () => (/* reexport safe */ _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__.AkimaCurve3d),
|
|
198029
|
+
/* harmony export */ AkimaCurve3dOptions: () => (/* reexport safe */ _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__.AkimaCurve3dOptions),
|
|
197883
198030
|
/* harmony export */ Angle: () => (/* reexport safe */ _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_0__.Angle),
|
|
197884
198031
|
/* harmony export */ AngleSweep: () => (/* reexport safe */ _geometry3d_AngleSweep__WEBPACK_IMPORTED_MODULE_1__.AngleSweep),
|
|
197885
|
-
/* harmony export */ AnnotatedLineString3d: () => (/* reexport safe */
|
|
197886
|
-
/* harmony export */ Arc3d: () => (/* reexport safe */
|
|
197887
|
-
/* harmony export */ AuxChannel: () => (/* reexport safe */
|
|
197888
|
-
/* harmony export */ AuxChannelData: () => (/* reexport safe */
|
|
197889
|
-
/* harmony export */ AuxChannelDataType: () => (/* reexport safe */
|
|
197890
|
-
/* harmony export */ AxisIndex: () => (/* reexport safe */
|
|
197891
|
-
/* harmony export */ AxisOrder: () => (/* reexport safe */
|
|
197892
|
-
/* harmony export */ AxisScaleSelect: () => (/* reexport safe */
|
|
197893
|
-
/* harmony export */ BSpline1dNd: () => (/* reexport safe */
|
|
197894
|
-
/* harmony export */ BSpline2dNd: () => (/* reexport safe */
|
|
197895
|
-
/* harmony export */ BSplineCurve3d: () => (/* reexport safe */
|
|
197896
|
-
/* harmony export */ BSplineCurve3dBase: () => (/* reexport safe */
|
|
197897
|
-
/* harmony export */ BSplineCurve3dH: () => (/* reexport safe */
|
|
197898
|
-
/* harmony export */ BSplineCurveOps: () => (/* reexport safe */
|
|
197899
|
-
/* harmony export */ BSplineSurface3d: () => (/* reexport safe */
|
|
197900
|
-
/* harmony export */ BSplineSurface3dH: () => (/* reexport safe */
|
|
197901
|
-
/* harmony export */ BSplineWrapMode: () => (/* reexport safe */
|
|
197902
|
-
/* harmony export */ BagOfCurves: () => (/* reexport safe */
|
|
198032
|
+
/* harmony export */ AnnotatedLineString3d: () => (/* reexport safe */ _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__.AnnotatedLineString3d),
|
|
198033
|
+
/* harmony export */ Arc3d: () => (/* reexport safe */ _curve_Arc3d__WEBPACK_IMPORTED_MODULE_60__.Arc3d),
|
|
198034
|
+
/* harmony export */ AuxChannel: () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannel),
|
|
198035
|
+
/* harmony export */ AuxChannelData: () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannelData),
|
|
198036
|
+
/* harmony export */ AuxChannelDataType: () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannelDataType),
|
|
198037
|
+
/* harmony export */ AxisIndex: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.AxisIndex),
|
|
198038
|
+
/* harmony export */ AxisOrder: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.AxisOrder),
|
|
198039
|
+
/* harmony export */ AxisScaleSelect: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.AxisScaleSelect),
|
|
198040
|
+
/* harmony export */ BSpline1dNd: () => (/* reexport safe */ _bspline_BSpline1dNd__WEBPACK_IMPORTED_MODULE_105__.BSpline1dNd),
|
|
198041
|
+
/* harmony export */ BSpline2dNd: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSpline2dNd),
|
|
198042
|
+
/* harmony export */ BSplineCurve3d: () => (/* reexport safe */ _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__.BSplineCurve3d),
|
|
198043
|
+
/* harmony export */ BSplineCurve3dBase: () => (/* reexport safe */ _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__.BSplineCurve3dBase),
|
|
198044
|
+
/* harmony export */ BSplineCurve3dH: () => (/* reexport safe */ _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_106__.BSplineCurve3dH),
|
|
198045
|
+
/* harmony export */ BSplineCurveOps: () => (/* reexport safe */ _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_104__.BSplineCurveOps),
|
|
198046
|
+
/* harmony export */ BSplineSurface3d: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSplineSurface3d),
|
|
198047
|
+
/* harmony export */ BSplineSurface3dH: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSplineSurface3dH),
|
|
198048
|
+
/* harmony export */ BSplineWrapMode: () => (/* reexport safe */ _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__.BSplineWrapMode),
|
|
198049
|
+
/* harmony export */ BagOfCurves: () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_65__.BagOfCurves),
|
|
197903
198050
|
/* harmony export */ BarycentricTriangle: () => (/* reexport safe */ _geometry3d_BarycentricTriangle__WEBPACK_IMPORTED_MODULE_3__.BarycentricTriangle),
|
|
197904
|
-
/* harmony export */ BentleyGeometryFlatBuffer: () => (/* reexport safe */
|
|
197905
|
-
/* harmony export */ Bezier1dNd: () => (/* reexport safe */
|
|
197906
|
-
/* harmony export */ BezierCoffs: () => (/* reexport safe */
|
|
197907
|
-
/* harmony export */ BezierCurve3d: () => (/* reexport safe */
|
|
197908
|
-
/* harmony export */ BezierCurve3dH: () => (/* reexport safe */
|
|
197909
|
-
/* harmony export */ BezierCurveBase: () => (/* reexport safe */
|
|
197910
|
-
/* harmony export */ BezierPolynomialAlgebra: () => (/* reexport safe */
|
|
198051
|
+
/* harmony export */ BentleyGeometryFlatBuffer: () => (/* reexport safe */ _serialization_BentleyGeometryFlatBuffer__WEBPACK_IMPORTED_MODULE_133__.BentleyGeometryFlatBuffer),
|
|
198052
|
+
/* harmony export */ Bezier1dNd: () => (/* reexport safe */ _bspline_Bezier1dNd__WEBPACK_IMPORTED_MODULE_99__.Bezier1dNd),
|
|
198053
|
+
/* harmony export */ BezierCoffs: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.BezierCoffs),
|
|
198054
|
+
/* harmony export */ BezierCurve3d: () => (/* reexport safe */ _bspline_BezierCurve3d__WEBPACK_IMPORTED_MODULE_101__.BezierCurve3d),
|
|
198055
|
+
/* harmony export */ BezierCurve3dH: () => (/* reexport safe */ _bspline_BezierCurve3dH__WEBPACK_IMPORTED_MODULE_102__.BezierCurve3dH),
|
|
198056
|
+
/* harmony export */ BezierCurveBase: () => (/* reexport safe */ _bspline_BezierCurveBase__WEBPACK_IMPORTED_MODULE_100__.BezierCurveBase),
|
|
198057
|
+
/* harmony export */ BezierPolynomialAlgebra: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.BezierPolynomialAlgebra),
|
|
197911
198058
|
/* harmony export */ BilinearPatch: () => (/* reexport safe */ _geometry3d_BilinearPatch__WEBPACK_IMPORTED_MODULE_4__.BilinearPatch),
|
|
197912
|
-
/* harmony export */ BooleanClipFactory: () => (/* reexport safe */
|
|
197913
|
-
/* harmony export */ Box: () => (/* reexport safe */
|
|
197914
|
-
/* harmony export */ BoxTopology: () => (/* reexport safe */
|
|
197915
|
-
/* harmony export */ ClipMaskXYZRangePlanes: () => (/* reexport safe */
|
|
197916
|
-
/* harmony export */ ClipPlane: () => (/* reexport safe */
|
|
197917
|
-
/* harmony export */ ClipPlaneContainment: () => (/* reexport safe */
|
|
197918
|
-
/* harmony export */ ClipPrimitive: () => (/* reexport safe */
|
|
197919
|
-
/* harmony export */ ClipShape: () => (/* reexport safe */
|
|
197920
|
-
/* harmony export */ ClipStatus: () => (/* reexport safe */
|
|
197921
|
-
/* harmony export */ ClipStepAction: () => (/* reexport safe */
|
|
197922
|
-
/* harmony export */ ClipUtilities: () => (/* reexport safe */
|
|
197923
|
-
/* harmony export */ ClipVector: () => (/* reexport safe */
|
|
197924
|
-
/* harmony export */ ClippedPolyfaceBuilders: () => (/* reexport safe */
|
|
197925
|
-
/* harmony export */ ClusterableArray: () => (/* reexport safe */
|
|
197926
|
-
/* harmony export */ Complex: () => (/* reexport safe */
|
|
197927
|
-
/* harmony export */ Cone: () => (/* reexport safe */
|
|
197928
|
-
/* harmony export */ ConsolidateAdjacentCurvePrimitivesOptions: () => (/* reexport safe */
|
|
197929
|
-
/* harmony export */ Constant: () => (/* reexport safe */
|
|
197930
|
-
/* harmony export */ ConstructCurveBetweenCurves: () => (/* reexport safe */
|
|
197931
|
-
/* harmony export */ ConvexClipPlaneSet: () => (/* reexport safe */
|
|
197932
|
-
/* harmony export */ ConvexFacetLocationDetail: () => (/* reexport safe */
|
|
197933
|
-
/* harmony export */ ConvexPolygon2d: () => (/* reexport safe */
|
|
197934
|
-
/* harmony export */ CoordinateXYZ: () => (/* reexport safe */
|
|
197935
|
-
/* harmony export */ CurveChain: () => (/* reexport safe */
|
|
197936
|
-
/* harmony export */ CurveChainWithDistanceIndex: () => (/* reexport safe */
|
|
197937
|
-
/* harmony export */ CurveCollection: () => (/* reexport safe */
|
|
197938
|
-
/* harmony export */ CurveCurve: () => (/* reexport safe */
|
|
197939
|
-
/* harmony export */ CurveCurveApproachType: () => (/* reexport safe */
|
|
197940
|
-
/* harmony export */ CurveExtendMode: () => (/* reexport safe */
|
|
197941
|
-
/* harmony export */ CurveExtendOptions: () => (/* reexport safe */
|
|
197942
|
-
/* harmony export */ CurveFactory: () => (/* reexport safe */
|
|
197943
|
-
/* harmony export */ CurveIntervalRole: () => (/* reexport safe */
|
|
197944
|
-
/* harmony export */ CurveLocationDetail: () => (/* reexport safe */
|
|
197945
|
-
/* harmony export */ CurveLocationDetailArrayPair: () => (/* reexport safe */
|
|
197946
|
-
/* harmony export */ CurveLocationDetailPair: () => (/* reexport safe */
|
|
197947
|
-
/* harmony export */ CurveOps: () => (/* reexport safe */
|
|
197948
|
-
/* harmony export */ CurvePrimitive: () => (/* reexport safe */
|
|
197949
|
-
/* harmony export */ CurveSearchStatus: () => (/* reexport safe */
|
|
198059
|
+
/* harmony export */ BooleanClipFactory: () => (/* reexport safe */ _clipping_BooleanClipFactory__WEBPACK_IMPORTED_MODULE_39__.BooleanClipFactory),
|
|
198060
|
+
/* harmony export */ Box: () => (/* reexport safe */ _solid_Box__WEBPACK_IMPORTED_MODULE_89__.Box),
|
|
198061
|
+
/* harmony export */ BoxTopology: () => (/* reexport safe */ _polyface_BoxTopology__WEBPACK_IMPORTED_MODULE_111__.BoxTopology),
|
|
198062
|
+
/* harmony export */ ClipMaskXYZRangePlanes: () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_43__.ClipMaskXYZRangePlanes),
|
|
198063
|
+
/* harmony export */ ClipPlane: () => (/* reexport safe */ _clipping_ClipPlane__WEBPACK_IMPORTED_MODULE_40__.ClipPlane),
|
|
198064
|
+
/* harmony export */ ClipPlaneContainment: () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__.ClipPlaneContainment),
|
|
198065
|
+
/* harmony export */ ClipPrimitive: () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_43__.ClipPrimitive),
|
|
198066
|
+
/* harmony export */ ClipShape: () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_43__.ClipShape),
|
|
198067
|
+
/* harmony export */ ClipStatus: () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__.ClipStatus),
|
|
198068
|
+
/* harmony export */ ClipStepAction: () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__.ClipStepAction),
|
|
198069
|
+
/* harmony export */ ClipUtilities: () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__.ClipUtilities),
|
|
198070
|
+
/* harmony export */ ClipVector: () => (/* reexport safe */ _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_44__.ClipVector),
|
|
198071
|
+
/* harmony export */ ClippedPolyfaceBuilders: () => (/* reexport safe */ _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_123__.ClippedPolyfaceBuilders),
|
|
198072
|
+
/* harmony export */ ClusterableArray: () => (/* reexport safe */ _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_53__.ClusterableArray),
|
|
198073
|
+
/* harmony export */ Complex: () => (/* reexport safe */ _numerics_Complex__WEBPACK_IMPORTED_MODULE_54__.Complex),
|
|
198074
|
+
/* harmony export */ Cone: () => (/* reexport safe */ _solid_Cone__WEBPACK_IMPORTED_MODULE_90__.Cone),
|
|
198075
|
+
/* harmony export */ ConsolidateAdjacentCurvePrimitivesOptions: () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_80__.ConsolidateAdjacentCurvePrimitivesOptions),
|
|
198076
|
+
/* harmony export */ Constant: () => (/* reexport safe */ _Constant__WEBPACK_IMPORTED_MODULE_38__.Constant),
|
|
198077
|
+
/* harmony export */ ConstructCurveBetweenCurves: () => (/* reexport safe */ _curve_ConstructCurveBetweenCurves__WEBPACK_IMPORTED_MODULE_61__.ConstructCurveBetweenCurves),
|
|
198078
|
+
/* harmony export */ ConvexClipPlaneSet: () => (/* reexport safe */ _clipping_ConvexClipPlaneSet__WEBPACK_IMPORTED_MODULE_41__.ConvexClipPlaneSet),
|
|
198079
|
+
/* harmony export */ ConvexFacetLocationDetail: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.ConvexFacetLocationDetail),
|
|
198080
|
+
/* harmony export */ ConvexPolygon2d: () => (/* reexport safe */ _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_46__.ConvexPolygon2d),
|
|
198081
|
+
/* harmony export */ CoordinateXYZ: () => (/* reexport safe */ _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_62__.CoordinateXYZ),
|
|
198082
|
+
/* harmony export */ CurveChain: () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_65__.CurveChain),
|
|
198083
|
+
/* harmony export */ CurveChainWithDistanceIndex: () => (/* reexport safe */ _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_63__.CurveChainWithDistanceIndex),
|
|
198084
|
+
/* harmony export */ CurveCollection: () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_65__.CurveCollection),
|
|
198085
|
+
/* harmony export */ CurveCurve: () => (/* reexport safe */ _curve_CurveCurve__WEBPACK_IMPORTED_MODULE_66__.CurveCurve),
|
|
198086
|
+
/* harmony export */ CurveCurveApproachType: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveCurveApproachType),
|
|
198087
|
+
/* harmony export */ CurveExtendMode: () => (/* reexport safe */ _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_64__.CurveExtendMode),
|
|
198088
|
+
/* harmony export */ CurveExtendOptions: () => (/* reexport safe */ _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_64__.CurveExtendOptions),
|
|
198089
|
+
/* harmony export */ CurveFactory: () => (/* reexport safe */ _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_68__.CurveFactory),
|
|
198090
|
+
/* harmony export */ CurveIntervalRole: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveIntervalRole),
|
|
198091
|
+
/* harmony export */ CurveLocationDetail: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveLocationDetail),
|
|
198092
|
+
/* harmony export */ CurveLocationDetailArrayPair: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveLocationDetailArrayPair),
|
|
198093
|
+
/* harmony export */ CurveLocationDetailPair: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveLocationDetailPair),
|
|
198094
|
+
/* harmony export */ CurveOps: () => (/* reexport safe */ _curve_CurveOps__WEBPACK_IMPORTED_MODULE_69__.CurveOps),
|
|
198095
|
+
/* harmony export */ CurvePrimitive: () => (/* reexport safe */ _curve_CurvePrimitive__WEBPACK_IMPORTED_MODULE_70__.CurvePrimitive),
|
|
198096
|
+
/* harmony export */ CurveSearchStatus: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveSearchStatus),
|
|
197950
198097
|
/* harmony export */ CutLoop: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.CutLoop),
|
|
197951
198098
|
/* harmony export */ CutLoopMergeContext: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.CutLoopMergeContext),
|
|
197952
|
-
/* harmony export */ DeepCompare: () => (/* reexport safe */
|
|
197953
|
-
/* harmony export */ DirectSpiral3d: () => (/* reexport safe */
|
|
197954
|
-
/* harmony export */ DuplicateFacetClusterSelector: () => (/* reexport safe */
|
|
198099
|
+
/* harmony export */ DeepCompare: () => (/* reexport safe */ _serialization_DeepCompare__WEBPACK_IMPORTED_MODULE_130__.DeepCompare),
|
|
198100
|
+
/* harmony export */ DirectSpiral3d: () => (/* reexport safe */ _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_86__.DirectSpiral3d),
|
|
198101
|
+
/* harmony export */ DuplicateFacetClusterSelector: () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__.DuplicateFacetClusterSelector),
|
|
197955
198102
|
/* harmony export */ Ellipsoid: () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.Ellipsoid),
|
|
197956
198103
|
/* harmony export */ EllipsoidPatch: () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.EllipsoidPatch),
|
|
197957
|
-
/* harmony export */ EllipticalArcApproximationOptions: () => (/* reexport safe */
|
|
197958
|
-
/* harmony export */ EllipticalArcSampleMethod: () => (/* reexport safe */
|
|
197959
|
-
/* harmony export */ FacetFaceData: () => (/* reexport safe */
|
|
197960
|
-
/* harmony export */ FacetIntersectOptions: () => (/* reexport safe */
|
|
197961
|
-
/* harmony export */ FacetLocationDetailPair: () => (/* reexport safe */
|
|
198104
|
+
/* harmony export */ EllipticalArcApproximationOptions: () => (/* reexport safe */ _curve_Arc3d__WEBPACK_IMPORTED_MODULE_60__.EllipticalArcApproximationOptions),
|
|
198105
|
+
/* harmony export */ EllipticalArcSampleMethod: () => (/* reexport safe */ _curve_Arc3d__WEBPACK_IMPORTED_MODULE_60__.EllipticalArcSampleMethod),
|
|
198106
|
+
/* harmony export */ FacetFaceData: () => (/* reexport safe */ _polyface_FacetFaceData__WEBPACK_IMPORTED_MODULE_112__.FacetFaceData),
|
|
198107
|
+
/* harmony export */ FacetIntersectOptions: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.FacetIntersectOptions),
|
|
198108
|
+
/* harmony export */ FacetLocationDetailPair: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.FacetLocationDetailPair),
|
|
197962
198109
|
/* harmony export */ FrameBuilder: () => (/* reexport safe */ _geometry3d_FrameBuilder__WEBPACK_IMPORTED_MODULE_6__.FrameBuilder),
|
|
197963
|
-
/* harmony export */ GaussMapper: () => (/* reexport safe */
|
|
198110
|
+
/* harmony export */ GaussMapper: () => (/* reexport safe */ _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__.GaussMapper),
|
|
197964
198111
|
/* harmony export */ GeodesicPathPoint: () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.GeodesicPathPoint),
|
|
197965
198112
|
/* harmony export */ GeodesicPathSolver: () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.GeodesicPathSolver),
|
|
197966
|
-
/* harmony export */ Geometry: () => (/* reexport safe */
|
|
198113
|
+
/* harmony export */ Geometry: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.Geometry),
|
|
197967
198114
|
/* harmony export */ GeometryHandler: () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.GeometryHandler),
|
|
197968
|
-
/* harmony export */ GeometryQuery: () => (/* reexport safe */
|
|
197969
|
-
/* harmony export */ GriddedRaggedRange2dSet: () => (/* reexport safe */
|
|
197970
|
-
/* harmony export */ GriddedRaggedRange2dSetWithOverflow: () => (/* reexport safe */
|
|
198115
|
+
/* harmony export */ GeometryQuery: () => (/* reexport safe */ _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_72__.GeometryQuery),
|
|
198116
|
+
/* harmony export */ GriddedRaggedRange2dSet: () => (/* reexport safe */ _polyface_multiclip_GriddedRaggedRange2dSet__WEBPACK_IMPORTED_MODULE_118__.GriddedRaggedRange2dSet),
|
|
198117
|
+
/* harmony export */ GriddedRaggedRange2dSetWithOverflow: () => (/* reexport safe */ _polyface_multiclip_GriddedRaggedRange2dSetWithOverflow__WEBPACK_IMPORTED_MODULE_119__.GriddedRaggedRange2dSetWithOverflow),
|
|
197971
198118
|
/* harmony export */ GrowableBlockedArray: () => (/* reexport safe */ _geometry3d_GrowableBlockedArray__WEBPACK_IMPORTED_MODULE_9__.GrowableBlockedArray),
|
|
197972
198119
|
/* harmony export */ GrowableFloat64Array: () => (/* reexport safe */ _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_10__.GrowableFloat64Array),
|
|
197973
198120
|
/* harmony export */ GrowableXYArray: () => (/* reexport safe */ _geometry3d_GrowableXYArray__WEBPACK_IMPORTED_MODULE_11__.GrowableXYArray),
|
|
197974
198121
|
/* harmony export */ GrowableXYZArray: () => (/* reexport safe */ _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_12__.GrowableXYZArray),
|
|
197975
|
-
/* harmony export */
|
|
198122
|
+
/* harmony export */ GrowableXYZArrayCache: () => (/* reexport safe */ _geometry3d_ReusableObjectCache__WEBPACK_IMPORTED_MODULE_31__.GrowableXYZArrayCache),
|
|
198123
|
+
/* harmony export */ IModelJson: () => (/* reexport safe */ _serialization_IModelJsonSchema__WEBPACK_IMPORTED_MODULE_129__.IModelJson),
|
|
197976
198124
|
/* harmony export */ IndexedCollectionInterval: () => (/* reexport safe */ _geometry3d_IndexedCollectionInterval__WEBPACK_IMPORTED_MODULE_13__.IndexedCollectionInterval),
|
|
197977
|
-
/* harmony export */ IndexedEdgeMatcher: () => (/* reexport safe */
|
|
197978
|
-
/* harmony export */ IndexedPolyface: () => (/* reexport safe */
|
|
197979
|
-
/* harmony export */ IndexedPolyfaceSubsetVisitor: () => (/* reexport safe */
|
|
197980
|
-
/* harmony export */ IndexedPolyfaceVisitor: () => (/* reexport safe */
|
|
197981
|
-
/* harmony export */ IndexedPolyfaceWalker: () => (/* reexport safe */
|
|
198125
|
+
/* harmony export */ IndexedEdgeMatcher: () => (/* reexport safe */ _polyface_IndexedEdgeMatcher__WEBPACK_IMPORTED_MODULE_115__.IndexedEdgeMatcher),
|
|
198126
|
+
/* harmony export */ IndexedPolyface: () => (/* reexport safe */ _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__.IndexedPolyface),
|
|
198127
|
+
/* harmony export */ IndexedPolyfaceSubsetVisitor: () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_116__.IndexedPolyfaceSubsetVisitor),
|
|
198128
|
+
/* harmony export */ IndexedPolyfaceVisitor: () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_116__.IndexedPolyfaceVisitor),
|
|
198129
|
+
/* harmony export */ IndexedPolyfaceWalker: () => (/* reexport safe */ _polyface_IndexedPolyfaceWalker__WEBPACK_IMPORTED_MODULE_117__.IndexedPolyfaceWalker),
|
|
197982
198130
|
/* harmony export */ IndexedReadWriteXYZCollection: () => (/* reexport safe */ _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__.IndexedReadWriteXYZCollection),
|
|
197983
198131
|
/* harmony export */ IndexedXYCollection: () => (/* reexport safe */ _geometry3d_IndexedXYCollection__WEBPACK_IMPORTED_MODULE_14__.IndexedXYCollection),
|
|
197984
198132
|
/* harmony export */ IndexedXYZCollection: () => (/* reexport safe */ _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__.IndexedXYZCollection),
|
|
197985
198133
|
/* harmony export */ IndexedXYZCollectionInterval: () => (/* reexport safe */ _geometry3d_IndexedCollectionInterval__WEBPACK_IMPORTED_MODULE_13__.IndexedXYZCollectionInterval),
|
|
197986
198134
|
/* harmony export */ IndexedXYZCollectionPolygonOps: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.IndexedXYZCollectionPolygonOps),
|
|
197987
|
-
/* harmony export */ IntegratedSpiral3d: () => (/* reexport safe */
|
|
197988
|
-
/* harmony export */ InterpolationCurve3d: () => (/* reexport safe */
|
|
197989
|
-
/* harmony export */ InterpolationCurve3dOptions: () => (/* reexport safe */
|
|
198135
|
+
/* harmony export */ IntegratedSpiral3d: () => (/* reexport safe */ _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_85__.IntegratedSpiral3d),
|
|
198136
|
+
/* harmony export */ InterpolationCurve3d: () => (/* reexport safe */ _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__.InterpolationCurve3d),
|
|
198137
|
+
/* harmony export */ InterpolationCurve3dOptions: () => (/* reexport safe */ _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__.InterpolationCurve3dOptions),
|
|
197990
198138
|
/* harmony export */ InverseMatrixState: () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.InverseMatrixState),
|
|
197991
|
-
/* harmony export */ JointOptions: () => (/* reexport safe */
|
|
197992
|
-
/* harmony export */ KnotVector: () => (/* reexport safe */
|
|
197993
|
-
/* harmony export */ LineSegment3d: () => (/* reexport safe */
|
|
197994
|
-
/* harmony export */ LineString3d: () => (/* reexport safe */
|
|
197995
|
-
/* harmony export */ LineString3dRangeTreeContext: () => (/* reexport safe */
|
|
197996
|
-
/* harmony export */ LinearSweep: () => (/* reexport safe */
|
|
198139
|
+
/* harmony export */ JointOptions: () => (/* reexport safe */ _curve_OffsetOptions__WEBPACK_IMPORTED_MODULE_76__.JointOptions),
|
|
198140
|
+
/* harmony export */ KnotVector: () => (/* reexport safe */ _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__.KnotVector),
|
|
198141
|
+
/* harmony export */ LineSegment3d: () => (/* reexport safe */ _curve_LineSegment3d__WEBPACK_IMPORTED_MODULE_73__.LineSegment3d),
|
|
198142
|
+
/* harmony export */ LineString3d: () => (/* reexport safe */ _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__.LineString3d),
|
|
198143
|
+
/* harmony export */ LineString3dRangeTreeContext: () => (/* reexport safe */ _polyface_RangeTree_LineString3dRangeTreeContext__WEBPACK_IMPORTED_MODULE_125__.LineString3dRangeTreeContext),
|
|
198144
|
+
/* harmony export */ LinearSweep: () => (/* reexport safe */ _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_91__.LinearSweep),
|
|
197997
198145
|
/* harmony export */ LongitudeLatitudeNumber: () => (/* reexport safe */ _geometry3d_LongitudeLatitudeAltitude__WEBPACK_IMPORTED_MODULE_2__.LongitudeLatitudeNumber),
|
|
197998
|
-
/* harmony export */ Loop: () => (/* reexport safe */
|
|
197999
|
-
/* harmony export */ LoopCurveLoopCurve: () => (/* reexport safe */
|
|
198000
|
-
/* harmony export */ Map4d: () => (/* reexport safe */
|
|
198146
|
+
/* harmony export */ Loop: () => (/* reexport safe */ _curve_Loop__WEBPACK_IMPORTED_MODULE_75__.Loop),
|
|
198147
|
+
/* harmony export */ LoopCurveLoopCurve: () => (/* reexport safe */ _curve_Loop__WEBPACK_IMPORTED_MODULE_75__.LoopCurveLoopCurve),
|
|
198148
|
+
/* harmony export */ Map4d: () => (/* reexport safe */ _geometry4d_Map4d__WEBPACK_IMPORTED_MODULE_50__.Map4d),
|
|
198001
198149
|
/* harmony export */ Matrix3d: () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.Matrix3d),
|
|
198002
|
-
/* harmony export */ Matrix4d: () => (/* reexport safe */
|
|
198003
|
-
/* harmony export */ MiteredSweepOutputSelect: () => (/* reexport safe */
|
|
198004
|
-
/* harmony export */ MomentData: () => (/* reexport safe */
|
|
198005
|
-
/* harmony export */ NonConvexFacetLocationDetail: () => (/* reexport safe */
|
|
198150
|
+
/* harmony export */ Matrix4d: () => (/* reexport safe */ _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_49__.Matrix4d),
|
|
198151
|
+
/* harmony export */ MiteredSweepOutputSelect: () => (/* reexport safe */ _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_68__.MiteredSweepOutputSelect),
|
|
198152
|
+
/* harmony export */ MomentData: () => (/* reexport safe */ _geometry4d_MomentData__WEBPACK_IMPORTED_MODULE_51__.MomentData),
|
|
198153
|
+
/* harmony export */ NonConvexFacetLocationDetail: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.NonConvexFacetLocationDetail),
|
|
198006
198154
|
/* harmony export */ NullGeometryHandler: () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.NullGeometryHandler),
|
|
198007
198155
|
/* harmony export */ NumberArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.NumberArray),
|
|
198008
|
-
/* harmony export */ OffsetMeshOptions: () => (/* reexport safe */
|
|
198009
|
-
/* harmony export */ OffsetOptions: () => (/* reexport safe */
|
|
198010
|
-
/* harmony export */ Order2Bezier: () => (/* reexport safe */
|
|
198011
|
-
/* harmony export */ Order3Bezier: () => (/* reexport safe */
|
|
198012
|
-
/* harmony export */ Order4Bezier: () => (/* reexport safe */
|
|
198013
|
-
/* harmony export */ Order5Bezier: () => (/* reexport safe */
|
|
198156
|
+
/* harmony export */ OffsetMeshOptions: () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__.OffsetMeshOptions),
|
|
198157
|
+
/* harmony export */ OffsetOptions: () => (/* reexport safe */ _curve_OffsetOptions__WEBPACK_IMPORTED_MODULE_76__.OffsetOptions),
|
|
198158
|
+
/* harmony export */ Order2Bezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.Order2Bezier),
|
|
198159
|
+
/* harmony export */ Order3Bezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.Order3Bezier),
|
|
198160
|
+
/* harmony export */ Order4Bezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.Order4Bezier),
|
|
198161
|
+
/* harmony export */ Order5Bezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.Order5Bezier),
|
|
198014
198162
|
/* harmony export */ OrderedRotationAngles: () => (/* reexport safe */ _geometry3d_OrderedRotationAngles__WEBPACK_IMPORTED_MODULE_17__.OrderedRotationAngles),
|
|
198015
198163
|
/* harmony export */ PackedMatrix3dOps: () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.PackedMatrix3dOps),
|
|
198016
|
-
/* harmony export */ ParityRegion: () => (/* reexport safe */
|
|
198017
|
-
/* harmony export */ PascalCoefficients: () => (/* reexport safe */
|
|
198018
|
-
/* harmony export */ Path: () => (/* reexport safe */
|
|
198019
|
-
/* harmony export */ PathFragment: () => (/* reexport safe */
|
|
198164
|
+
/* harmony export */ ParityRegion: () => (/* reexport safe */ _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_77__.ParityRegion),
|
|
198165
|
+
/* harmony export */ PascalCoefficients: () => (/* reexport safe */ _numerics_PascalCoefficients__WEBPACK_IMPORTED_MODULE_55__.PascalCoefficients),
|
|
198166
|
+
/* harmony export */ Path: () => (/* reexport safe */ _curve_Path__WEBPACK_IMPORTED_MODULE_78__.Path),
|
|
198167
|
+
/* harmony export */ PathFragment: () => (/* reexport safe */ _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_63__.PathFragment),
|
|
198020
198168
|
/* harmony export */ Plane3d: () => (/* reexport safe */ _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_18__.Plane3d),
|
|
198021
198169
|
/* harmony export */ Plane3dByOriginAndUnitNormal: () => (/* reexport safe */ _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_19__.Plane3dByOriginAndUnitNormal),
|
|
198022
198170
|
/* harmony export */ Plane3dByOriginAndVectors: () => (/* reexport safe */ _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_20__.Plane3dByOriginAndVectors),
|
|
198023
|
-
/* harmony export */ PlaneByOriginAndVectors4d: () => (/* reexport safe */
|
|
198171
|
+
/* harmony export */ PlaneByOriginAndVectors4d: () => (/* reexport safe */ _geometry4d_PlaneByOriginAndVectors4d__WEBPACK_IMPORTED_MODULE_47__.PlaneByOriginAndVectors4d),
|
|
198024
198172
|
/* harmony export */ Point2d: () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.Point2d),
|
|
198025
198173
|
/* harmony export */ Point2dArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point2dArray),
|
|
198026
198174
|
/* harmony export */ Point2dArrayCarrier: () => (/* reexport safe */ _geometry3d_Point2dArrayCarrier__WEBPACK_IMPORTED_MODULE_21__.Point2dArrayCarrier),
|
|
@@ -198028,77 +198176,78 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
198028
198176
|
/* harmony export */ Point3dArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point3dArray),
|
|
198029
198177
|
/* harmony export */ Point3dArrayCarrier: () => (/* reexport safe */ _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_25__.Point3dArrayCarrier),
|
|
198030
198178
|
/* harmony export */ Point3dArrayPolygonOps: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.Point3dArrayPolygonOps),
|
|
198031
|
-
/* harmony export */ Point3dArrayRangeTreeContext: () => (/* reexport safe */
|
|
198032
|
-
/* harmony export */ Point4d: () => (/* reexport safe */
|
|
198179
|
+
/* harmony export */ Point3dArrayRangeTreeContext: () => (/* reexport safe */ _polyface_RangeTree_Point3dArrayRangeTreeContext__WEBPACK_IMPORTED_MODULE_124__.Point3dArrayRangeTreeContext),
|
|
198180
|
+
/* harmony export */ Point4d: () => (/* reexport safe */ _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_48__.Point4d),
|
|
198033
198181
|
/* harmony export */ Point4dArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point4dArray),
|
|
198034
|
-
/* harmony export */ PointString3d: () => (/* reexport safe */
|
|
198035
|
-
/* harmony export */ Polyface: () => (/* reexport safe */
|
|
198036
|
-
/* harmony export */ PolyfaceAuxData: () => (/* reexport safe */
|
|
198037
|
-
/* harmony export */ PolyfaceBuilder: () => (/* reexport safe */
|
|
198038
|
-
/* harmony export */ PolyfaceClip: () => (/* reexport safe */
|
|
198039
|
-
/* harmony export */ PolyfaceData: () => (/* reexport safe */
|
|
198040
|
-
/* harmony export */ PolyfaceQuery: () => (/* reexport safe */
|
|
198041
|
-
/* harmony export */ PolyfaceRangeTreeContext: () => (/* reexport safe */
|
|
198042
|
-
/* harmony export */ PolygonLocation: () => (/* reexport safe */
|
|
198182
|
+
/* harmony export */ PointString3d: () => (/* reexport safe */ _curve_PointString3d__WEBPACK_IMPORTED_MODULE_81__.PointString3d),
|
|
198183
|
+
/* harmony export */ Polyface: () => (/* reexport safe */ _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__.Polyface),
|
|
198184
|
+
/* harmony export */ PolyfaceAuxData: () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.PolyfaceAuxData),
|
|
198185
|
+
/* harmony export */ PolyfaceBuilder: () => (/* reexport safe */ _polyface_PolyfaceBuilder__WEBPACK_IMPORTED_MODULE_120__.PolyfaceBuilder),
|
|
198186
|
+
/* harmony export */ PolyfaceClip: () => (/* reexport safe */ _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_123__.PolyfaceClip),
|
|
198187
|
+
/* harmony export */ PolyfaceData: () => (/* reexport safe */ _polyface_PolyfaceData__WEBPACK_IMPORTED_MODULE_121__.PolyfaceData),
|
|
198188
|
+
/* harmony export */ PolyfaceQuery: () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__.PolyfaceQuery),
|
|
198189
|
+
/* harmony export */ PolyfaceRangeTreeContext: () => (/* reexport safe */ _polyface_RangeTree_PolyfaceRangeTreeContext__WEBPACK_IMPORTED_MODULE_126__.PolyfaceRangeTreeContext),
|
|
198190
|
+
/* harmony export */ PolygonLocation: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.PolygonLocation),
|
|
198043
198191
|
/* harmony export */ PolygonLocationDetail: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonLocationDetail),
|
|
198044
198192
|
/* harmony export */ PolygonLocationDetailPair: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonLocationDetailPair),
|
|
198045
198193
|
/* harmony export */ PolygonOps: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonOps),
|
|
198046
198194
|
/* harmony export */ PolylineOps: () => (/* reexport safe */ _geometry3d_PolylineOps__WEBPACK_IMPORTED_MODULE_26__.PolylineOps),
|
|
198047
|
-
/* harmony export */ ProxyCurve: () => (/* reexport safe */
|
|
198048
|
-
/* harmony export */ Quadrature: () => (/* reexport safe */
|
|
198195
|
+
/* harmony export */ ProxyCurve: () => (/* reexport safe */ _curve_ProxyCurve__WEBPACK_IMPORTED_MODULE_82__.ProxyCurve),
|
|
198196
|
+
/* harmony export */ Quadrature: () => (/* reexport safe */ _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__.Quadrature),
|
|
198049
198197
|
/* harmony export */ Range1d: () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range1d),
|
|
198050
|
-
/* harmony export */ Range1dArray: () => (/* reexport safe */
|
|
198198
|
+
/* harmony export */ Range1dArray: () => (/* reexport safe */ _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__.Range1dArray),
|
|
198051
198199
|
/* harmony export */ Range2d: () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range2d),
|
|
198052
198200
|
/* harmony export */ Range3d: () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range3d),
|
|
198053
198201
|
/* harmony export */ RangeBase: () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.RangeBase),
|
|
198054
198202
|
/* harmony export */ Ray2d: () => (/* reexport safe */ _geometry3d_Ray2d__WEBPACK_IMPORTED_MODULE_29__.Ray2d),
|
|
198055
198203
|
/* harmony export */ Ray3d: () => (/* reexport safe */ _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_30__.Ray3d),
|
|
198056
198204
|
/* harmony export */ RecurseToCurvesGeometryHandler: () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.RecurseToCurvesGeometryHandler),
|
|
198057
|
-
/* harmony export */ RecursiveCurveProcessor: () => (/* reexport safe */
|
|
198058
|
-
/* harmony export */ RecursiveCurveProcessorWithStack: () => (/* reexport safe */
|
|
198059
|
-
/* harmony export */ RegionBinaryOpType: () => (/* reexport safe */
|
|
198060
|
-
/* harmony export */ RegionMomentsXY: () => (/* reexport safe */
|
|
198061
|
-
/* harmony export */ RegionOps: () => (/* reexport safe */
|
|
198062
|
-
/* harmony export */
|
|
198063
|
-
/* harmony export */
|
|
198064
|
-
/* harmony export */
|
|
198065
|
-
/* harmony export */
|
|
198066
|
-
/* harmony export */
|
|
198067
|
-
/* harmony export */
|
|
198205
|
+
/* harmony export */ RecursiveCurveProcessor: () => (/* reexport safe */ _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__.RecursiveCurveProcessor),
|
|
198206
|
+
/* harmony export */ RecursiveCurveProcessorWithStack: () => (/* reexport safe */ _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__.RecursiveCurveProcessorWithStack),
|
|
198207
|
+
/* harmony export */ RegionBinaryOpType: () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_80__.RegionBinaryOpType),
|
|
198208
|
+
/* harmony export */ RegionMomentsXY: () => (/* reexport safe */ _curve_RegionMomentsXY__WEBPACK_IMPORTED_MODULE_79__.RegionMomentsXY),
|
|
198209
|
+
/* harmony export */ RegionOps: () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_80__.RegionOps),
|
|
198210
|
+
/* harmony export */ ReusableObjectCache: () => (/* reexport safe */ _geometry3d_ReusableObjectCache__WEBPACK_IMPORTED_MODULE_31__.ReusableObjectCache),
|
|
198211
|
+
/* harmony export */ RotationalSweep: () => (/* reexport safe */ _solid_RotationalSweep__WEBPACK_IMPORTED_MODULE_92__.RotationalSweep),
|
|
198212
|
+
/* harmony export */ RuledSweep: () => (/* reexport safe */ _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_93__.RuledSweep),
|
|
198213
|
+
/* harmony export */ Sample: () => (/* reexport safe */ _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_131__.Sample),
|
|
198214
|
+
/* harmony export */ Segment1d: () => (/* reexport safe */ _geometry3d_Segment1d__WEBPACK_IMPORTED_MODULE_32__.Segment1d),
|
|
198215
|
+
/* harmony export */ SerializationHelpers: () => (/* reexport safe */ _serialization_SerializationHelpers__WEBPACK_IMPORTED_MODULE_132__.SerializationHelpers),
|
|
198216
|
+
/* harmony export */ SmallSystem: () => (/* reexport safe */ _numerics_SmallSystem__WEBPACK_IMPORTED_MODULE_58__.SmallSystem),
|
|
198068
198217
|
/* harmony export */ SmoothTransformBetweenFrusta: () => (/* reexport safe */ _geometry3d_FrustumAnimation__WEBPACK_IMPORTED_MODULE_7__.SmoothTransformBetweenFrusta),
|
|
198069
|
-
/* harmony export */ SolidPrimitive: () => (/* reexport safe */
|
|
198070
|
-
/* harmony export */ SortableEdge: () => (/* reexport safe */
|
|
198071
|
-
/* harmony export */ SpacePolygonTriangulation: () => (/* reexport safe */
|
|
198072
|
-
/* harmony export */ Sphere: () => (/* reexport safe */
|
|
198073
|
-
/* harmony export */ StandardViewIndex: () => (/* reexport safe */
|
|
198074
|
-
/* harmony export */ SteppedIndexFunctionFactory: () => (/* reexport safe */
|
|
198075
|
-
/* harmony export */ StringifiedClipVector: () => (/* reexport safe */
|
|
198076
|
-
/* harmony export */ StrokeCountMap: () => (/* reexport safe */
|
|
198077
|
-
/* harmony export */ StrokeOptions: () => (/* reexport safe */
|
|
198078
|
-
/* harmony export */ SweepContour: () => (/* reexport safe */
|
|
198079
|
-
/* harmony export */ SweepLineStringToFacetsOptions: () => (/* reexport safe */
|
|
198080
|
-
/* harmony export */ TaggedNumericConstants: () => (/* reexport safe */
|
|
198081
|
-
/* harmony export */ TaggedNumericData: () => (/* reexport safe */
|
|
198082
|
-
/* harmony export */ TorusPipe: () => (/* reexport safe */
|
|
198083
|
-
/* harmony export */ Transform: () => (/* reexport safe */
|
|
198084
|
-
/* harmony export */ TransitionSpiral3d: () => (/* reexport safe */
|
|
198085
|
-
/* harmony export */ TriDiagonalSystem: () => (/* reexport safe */
|
|
198218
|
+
/* harmony export */ SolidPrimitive: () => (/* reexport safe */ _solid_SolidPrimitive__WEBPACK_IMPORTED_MODULE_94__.SolidPrimitive),
|
|
198219
|
+
/* harmony export */ SortableEdge: () => (/* reexport safe */ _polyface_IndexedEdgeMatcher__WEBPACK_IMPORTED_MODULE_115__.SortableEdge),
|
|
198220
|
+
/* harmony export */ SpacePolygonTriangulation: () => (/* reexport safe */ _topology_SpaceTriangulation__WEBPACK_IMPORTED_MODULE_128__.SpacePolygonTriangulation),
|
|
198221
|
+
/* harmony export */ Sphere: () => (/* reexport safe */ _solid_Sphere__WEBPACK_IMPORTED_MODULE_95__.Sphere),
|
|
198222
|
+
/* harmony export */ StandardViewIndex: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.StandardViewIndex),
|
|
198223
|
+
/* harmony export */ SteppedIndexFunctionFactory: () => (/* reexport safe */ _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_131__.SteppedIndexFunctionFactory),
|
|
198224
|
+
/* harmony export */ StringifiedClipVector: () => (/* reexport safe */ _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_44__.StringifiedClipVector),
|
|
198225
|
+
/* harmony export */ StrokeCountMap: () => (/* reexport safe */ _curve_Query_StrokeCountMap__WEBPACK_IMPORTED_MODULE_88__.StrokeCountMap),
|
|
198226
|
+
/* harmony export */ StrokeOptions: () => (/* reexport safe */ _curve_StrokeOptions__WEBPACK_IMPORTED_MODULE_83__.StrokeOptions),
|
|
198227
|
+
/* harmony export */ SweepContour: () => (/* reexport safe */ _solid_SweepContour__WEBPACK_IMPORTED_MODULE_96__.SweepContour),
|
|
198228
|
+
/* harmony export */ SweepLineStringToFacetsOptions: () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__.SweepLineStringToFacetsOptions),
|
|
198229
|
+
/* harmony export */ TaggedNumericConstants: () => (/* reexport safe */ _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_127__.TaggedNumericConstants),
|
|
198230
|
+
/* harmony export */ TaggedNumericData: () => (/* reexport safe */ _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_127__.TaggedNumericData),
|
|
198231
|
+
/* harmony export */ TorusPipe: () => (/* reexport safe */ _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_97__.TorusPipe),
|
|
198232
|
+
/* harmony export */ Transform: () => (/* reexport safe */ _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_33__.Transform),
|
|
198233
|
+
/* harmony export */ TransitionSpiral3d: () => (/* reexport safe */ _curve_spiral_TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_84__.TransitionSpiral3d),
|
|
198234
|
+
/* harmony export */ TriDiagonalSystem: () => (/* reexport safe */ _numerics_TriDiagonalSystem__WEBPACK_IMPORTED_MODULE_59__.TriDiagonalSystem),
|
|
198086
198235
|
/* harmony export */ TriangleLocationDetail: () => (/* reexport safe */ _geometry3d_BarycentricTriangle__WEBPACK_IMPORTED_MODULE_3__.TriangleLocationDetail),
|
|
198087
|
-
/* harmony export */ TriangularFacetLocationDetail: () => (/* reexport safe */
|
|
198088
|
-
/* harmony export */ UVSelect: () => (/* reexport safe */
|
|
198089
|
-
/* harmony export */ UVSurfaceOps: () => (/* reexport safe */
|
|
198090
|
-
/* harmony export */ UnionOfConvexClipPlaneSets: () => (/* reexport safe */
|
|
198091
|
-
/* harmony export */ UnionRegion: () => (/* reexport safe */
|
|
198092
|
-
/* harmony export */ UnivariateBezier: () => (/* reexport safe */
|
|
198236
|
+
/* harmony export */ TriangularFacetLocationDetail: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.TriangularFacetLocationDetail),
|
|
198237
|
+
/* harmony export */ UVSelect: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.UVSelect),
|
|
198238
|
+
/* harmony export */ UVSurfaceOps: () => (/* reexport safe */ _geometry3d_UVSurfaceOps__WEBPACK_IMPORTED_MODULE_34__.UVSurfaceOps),
|
|
198239
|
+
/* harmony export */ UnionOfConvexClipPlaneSets: () => (/* reexport safe */ _clipping_UnionOfConvexClipPlaneSets__WEBPACK_IMPORTED_MODULE_42__.UnionOfConvexClipPlaneSets),
|
|
198240
|
+
/* harmony export */ UnionRegion: () => (/* reexport safe */ _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_87__.UnionRegion),
|
|
198241
|
+
/* harmony export */ UnivariateBezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.UnivariateBezier),
|
|
198093
198242
|
/* harmony export */ Vector2d: () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.Vector2d),
|
|
198094
198243
|
/* harmony export */ Vector3d: () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.Vector3d),
|
|
198095
198244
|
/* harmony export */ Vector3dArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Vector3dArray),
|
|
198096
|
-
/* harmony export */ WeightStyle: () => (/* reexport safe */
|
|
198245
|
+
/* harmony export */ WeightStyle: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.WeightStyle),
|
|
198097
198246
|
/* harmony export */ XY: () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.XY),
|
|
198098
|
-
/* harmony export */ XYAndZ: () => (/* reexport safe */
|
|
198247
|
+
/* harmony export */ XYAndZ: () => (/* reexport safe */ _geometry3d_XYZProps__WEBPACK_IMPORTED_MODULE_35__.XYAndZ),
|
|
198099
198248
|
/* harmony export */ XYZ: () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.XYZ),
|
|
198100
|
-
/* harmony export */ YawPitchRollAngles: () => (/* reexport safe */
|
|
198101
|
-
/* harmony export */ compareRange1dLexicalLowHigh: () => (/* reexport safe */
|
|
198249
|
+
/* harmony export */ YawPitchRollAngles: () => (/* reexport safe */ _geometry3d_YawPitchRollAngles__WEBPACK_IMPORTED_MODULE_36__.YawPitchRollAngles),
|
|
198250
|
+
/* harmony export */ compareRange1dLexicalLowHigh: () => (/* reexport safe */ _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__.compareRange1dLexicalLowHigh)
|
|
198102
198251
|
/* harmony export */ });
|
|
198103
198252
|
/* harmony import */ var _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./geometry3d/Angle */ "../../core/geometry/lib/esm/geometry3d/Angle.js");
|
|
198104
198253
|
/* harmony import */ var _geometry3d_AngleSweep__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./geometry3d/AngleSweep */ "../../core/geometry/lib/esm/geometry3d/AngleSweep.js");
|
|
@@ -198131,108 +198280,109 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
198131
198280
|
/* harmony import */ var _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./geometry3d/Range */ "../../core/geometry/lib/esm/geometry3d/Range.js");
|
|
198132
198281
|
/* harmony import */ var _geometry3d_Ray2d__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./geometry3d/Ray2d */ "../../core/geometry/lib/esm/geometry3d/Ray2d.js");
|
|
198133
198282
|
/* harmony import */ var _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./geometry3d/Ray3d */ "../../core/geometry/lib/esm/geometry3d/Ray3d.js");
|
|
198134
|
-
/* harmony import */ var
|
|
198135
|
-
/* harmony import */ var
|
|
198136
|
-
/* harmony import */ var
|
|
198137
|
-
/* harmony import */ var
|
|
198138
|
-
/* harmony import */ var
|
|
198139
|
-
/* harmony import */ var
|
|
198140
|
-
/* harmony import */ var
|
|
198141
|
-
/* harmony import */ var
|
|
198142
|
-
/* harmony import */ var
|
|
198143
|
-
/* harmony import */ var
|
|
198144
|
-
/* harmony import */ var
|
|
198145
|
-
/* harmony import */ var
|
|
198146
|
-
/* harmony import */ var
|
|
198147
|
-
/* harmony import */ var
|
|
198148
|
-
/* harmony import */ var
|
|
198149
|
-
/* harmony import */ var
|
|
198150
|
-
/* harmony import */ var
|
|
198151
|
-
/* harmony import */ var
|
|
198152
|
-
/* harmony import */ var
|
|
198153
|
-
/* harmony import */ var
|
|
198154
|
-
/* harmony import */ var
|
|
198155
|
-
/* harmony import */ var
|
|
198156
|
-
/* harmony import */ var
|
|
198157
|
-
/* harmony import */ var
|
|
198158
|
-
/* harmony import */ var
|
|
198159
|
-
/* harmony import */ var
|
|
198160
|
-
/* harmony import */ var
|
|
198161
|
-
/* harmony import */ var
|
|
198162
|
-
/* harmony import */ var
|
|
198163
|
-
/* harmony import */ var
|
|
198164
|
-
/* harmony import */ var
|
|
198165
|
-
/* harmony import */ var
|
|
198166
|
-
/* harmony import */ var
|
|
198167
|
-
/* harmony import */ var
|
|
198168
|
-
/* harmony import */ var
|
|
198169
|
-
/* harmony import */ var
|
|
198170
|
-
/* harmony import */ var
|
|
198171
|
-
/* harmony import */ var
|
|
198172
|
-
/* harmony import */ var
|
|
198173
|
-
/* harmony import */ var
|
|
198174
|
-
/* harmony import */ var
|
|
198175
|
-
/* harmony import */ var
|
|
198176
|
-
/* harmony import */ var
|
|
198177
|
-
/* harmony import */ var
|
|
198178
|
-
/* harmony import */ var
|
|
198179
|
-
/* harmony import */ var
|
|
198180
|
-
/* harmony import */ var
|
|
198181
|
-
/* harmony import */ var
|
|
198182
|
-
/* harmony import */ var
|
|
198183
|
-
/* harmony import */ var
|
|
198184
|
-
/* harmony import */ var
|
|
198185
|
-
/* harmony import */ var
|
|
198186
|
-
/* harmony import */ var
|
|
198187
|
-
/* harmony import */ var
|
|
198188
|
-
/* harmony import */ var
|
|
198189
|
-
/* harmony import */ var
|
|
198190
|
-
/* harmony import */ var
|
|
198191
|
-
/* harmony import */ var
|
|
198192
|
-
/* harmony import */ var
|
|
198193
|
-
/* harmony import */ var
|
|
198194
|
-
/* harmony import */ var
|
|
198195
|
-
/* harmony import */ var
|
|
198196
|
-
/* harmony import */ var
|
|
198197
|
-
/* harmony import */ var
|
|
198198
|
-
/* harmony import */ var
|
|
198199
|
-
/* harmony import */ var
|
|
198200
|
-
/* harmony import */ var
|
|
198201
|
-
/* harmony import */ var
|
|
198202
|
-
/* harmony import */ var
|
|
198203
|
-
/* harmony import */ var
|
|
198204
|
-
/* harmony import */ var
|
|
198205
|
-
/* harmony import */ var
|
|
198206
|
-
/* harmony import */ var
|
|
198207
|
-
/* harmony import */ var
|
|
198208
|
-
/* harmony import */ var
|
|
198209
|
-
/* harmony import */ var
|
|
198210
|
-
/* harmony import */ var
|
|
198211
|
-
/* harmony import */ var
|
|
198212
|
-
/* harmony import */ var
|
|
198213
|
-
/* harmony import */ var
|
|
198214
|
-
/* harmony import */ var
|
|
198215
|
-
/* harmony import */ var
|
|
198216
|
-
/* harmony import */ var
|
|
198217
|
-
/* harmony import */ var
|
|
198218
|
-
/* harmony import */ var
|
|
198219
|
-
/* harmony import */ var
|
|
198220
|
-
/* harmony import */ var
|
|
198221
|
-
/* harmony import */ var
|
|
198222
|
-
/* harmony import */ var
|
|
198223
|
-
/* harmony import */ var
|
|
198224
|
-
/* harmony import */ var
|
|
198225
|
-
/* harmony import */ var
|
|
198226
|
-
/* harmony import */ var
|
|
198227
|
-
/* harmony import */ var
|
|
198228
|
-
/* harmony import */ var
|
|
198229
|
-
/* harmony import */ var
|
|
198230
|
-
/* harmony import */ var
|
|
198231
|
-
/* harmony import */ var
|
|
198232
|
-
/* harmony import */ var
|
|
198233
|
-
/* harmony import */ var
|
|
198234
|
-
/* harmony import */ var
|
|
198235
|
-
/* harmony import */ var
|
|
198283
|
+
/* harmony import */ var _geometry3d_ReusableObjectCache__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./geometry3d/ReusableObjectCache */ "../../core/geometry/lib/esm/geometry3d/ReusableObjectCache.js");
|
|
198284
|
+
/* harmony import */ var _geometry3d_Segment1d__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./geometry3d/Segment1d */ "../../core/geometry/lib/esm/geometry3d/Segment1d.js");
|
|
198285
|
+
/* harmony import */ var _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./geometry3d/Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
198286
|
+
/* harmony import */ var _geometry3d_UVSurfaceOps__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./geometry3d/UVSurfaceOps */ "../../core/geometry/lib/esm/geometry3d/UVSurfaceOps.js");
|
|
198287
|
+
/* harmony import */ var _geometry3d_XYZProps__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./geometry3d/XYZProps */ "../../core/geometry/lib/esm/geometry3d/XYZProps.js");
|
|
198288
|
+
/* harmony import */ var _geometry3d_YawPitchRollAngles__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./geometry3d/YawPitchRollAngles */ "../../core/geometry/lib/esm/geometry3d/YawPitchRollAngles.js");
|
|
198289
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
198290
|
+
/* harmony import */ var _Constant__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./Constant */ "../../core/geometry/lib/esm/Constant.js");
|
|
198291
|
+
/* harmony import */ var _clipping_BooleanClipFactory__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./clipping/BooleanClipFactory */ "../../core/geometry/lib/esm/clipping/BooleanClipFactory.js");
|
|
198292
|
+
/* harmony import */ var _clipping_ClipPlane__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./clipping/ClipPlane */ "../../core/geometry/lib/esm/clipping/ClipPlane.js");
|
|
198293
|
+
/* harmony import */ var _clipping_ConvexClipPlaneSet__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./clipping/ConvexClipPlaneSet */ "../../core/geometry/lib/esm/clipping/ConvexClipPlaneSet.js");
|
|
198294
|
+
/* harmony import */ var _clipping_UnionOfConvexClipPlaneSets__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./clipping/UnionOfConvexClipPlaneSets */ "../../core/geometry/lib/esm/clipping/UnionOfConvexClipPlaneSets.js");
|
|
198295
|
+
/* harmony import */ var _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./clipping/ClipPrimitive */ "../../core/geometry/lib/esm/clipping/ClipPrimitive.js");
|
|
198296
|
+
/* harmony import */ var _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./clipping/ClipVector */ "../../core/geometry/lib/esm/clipping/ClipVector.js");
|
|
198297
|
+
/* harmony import */ var _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./clipping/ClipUtils */ "../../core/geometry/lib/esm/clipping/ClipUtils.js");
|
|
198298
|
+
/* harmony import */ var _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./numerics/ConvexPolygon2d */ "../../core/geometry/lib/esm/numerics/ConvexPolygon2d.js");
|
|
198299
|
+
/* harmony import */ var _geometry4d_PlaneByOriginAndVectors4d__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry4d/PlaneByOriginAndVectors4d */ "../../core/geometry/lib/esm/geometry4d/PlaneByOriginAndVectors4d.js");
|
|
198300
|
+
/* harmony import */ var _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry4d/Point4d */ "../../core/geometry/lib/esm/geometry4d/Point4d.js");
|
|
198301
|
+
/* harmony import */ var _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry4d/Matrix4d */ "../../core/geometry/lib/esm/geometry4d/Matrix4d.js");
|
|
198302
|
+
/* harmony import */ var _geometry4d_Map4d__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry4d/Map4d */ "../../core/geometry/lib/esm/geometry4d/Map4d.js");
|
|
198303
|
+
/* harmony import */ var _geometry4d_MomentData__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry4d/MomentData */ "../../core/geometry/lib/esm/geometry4d/MomentData.js");
|
|
198304
|
+
/* harmony import */ var _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./numerics/BezierPolynomials */ "../../core/geometry/lib/esm/numerics/BezierPolynomials.js");
|
|
198305
|
+
/* harmony import */ var _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./numerics/ClusterableArray */ "../../core/geometry/lib/esm/numerics/ClusterableArray.js");
|
|
198306
|
+
/* harmony import */ var _numerics_Complex__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./numerics/Complex */ "../../core/geometry/lib/esm/numerics/Complex.js");
|
|
198307
|
+
/* harmony import */ var _numerics_PascalCoefficients__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./numerics/PascalCoefficients */ "../../core/geometry/lib/esm/numerics/PascalCoefficients.js");
|
|
198308
|
+
/* harmony import */ var _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./numerics/Quadrature */ "../../core/geometry/lib/esm/numerics/Quadrature.js");
|
|
198309
|
+
/* harmony import */ var _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./numerics/Range1dArray */ "../../core/geometry/lib/esm/numerics/Range1dArray.js");
|
|
198310
|
+
/* harmony import */ var _numerics_SmallSystem__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./numerics/SmallSystem */ "../../core/geometry/lib/esm/numerics/SmallSystem.js");
|
|
198311
|
+
/* harmony import */ var _numerics_TriDiagonalSystem__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./numerics/TriDiagonalSystem */ "../../core/geometry/lib/esm/numerics/TriDiagonalSystem.js");
|
|
198312
|
+
/* harmony import */ var _curve_Arc3d__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./curve/Arc3d */ "../../core/geometry/lib/esm/curve/Arc3d.js");
|
|
198313
|
+
/* harmony import */ var _curve_ConstructCurveBetweenCurves__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./curve/ConstructCurveBetweenCurves */ "../../core/geometry/lib/esm/curve/ConstructCurveBetweenCurves.js");
|
|
198314
|
+
/* harmony import */ var _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./curve/CoordinateXYZ */ "../../core/geometry/lib/esm/curve/CoordinateXYZ.js");
|
|
198315
|
+
/* harmony import */ var _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./curve/CurveChainWithDistanceIndex */ "../../core/geometry/lib/esm/curve/CurveChainWithDistanceIndex.js");
|
|
198316
|
+
/* harmony import */ var _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./curve/CurveExtendMode */ "../../core/geometry/lib/esm/curve/CurveExtendMode.js");
|
|
198317
|
+
/* harmony import */ var _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./curve/CurveCollection */ "../../core/geometry/lib/esm/curve/CurveCollection.js");
|
|
198318
|
+
/* harmony import */ var _curve_CurveCurve__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./curve/CurveCurve */ "../../core/geometry/lib/esm/curve/CurveCurve.js");
|
|
198319
|
+
/* harmony import */ var _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./curve/CurveLocationDetail */ "../../core/geometry/lib/esm/curve/CurveLocationDetail.js");
|
|
198320
|
+
/* harmony import */ var _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./curve/CurveFactory */ "../../core/geometry/lib/esm/curve/CurveFactory.js");
|
|
198321
|
+
/* harmony import */ var _curve_CurveOps__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./curve/CurveOps */ "../../core/geometry/lib/esm/curve/CurveOps.js");
|
|
198322
|
+
/* harmony import */ var _curve_CurvePrimitive__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./curve/CurvePrimitive */ "../../core/geometry/lib/esm/curve/CurvePrimitive.js");
|
|
198323
|
+
/* harmony import */ var _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./curve/CurveProcessor */ "../../core/geometry/lib/esm/curve/CurveProcessor.js");
|
|
198324
|
+
/* harmony import */ var _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./curve/GeometryQuery */ "../../core/geometry/lib/esm/curve/GeometryQuery.js");
|
|
198325
|
+
/* harmony import */ var _curve_LineSegment3d__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./curve/LineSegment3d */ "../../core/geometry/lib/esm/curve/LineSegment3d.js");
|
|
198326
|
+
/* harmony import */ var _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./curve/LineString3d */ "../../core/geometry/lib/esm/curve/LineString3d.js");
|
|
198327
|
+
/* harmony import */ var _curve_Loop__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./curve/Loop */ "../../core/geometry/lib/esm/curve/Loop.js");
|
|
198328
|
+
/* harmony import */ var _curve_OffsetOptions__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./curve/OffsetOptions */ "../../core/geometry/lib/esm/curve/OffsetOptions.js");
|
|
198329
|
+
/* harmony import */ var _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./curve/ParityRegion */ "../../core/geometry/lib/esm/curve/ParityRegion.js");
|
|
198330
|
+
/* harmony import */ var _curve_Path__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./curve/Path */ "../../core/geometry/lib/esm/curve/Path.js");
|
|
198331
|
+
/* harmony import */ var _curve_RegionMomentsXY__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./curve/RegionMomentsXY */ "../../core/geometry/lib/esm/curve/RegionMomentsXY.js");
|
|
198332
|
+
/* harmony import */ var _curve_RegionOps__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./curve/RegionOps */ "../../core/geometry/lib/esm/curve/RegionOps.js");
|
|
198333
|
+
/* harmony import */ var _curve_PointString3d__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./curve/PointString3d */ "../../core/geometry/lib/esm/curve/PointString3d.js");
|
|
198334
|
+
/* harmony import */ var _curve_ProxyCurve__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./curve/ProxyCurve */ "../../core/geometry/lib/esm/curve/ProxyCurve.js");
|
|
198335
|
+
/* harmony import */ var _curve_StrokeOptions__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./curve/StrokeOptions */ "../../core/geometry/lib/esm/curve/StrokeOptions.js");
|
|
198336
|
+
/* harmony import */ var _curve_spiral_TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./curve/spiral/TransitionSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/TransitionSpiral3d.js");
|
|
198337
|
+
/* harmony import */ var _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./curve/spiral/IntegratedSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/IntegratedSpiral3d.js");
|
|
198338
|
+
/* harmony import */ var _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./curve/spiral/DirectSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/DirectSpiral3d.js");
|
|
198339
|
+
/* harmony import */ var _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./curve/UnionRegion */ "../../core/geometry/lib/esm/curve/UnionRegion.js");
|
|
198340
|
+
/* harmony import */ var _curve_Query_StrokeCountMap__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./curve/Query/StrokeCountMap */ "../../core/geometry/lib/esm/curve/Query/StrokeCountMap.js");
|
|
198341
|
+
/* harmony import */ var _solid_Box__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./solid/Box */ "../../core/geometry/lib/esm/solid/Box.js");
|
|
198342
|
+
/* harmony import */ var _solid_Cone__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./solid/Cone */ "../../core/geometry/lib/esm/solid/Cone.js");
|
|
198343
|
+
/* harmony import */ var _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./solid/LinearSweep */ "../../core/geometry/lib/esm/solid/LinearSweep.js");
|
|
198344
|
+
/* harmony import */ var _solid_RotationalSweep__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./solid/RotationalSweep */ "../../core/geometry/lib/esm/solid/RotationalSweep.js");
|
|
198345
|
+
/* harmony import */ var _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./solid/RuledSweep */ "../../core/geometry/lib/esm/solid/RuledSweep.js");
|
|
198346
|
+
/* harmony import */ var _solid_SolidPrimitive__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./solid/SolidPrimitive */ "../../core/geometry/lib/esm/solid/SolidPrimitive.js");
|
|
198347
|
+
/* harmony import */ var _solid_Sphere__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./solid/Sphere */ "../../core/geometry/lib/esm/solid/Sphere.js");
|
|
198348
|
+
/* harmony import */ var _solid_SweepContour__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./solid/SweepContour */ "../../core/geometry/lib/esm/solid/SweepContour.js");
|
|
198349
|
+
/* harmony import */ var _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./solid/TorusPipe */ "../../core/geometry/lib/esm/solid/TorusPipe.js");
|
|
198350
|
+
/* harmony import */ var _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./bspline/AkimaCurve3d */ "../../core/geometry/lib/esm/bspline/AkimaCurve3d.js");
|
|
198351
|
+
/* harmony import */ var _bspline_Bezier1dNd__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./bspline/Bezier1dNd */ "../../core/geometry/lib/esm/bspline/Bezier1dNd.js");
|
|
198352
|
+
/* harmony import */ var _bspline_BezierCurveBase__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./bspline/BezierCurveBase */ "../../core/geometry/lib/esm/bspline/BezierCurveBase.js");
|
|
198353
|
+
/* harmony import */ var _bspline_BezierCurve3d__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./bspline/BezierCurve3d */ "../../core/geometry/lib/esm/bspline/BezierCurve3d.js");
|
|
198354
|
+
/* harmony import */ var _bspline_BezierCurve3dH__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./bspline/BezierCurve3dH */ "../../core/geometry/lib/esm/bspline/BezierCurve3dH.js");
|
|
198355
|
+
/* harmony import */ var _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./bspline/BSplineCurve */ "../../core/geometry/lib/esm/bspline/BSplineCurve.js");
|
|
198356
|
+
/* harmony import */ var _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./bspline/BSplineCurveOps */ "../../core/geometry/lib/esm/bspline/BSplineCurveOps.js");
|
|
198357
|
+
/* harmony import */ var _bspline_BSpline1dNd__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./bspline/BSpline1dNd */ "../../core/geometry/lib/esm/bspline/BSpline1dNd.js");
|
|
198358
|
+
/* harmony import */ var _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./bspline/BSplineCurve3dH */ "../../core/geometry/lib/esm/bspline/BSplineCurve3dH.js");
|
|
198359
|
+
/* harmony import */ var _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./bspline/BSplineSurface */ "../../core/geometry/lib/esm/bspline/BSplineSurface.js");
|
|
198360
|
+
/* harmony import */ var _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./bspline/InterpolationCurve3d */ "../../core/geometry/lib/esm/bspline/InterpolationCurve3d.js");
|
|
198361
|
+
/* harmony import */ var _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./bspline/KnotVector */ "../../core/geometry/lib/esm/bspline/KnotVector.js");
|
|
198362
|
+
/* harmony import */ var _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./polyface/AuxData */ "../../core/geometry/lib/esm/polyface/AuxData.js");
|
|
198363
|
+
/* harmony import */ var _polyface_BoxTopology__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./polyface/BoxTopology */ "../../core/geometry/lib/esm/polyface/BoxTopology.js");
|
|
198364
|
+
/* harmony import */ var _polyface_FacetFaceData__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./polyface/FacetFaceData */ "../../core/geometry/lib/esm/polyface/FacetFaceData.js");
|
|
198365
|
+
/* harmony import */ var _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./polyface/Polyface */ "../../core/geometry/lib/esm/polyface/Polyface.js");
|
|
198366
|
+
/* harmony import */ var _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./polyface/FacetLocationDetail */ "../../core/geometry/lib/esm/polyface/FacetLocationDetail.js");
|
|
198367
|
+
/* harmony import */ var _polyface_IndexedEdgeMatcher__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./polyface/IndexedEdgeMatcher */ "../../core/geometry/lib/esm/polyface/IndexedEdgeMatcher.js");
|
|
198368
|
+
/* harmony import */ var _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./polyface/IndexedPolyfaceVisitor */ "../../core/geometry/lib/esm/polyface/IndexedPolyfaceVisitor.js");
|
|
198369
|
+
/* harmony import */ var _polyface_IndexedPolyfaceWalker__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./polyface/IndexedPolyfaceWalker */ "../../core/geometry/lib/esm/polyface/IndexedPolyfaceWalker.js");
|
|
198370
|
+
/* harmony import */ var _polyface_multiclip_GriddedRaggedRange2dSet__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./polyface/multiclip/GriddedRaggedRange2dSet */ "../../core/geometry/lib/esm/polyface/multiclip/GriddedRaggedRange2dSet.js");
|
|
198371
|
+
/* harmony import */ var _polyface_multiclip_GriddedRaggedRange2dSetWithOverflow__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./polyface/multiclip/GriddedRaggedRange2dSetWithOverflow */ "../../core/geometry/lib/esm/polyface/multiclip/GriddedRaggedRange2dSetWithOverflow.js");
|
|
198372
|
+
/* harmony import */ var _polyface_PolyfaceBuilder__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./polyface/PolyfaceBuilder */ "../../core/geometry/lib/esm/polyface/PolyfaceBuilder.js");
|
|
198373
|
+
/* harmony import */ var _polyface_PolyfaceData__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./polyface/PolyfaceData */ "../../core/geometry/lib/esm/polyface/PolyfaceData.js");
|
|
198374
|
+
/* harmony import */ var _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./polyface/PolyfaceQuery */ "../../core/geometry/lib/esm/polyface/PolyfaceQuery.js");
|
|
198375
|
+
/* harmony import */ var _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./polyface/PolyfaceClip */ "../../core/geometry/lib/esm/polyface/PolyfaceClip.js");
|
|
198376
|
+
/* harmony import */ var _polyface_RangeTree_Point3dArrayRangeTreeContext__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./polyface/RangeTree/Point3dArrayRangeTreeContext */ "../../core/geometry/lib/esm/polyface/RangeTree/Point3dArrayRangeTreeContext.js");
|
|
198377
|
+
/* harmony import */ var _polyface_RangeTree_LineString3dRangeTreeContext__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./polyface/RangeTree/LineString3dRangeTreeContext */ "../../core/geometry/lib/esm/polyface/RangeTree/LineString3dRangeTreeContext.js");
|
|
198378
|
+
/* harmony import */ var _polyface_RangeTree_PolyfaceRangeTreeContext__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./polyface/RangeTree/PolyfaceRangeTreeContext */ "../../core/geometry/lib/esm/polyface/RangeTree/PolyfaceRangeTreeContext.js");
|
|
198379
|
+
/* harmony import */ var _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./polyface/TaggedNumericData */ "../../core/geometry/lib/esm/polyface/TaggedNumericData.js");
|
|
198380
|
+
/* harmony import */ var _topology_SpaceTriangulation__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./topology/SpaceTriangulation */ "../../core/geometry/lib/esm/topology/SpaceTriangulation.js");
|
|
198381
|
+
/* harmony import */ var _serialization_IModelJsonSchema__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./serialization/IModelJsonSchema */ "../../core/geometry/lib/esm/serialization/IModelJsonSchema.js");
|
|
198382
|
+
/* harmony import */ var _serialization_DeepCompare__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./serialization/DeepCompare */ "../../core/geometry/lib/esm/serialization/DeepCompare.js");
|
|
198383
|
+
/* harmony import */ var _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./serialization/GeometrySamples */ "../../core/geometry/lib/esm/serialization/GeometrySamples.js");
|
|
198384
|
+
/* harmony import */ var _serialization_SerializationHelpers__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./serialization/SerializationHelpers */ "../../core/geometry/lib/esm/serialization/SerializationHelpers.js");
|
|
198385
|
+
/* harmony import */ var _serialization_BentleyGeometryFlatBuffer__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./serialization/BentleyGeometryFlatBuffer */ "../../core/geometry/lib/esm/serialization/BentleyGeometryFlatBuffer.js");
|
|
198236
198386
|
/*---------------------------------------------------------------------------------------------
|
|
198237
198387
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
198238
198388
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -198487,6 +198637,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
198487
198637
|
|
|
198488
198638
|
|
|
198489
198639
|
|
|
198640
|
+
|
|
198490
198641
|
|
|
198491
198642
|
|
|
198492
198643
|
/***/ }),
|
|
@@ -226069,7 +226220,7 @@ class GrowableXYZArray extends _IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_0_
|
|
|
226069
226220
|
* * Point3d
|
|
226070
226221
|
* * An array of 2 doubles
|
|
226071
226222
|
* * An array of 3 doubles
|
|
226072
|
-
* *
|
|
226223
|
+
* * An IndexedXYZCollection
|
|
226073
226224
|
* * Any json object satisfying Point3d.isXYAndZ
|
|
226074
226225
|
* * Any json object satisfying Point3d.isXAndY
|
|
226075
226226
|
* * A Float64Array of doubles, interpreted as xyzxyz
|
|
@@ -240326,61 +240477,60 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
240326
240477
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
240327
240478
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
240328
240479
|
*--------------------------------------------------------------------------------------------*/
|
|
240329
|
-
|
|
240330
240480
|
/** @packageDocumentation
|
|
240331
240481
|
* @module ArraysAndInterfaces
|
|
240332
240482
|
*/
|
|
240483
|
+
|
|
240333
240484
|
/**
|
|
240334
|
-
*
|
|
240335
|
-
* * Derived class must implement
|
|
240336
|
-
*
|
|
240337
|
-
* * `clearForCache (data: T)` -- tidy up `data` so it can be reused.
|
|
240338
|
-
* @internal
|
|
240485
|
+
* Abstract class managing an array of objects of type T, available for reuse by trusted callers.
|
|
240486
|
+
* * Derived class must implement `createForCache` and `clearForCache`.
|
|
240487
|
+
* @public
|
|
240339
240488
|
*/
|
|
240340
240489
|
class ReusableObjectCache {
|
|
240341
240490
|
_cachedObjects;
|
|
240342
|
-
|
|
240343
|
-
|
|
240344
|
-
|
|
240491
|
+
_numDrop;
|
|
240492
|
+
_numCreate;
|
|
240493
|
+
_numReuse;
|
|
240345
240494
|
/**
|
|
240346
|
-
*
|
|
240495
|
+
* Create a new cache for objects of type T.
|
|
240347
240496
|
*/
|
|
240348
240497
|
constructor() {
|
|
240349
240498
|
this._cachedObjects = [];
|
|
240350
|
-
this.
|
|
240351
|
-
this.
|
|
240352
|
-
this.
|
|
240499
|
+
this._numDrop = 0;
|
|
240500
|
+
this._numCreate = 0;
|
|
240501
|
+
this._numReuse = 0;
|
|
240353
240502
|
}
|
|
240354
|
-
/**
|
|
240355
|
-
*
|
|
240356
|
-
*
|
|
240503
|
+
/**
|
|
240504
|
+
* Present `data` for storage in the cache, and hence reuse by any subsequent [[grabFromCache]].
|
|
240505
|
+
* * `data` will be sent to [[clearForCache]].
|
|
240506
|
+
* * The caller should never refer to `data` again.
|
|
240507
|
+
* @param data object to return to the cache.
|
|
240357
240508
|
*/
|
|
240358
240509
|
dropToCache(data) {
|
|
240359
240510
|
if (data) {
|
|
240360
|
-
this.
|
|
240511
|
+
this._numDrop++;
|
|
240361
240512
|
this.clearForCache(data);
|
|
240362
240513
|
this._cachedObjects.push(data);
|
|
240363
240514
|
}
|
|
240364
240515
|
}
|
|
240365
240516
|
/**
|
|
240366
|
-
*
|
|
240367
|
-
*
|
|
240368
|
-
* * That is, the cache does not remember it for any further management
|
|
240369
|
-
* @param data
|
|
240517
|
+
* Grab an object from the cache.
|
|
240518
|
+
* * The returned object becomes property of the caller: the cache does not remember it for any further management.
|
|
240370
240519
|
*/
|
|
240371
240520
|
grabFromCache() {
|
|
240372
240521
|
let data = this._cachedObjects.pop();
|
|
240373
240522
|
if (data === undefined) {
|
|
240374
240523
|
data = this.createForCache();
|
|
240375
|
-
this.
|
|
240524
|
+
this._numCreate++;
|
|
240376
240525
|
}
|
|
240377
240526
|
else {
|
|
240378
|
-
this.
|
|
240527
|
+
this._numReuse++;
|
|
240379
240528
|
}
|
|
240380
240529
|
return data;
|
|
240381
240530
|
}
|
|
240382
|
-
/**
|
|
240383
|
-
*
|
|
240531
|
+
/**
|
|
240532
|
+
* Drop multiple objects to the cache.
|
|
240533
|
+
* @param data on input, the data to drop. On output, data is an empty array.
|
|
240384
240534
|
*/
|
|
240385
240535
|
dropAllToCache(data) {
|
|
240386
240536
|
while (data.length > 0) {
|
|
@@ -240389,17 +240539,32 @@ class ReusableObjectCache {
|
|
|
240389
240539
|
}
|
|
240390
240540
|
}
|
|
240391
240541
|
/**
|
|
240392
|
-
* Cache of GrowableXYZArray.
|
|
240393
|
-
*
|
|
240394
|
-
* @
|
|
240542
|
+
* Cache of [[GrowableXYZArray]].
|
|
240543
|
+
* * Example usage includes clipping methods that can be structured to have disciplined reuse of a small number of arrays for a large number of steps.
|
|
240544
|
+
* @public
|
|
240395
240545
|
*/
|
|
240396
240546
|
class GrowableXYZArrayCache extends ReusableObjectCache {
|
|
240397
|
-
clearForCache(data) { data.length = 0; }
|
|
240398
|
-
createForCache() { return new _GrowableXYZArray__WEBPACK_IMPORTED_MODULE_0__.GrowableXYZArray(10); }
|
|
240399
|
-
constructor() { super(); }
|
|
240400
240547
|
/**
|
|
240401
|
-
*
|
|
240402
|
-
|
|
240548
|
+
* Create a new cache for [[GrowableXYZArray]] objects.
|
|
240549
|
+
*/
|
|
240550
|
+
constructor() {
|
|
240551
|
+
super();
|
|
240552
|
+
}
|
|
240553
|
+
/**
|
|
240554
|
+
* Create a new, ready-to-use [[GrowableXYZArray]].
|
|
240555
|
+
* @param numPoints initial capacity in xyz triples (default 10)
|
|
240556
|
+
* @param growthFactor reallocation expansion (default 1.5)
|
|
240557
|
+
*/
|
|
240558
|
+
createForCache(numPoints = 10, growthFactor = 1.5) {
|
|
240559
|
+
return new _GrowableXYZArray__WEBPACK_IMPORTED_MODULE_0__.GrowableXYZArray(numPoints, growthFactor);
|
|
240560
|
+
}
|
|
240561
|
+
/** Tidy up `data` so it can be reused. */
|
|
240562
|
+
clearForCache(data) {
|
|
240563
|
+
data.length = 0;
|
|
240564
|
+
}
|
|
240565
|
+
/**
|
|
240566
|
+
* Grab an array from the cache and immediately fill from a source.
|
|
240567
|
+
* @param source xyz to copy into the returned array.
|
|
240403
240568
|
*/
|
|
240404
240569
|
grabAndFill(source) {
|
|
240405
240570
|
const dest = this.grabFromCache();
|
|
@@ -318120,7 +318285,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
318120
318285
|
/***/ ((module) => {
|
|
318121
318286
|
|
|
318122
318287
|
"use strict";
|
|
318123
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.1.0-dev.
|
|
318288
|
+
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.1.0-dev.69","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs && npm run -s build:esm && npm run -s webpackWorkers && npm run -s copy:workers","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2022 --outDir lib/esm","clean":"rimraf -g lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","copy:workers":"cpx \\"./lib/workers/webpack/parse-imdl-worker.js\\" ./lib/public/scripts","docs":"betools docs --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-inline-config -c extraction.eslint.config.js \\"./src/**/*.ts\\" 1>&2","lint":"eslint \\"./src/**/*.ts\\" 1>&2","lint-fix":"eslint --fix -f visualstudio \\"./src/**/*.ts\\" 1>&2","lint-deprecation":"eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \\"./src/**/*.ts\\"","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run webpackTestWorker && vitest --run","cover":"npm run webpackTestWorker && vitest --run","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2 && npm run -s webpackTestWorker","webpackTestWorker":"webpack --config ./src/test/worker/webpack.config.js 1>&2 && cpx \\"./lib/test/test-worker.js\\" ./lib/test","webpackWorkers":"webpack --config ./src/workers/ImdlParser/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*"},"//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/ecschema-metadata":"workspace:*","@itwin/ecschema-rpcinterface-common":"workspace:*","@itwin/eslint-plugin":"5.2.2-dev.2","@types/chai-as-promised":"^7","@types/sinon":"^17.0.2","@vitest/browser":"^3.0.6","@vitest/coverage-v8":"^3.0.6","cpx2":"^8.0.0","eslint":"^9.31.0","glob":"^10.3.12","playwright":"~1.47.1","rimraf":"^6.0.1","sinon":"^17.0.2","source-map-loader":"^5.0.0","typescript":"~5.6.2","typemoq":"^2.1.0","vitest":"^3.0.6","vite-multiple-assets":"^1.3.1","vite-plugin-static-copy":"2.2.0","webpack":"^5.97.1"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/cloud-agnostic-core":"^2.2.4","@itwin/object-storage-core":"^2.3.0","@itwin/core-i18n":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","fuse.js":"^3.3.0","wms-capabilities":"0.4.0"}}');
|
|
318124
318289
|
|
|
318125
318290
|
/***/ })
|
|
318126
318291
|
|