@itwin/rpcinterface-full-stack-tests 5.1.0-dev.65 → 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 +557 -392
- package/lib/dist/bundled-tests.js.map +1 -1
- package/package.json +14 -14
|
@@ -74760,6 +74760,15 @@ class Helmert2DWithZOffset {
|
|
|
74760
74760
|
Math.abs(this.rotDeg - other.rotDeg) < _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallAngleDegrees &&
|
|
74761
74761
|
Math.abs(this.scale - other.scale) < _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.smallFraction);
|
|
74762
74762
|
}
|
|
74763
|
+
/** Convert Helmert2DWithZOffset object into Transfrom object
|
|
74764
|
+
* @public */
|
|
74765
|
+
convertHelmertToTransform() {
|
|
74766
|
+
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));
|
|
74767
|
+
rotationXY.scaleColumnsInPlace(this.scale, this.scale, 1.0);
|
|
74768
|
+
const translation = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Vector3d.create(this.translationX, this.translationY, this.translationZ);
|
|
74769
|
+
const helmertTransform = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Transform.createRefs(translation, rotationXY);
|
|
74770
|
+
return helmertTransform;
|
|
74771
|
+
}
|
|
74763
74772
|
}
|
|
74764
74773
|
/** Additional Transform implementation.
|
|
74765
74774
|
* An additional transform is a transformation that can apply to either the horizontal or vertical coordinates of a
|
|
@@ -84104,7 +84113,8 @@ class MeshEdge {
|
|
|
84104
84113
|
class MeshEdges {
|
|
84105
84114
|
visible = [];
|
|
84106
84115
|
silhouette = [];
|
|
84107
|
-
|
|
84116
|
+
appearance;
|
|
84117
|
+
polylineGroups = [];
|
|
84108
84118
|
silhouetteNormals = [];
|
|
84109
84119
|
constructor() { }
|
|
84110
84120
|
}
|
|
@@ -84139,15 +84149,17 @@ class SilhouetteEdgeArgs extends EdgeArgs {
|
|
|
84139
84149
|
}
|
|
84140
84150
|
/** @internal */
|
|
84141
84151
|
class PolylineEdgeArgs {
|
|
84142
|
-
|
|
84143
|
-
constructor(
|
|
84144
|
-
|
|
84145
|
-
|
|
84152
|
+
groups;
|
|
84153
|
+
constructor(groups) {
|
|
84154
|
+
this.init(groups);
|
|
84155
|
+
}
|
|
84156
|
+
init(groups) {
|
|
84157
|
+
this.groups = groups?.filter((group) => group.polylines.length > 0);
|
|
84146
84158
|
return this.isValid;
|
|
84147
84159
|
}
|
|
84148
|
-
get
|
|
84149
|
-
get isValid() { return this.
|
|
84150
|
-
clear() { this.
|
|
84160
|
+
get numGroups() { return this.groups?.length ?? 0; }
|
|
84161
|
+
get isValid() { return this.numGroups > 0; }
|
|
84162
|
+
clear() { this.groups = undefined; }
|
|
84151
84163
|
}
|
|
84152
84164
|
|
|
84153
84165
|
|
|
@@ -132860,6 +132872,7 @@ function isGltf1Material(material) {
|
|
|
132860
132872
|
"use strict";
|
|
132861
132873
|
__webpack_require__.r(__webpack_exports__);
|
|
132862
132874
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
132875
|
+
/* harmony export */ compactEdgeIterator: () => (/* binding */ compactEdgeIterator),
|
|
132863
132876
|
/* harmony export */ indexedEdgeParamsFromCompactEdges: () => (/* binding */ indexedEdgeParamsFromCompactEdges)
|
|
132864
132877
|
/* harmony export */ });
|
|
132865
132878
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
@@ -132879,23 +132892,25 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
132879
132892
|
|
|
132880
132893
|
/** Iterate over the compact edges.
|
|
132881
132894
|
* @note The same object is returned on each iteration, mutated in place.
|
|
132895
|
+
* @internal
|
|
132882
132896
|
*/
|
|
132883
|
-
function* compactEdgeIterator(visibilityFlags,
|
|
132897
|
+
function* compactEdgeIterator(visibilityFlags, normalPairs, numIndices, decodeIndex) {
|
|
132884
132898
|
let bitIndex = 0;
|
|
132885
132899
|
let flagsIndex = 0;
|
|
132886
132900
|
let normalIndex = 0;
|
|
132887
132901
|
const output = { index0: 0, index1: 1 };
|
|
132888
|
-
for (let i = 0; i <
|
|
132902
|
+
for (let i = 0; i < numIndices; i++) {
|
|
132889
132903
|
const visibility = (visibilityFlags[flagsIndex] >> bitIndex) & 3;
|
|
132890
132904
|
bitIndex += 2;
|
|
132891
132905
|
if (bitIndex === 8) {
|
|
132892
132906
|
bitIndex = 0;
|
|
132893
132907
|
flagsIndex++;
|
|
132894
132908
|
}
|
|
132895
|
-
if (_ImdlSchema__WEBPACK_IMPORTED_MODULE_1__.ImdlEdgeVisibility.Hidden === visibility)
|
|
132909
|
+
if (_ImdlSchema__WEBPACK_IMPORTED_MODULE_1__.ImdlEdgeVisibility.Hidden === visibility || _ImdlSchema__WEBPACK_IMPORTED_MODULE_1__.ImdlEdgeVisibility.VisibleDuplicate === visibility) {
|
|
132896
132910
|
continue;
|
|
132897
|
-
|
|
132898
|
-
output.
|
|
132911
|
+
}
|
|
132912
|
+
output.index0 = decodeIndex(i);
|
|
132913
|
+
output.index1 = decodeIndex(i % 3 === 2 ? i - 2 : i + 1);
|
|
132899
132914
|
if (_ImdlSchema__WEBPACK_IMPORTED_MODULE_1__.ImdlEdgeVisibility.Silhouette === visibility) {
|
|
132900
132915
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== normalPairs);
|
|
132901
132916
|
output.normals = normalPairs[normalIndex++];
|
|
@@ -132928,7 +132943,7 @@ function indexedEdgeParamsFromCompactEdges(compact) {
|
|
|
132928
132943
|
const edgeTable = new Uint8Array(width * height * 4);
|
|
132929
132944
|
let curVisibleIndex = 0;
|
|
132930
132945
|
let curSilhouetteIndex = 0;
|
|
132931
|
-
for (const edge of compactEdgeIterator(compact.visibility, compact.vertexIndices, compact.
|
|
132946
|
+
for (const edge of compactEdgeIterator(compact.visibility, compact.normalPairs, compact.vertexIndices.length, (vertIdx) => compact.vertexIndices.decodeIndex(vertIdx))) {
|
|
132932
132947
|
if (undefined === edge.normals) {
|
|
132933
132948
|
const index = curVisibleIndex++;
|
|
132934
132949
|
const byteIndex = index * 6;
|
|
@@ -133086,6 +133101,10 @@ var ImdlEdgeVisibility;
|
|
|
133086
133101
|
ImdlEdgeVisibility[ImdlEdgeVisibility["Silhouette"] = 1] = "Silhouette";
|
|
133087
133102
|
/** The edge is always visible. */
|
|
133088
133103
|
ImdlEdgeVisibility[ImdlEdgeVisibility["Visible"] = 2] = "Visible";
|
|
133104
|
+
/** Used only by EXT_mesh_primitive_edge_visibility to indicate a repeated edge previously encoded as `Visible`.
|
|
133105
|
+
iMdl simply marks these redundant edges as `Hidden`.
|
|
133106
|
+
*/
|
|
133107
|
+
ImdlEdgeVisibility[ImdlEdgeVisibility["VisibleDuplicate"] = 3] = "VisibleDuplicate";
|
|
133089
133108
|
})(ImdlEdgeVisibility || (ImdlEdgeVisibility = {}));
|
|
133090
133109
|
|
|
133091
133110
|
|
|
@@ -133287,11 +133306,13 @@ function edgeParamsFromImdl(imdl) {
|
|
|
133287
133306
|
...imdl.silhouettes,
|
|
133288
133307
|
indices: new _internal_render_VertexIndices__WEBPACK_IMPORTED_MODULE_9__.VertexIndices(imdl.silhouettes.indices),
|
|
133289
133308
|
} : undefined,
|
|
133290
|
-
|
|
133291
|
-
|
|
133292
|
-
|
|
133293
|
-
|
|
133294
|
-
|
|
133309
|
+
polylineGroups: imdl.polylines ? [{
|
|
133310
|
+
polyline: {
|
|
133311
|
+
...imdl.polylines,
|
|
133312
|
+
indices: new _internal_render_VertexIndices__WEBPACK_IMPORTED_MODULE_9__.VertexIndices(imdl.polylines.indices),
|
|
133313
|
+
prevIndices: new _internal_render_VertexIndices__WEBPACK_IMPORTED_MODULE_9__.VertexIndices(imdl.polylines.prevIndices),
|
|
133314
|
+
},
|
|
133315
|
+
}] : undefined,
|
|
133295
133316
|
indexed: imdl.indexed ? {
|
|
133296
133317
|
indices: new _internal_render_VertexIndices__WEBPACK_IMPORTED_MODULE_9__.VertexIndices(imdl.indexed.indices),
|
|
133297
133318
|
edges: imdl.indexed.edges,
|
|
@@ -133310,10 +133331,10 @@ function edgeParamsToImdl(params) {
|
|
|
133310
133331
|
...params.silhouettes,
|
|
133311
133332
|
indices: params.silhouettes.indices.data,
|
|
133312
133333
|
} : undefined,
|
|
133313
|
-
polylines: params.
|
|
133314
|
-
...params.
|
|
133315
|
-
indices: params.
|
|
133316
|
-
prevIndices: params.
|
|
133334
|
+
polylines: params.polylineGroups?.length === 1 ? {
|
|
133335
|
+
...params.polylineGroups[0].polyline,
|
|
133336
|
+
indices: params.polylineGroups[0].polyline.indices.data,
|
|
133337
|
+
prevIndices: params.polylineGroups[0].polyline.prevIndices.data,
|
|
133317
133338
|
} : undefined,
|
|
133318
133339
|
indexed: params.indexed ? {
|
|
133319
133340
|
indices: params.indexed.indices.data,
|
|
@@ -135048,10 +135069,9 @@ function convertSilhouettes(edges, normalPairs) {
|
|
|
135048
135069
|
normalPairs: normalPairBytes,
|
|
135049
135070
|
};
|
|
135050
135071
|
}
|
|
135051
|
-
function buildIndexedEdges(args,
|
|
135072
|
+
function buildIndexedEdges(args, polylines, maxSize) {
|
|
135052
135073
|
const hardEdges = args.edges?.edges;
|
|
135053
135074
|
const silhouettes = args.silhouettes;
|
|
135054
|
-
const polylines = doPolylines ? args.polylines?.lines : undefined;
|
|
135055
135075
|
const numHardEdges = hardEdges?.length ?? 0;
|
|
135056
135076
|
const numSilhouettes = silhouettes?.edges?.length ?? 0;
|
|
135057
135077
|
const numPolylines = polylines ? polylines.reduce((count, pd) => count + Math.max(0, pd.length - 1), 0) : 0;
|
|
@@ -135119,6 +135139,11 @@ function buildIndexedEdges(args, doPolylines, maxSize) {
|
|
|
135119
135139
|
numSegments: numSegmentEdges,
|
|
135120
135140
|
silhouettePadding,
|
|
135121
135141
|
},
|
|
135142
|
+
appearance: {
|
|
135143
|
+
width: args.width,
|
|
135144
|
+
linePixels: args.linePixels,
|
|
135145
|
+
color: args.color,
|
|
135146
|
+
}
|
|
135122
135147
|
};
|
|
135123
135148
|
}
|
|
135124
135149
|
/** @internal */
|
|
@@ -135127,26 +135152,44 @@ function createEdgeParams(args) {
|
|
|
135127
135152
|
const edgeArgs = meshArgs.edges;
|
|
135128
135153
|
if (!edgeArgs)
|
|
135129
135154
|
return undefined;
|
|
135130
|
-
|
|
135131
|
-
const
|
|
135155
|
+
// If we've got a single polyline edge group and we don't need to round its corners, convert it to segment edges.
|
|
135156
|
+
const polylinesToProcess = 1 === edgeArgs.polylines.groups?.length
|
|
135157
|
+
&& undefined === edgeArgs.polylines.groups[0].appearance
|
|
135158
|
+
&& !(0,_PolylineParams__WEBPACK_IMPORTED_MODULE_1__.wantJointTriangles)(edgeArgs.width, true === meshArgs.is2d)
|
|
135159
|
+
? edgeArgs.polylines.groups[0].polylines.map((x) => x.indices) : undefined;
|
|
135132
135160
|
let segments;
|
|
135133
135161
|
let silhouettes;
|
|
135134
135162
|
let indexed;
|
|
135135
135163
|
if (createIndexed) {
|
|
135136
|
-
indexed = buildIndexedEdges(edgeArgs,
|
|
135164
|
+
indexed = buildIndexedEdges(edgeArgs, polylinesToProcess, maxWidth);
|
|
135137
135165
|
}
|
|
135138
135166
|
else {
|
|
135139
|
-
segments = convertPolylinesAndEdges(
|
|
135167
|
+
segments = convertPolylinesAndEdges(polylinesToProcess, edgeArgs.edges.edges);
|
|
135140
135168
|
silhouettes = edgeArgs.silhouettes.edges && edgeArgs.silhouettes.normals ? convertSilhouettes(edgeArgs.silhouettes.edges, edgeArgs.silhouettes.normals) : undefined;
|
|
135141
135169
|
}
|
|
135142
|
-
|
|
135170
|
+
let polylineGroups;
|
|
135171
|
+
if (!polylinesToProcess && edgeArgs.polylines.groups) {
|
|
135172
|
+
for (const group of edgeArgs.polylines.groups) {
|
|
135173
|
+
const polyline = (0,_PolylineParams__WEBPACK_IMPORTED_MODULE_1__.tesselatePolylineList)({
|
|
135174
|
+
points: args.meshArgs.points,
|
|
135175
|
+
polylines: group.polylines,
|
|
135176
|
+
width: group.appearance?.width ?? edgeArgs.width,
|
|
135177
|
+
is2d: true === args.meshArgs.is2d,
|
|
135178
|
+
});
|
|
135179
|
+
if (!polylineGroups) {
|
|
135180
|
+
polylineGroups = [];
|
|
135181
|
+
}
|
|
135182
|
+
polylineGroups.push({ polyline, appearance: group.appearance });
|
|
135183
|
+
}
|
|
135184
|
+
}
|
|
135185
|
+
if (!segments && !silhouettes && !polylineGroups && !indexed)
|
|
135143
135186
|
return undefined;
|
|
135144
135187
|
return {
|
|
135145
135188
|
weight: edgeArgs.width,
|
|
135146
135189
|
linePixels: edgeArgs.linePixels,
|
|
135147
135190
|
segments,
|
|
135148
135191
|
silhouettes,
|
|
135149
|
-
|
|
135192
|
+
polylineGroups,
|
|
135150
135193
|
indexed,
|
|
135151
135194
|
};
|
|
135152
135195
|
}
|
|
@@ -136811,6 +136854,7 @@ class MeshArgsEdges {
|
|
|
136811
136854
|
polylines = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.PolylineEdgeArgs();
|
|
136812
136855
|
width = 0;
|
|
136813
136856
|
linePixels = _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.LinePixels.Solid;
|
|
136857
|
+
color;
|
|
136814
136858
|
clear() {
|
|
136815
136859
|
this.edges.clear();
|
|
136816
136860
|
this.silhouettes.clear();
|
|
@@ -136832,15 +136876,12 @@ function createMeshArgs(mesh) {
|
|
|
136832
136876
|
let edges;
|
|
136833
136877
|
if (mesh.edges) {
|
|
136834
136878
|
edges = new MeshArgsEdges();
|
|
136835
|
-
edges.width = mesh.displayParams.width;
|
|
136836
|
-
edges.linePixels = mesh.displayParams.linePixels;
|
|
136879
|
+
edges.width = mesh.edges.appearance?.width ?? mesh.displayParams.width;
|
|
136880
|
+
edges.linePixels = mesh.edges.appearance?.linePixels ?? mesh.displayParams.linePixels;
|
|
136837
136881
|
edges.edges.init(mesh.edges);
|
|
136838
136882
|
edges.silhouettes.init(mesh.edges);
|
|
136839
|
-
|
|
136840
|
-
|
|
136841
|
-
if (meshPolyline.indices.length > 0)
|
|
136842
|
-
polylines.push(meshPolyline.indices);
|
|
136843
|
-
edges.polylines.init(polylines);
|
|
136883
|
+
edges.color = mesh.edges.appearance?.color;
|
|
136884
|
+
edges.polylines.init(mesh.edges.polylineGroups);
|
|
136844
136885
|
}
|
|
136845
136886
|
return {
|
|
136846
136887
|
vertIndices: mesh.triangles.indices,
|
|
@@ -137168,7 +137209,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
137168
137209
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
137169
137210
|
/* harmony export */ createPolylineParams: () => (/* binding */ createPolylineParams),
|
|
137170
137211
|
/* harmony export */ tesselatePolyline: () => (/* binding */ tesselatePolyline),
|
|
137171
|
-
/* harmony export */
|
|
137212
|
+
/* harmony export */ tesselatePolylineList: () => (/* binding */ tesselatePolylineList),
|
|
137172
137213
|
/* harmony export */ wantJointTriangles: () => (/* binding */ wantJointTriangles)
|
|
137173
137214
|
/* harmony export */ });
|
|
137174
137215
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
@@ -137188,10 +137229,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
137188
137229
|
|
|
137189
137230
|
|
|
137190
137231
|
|
|
137191
|
-
|
|
137192
|
-
|
|
137193
|
-
|
|
137194
|
-
return tesselator?.tesselate();
|
|
137232
|
+
function tesselatePolylineList(args) {
|
|
137233
|
+
const tesselator = PolylineTesselator.create(args);
|
|
137234
|
+
return tesselator.tesselate();
|
|
137195
137235
|
}
|
|
137196
137236
|
class PolylineVertex {
|
|
137197
137237
|
isSegmentStart = false;
|
|
@@ -137248,10 +137288,8 @@ class PolylineTesselator {
|
|
|
137248
137288
|
static fromPolyline(args) {
|
|
137249
137289
|
return new PolylineTesselator(args.polylines, args.points, wantJointTriangles(args.width, !!args.flags.is2d));
|
|
137250
137290
|
}
|
|
137251
|
-
static
|
|
137252
|
-
|
|
137253
|
-
return new PolylineTesselator(args.edges.polylines.lines, args.points, wantJointTriangles(args.edges.width, true === args.is2d));
|
|
137254
|
-
return undefined;
|
|
137291
|
+
static create(args) {
|
|
137292
|
+
return new PolylineTesselator(args.polylines.map((x) => x.indices), args.points, wantJointTriangles(args.width, args.is2d));
|
|
137255
137293
|
}
|
|
137256
137294
|
tesselate() {
|
|
137257
137295
|
this._tesselate();
|
|
@@ -138856,8 +138894,8 @@ function splitEdges(source, nodes, maxDimension) {
|
|
|
138856
138894
|
const edges = new Map();
|
|
138857
138895
|
remapSegmentEdges("segments", source, nodes, edges);
|
|
138858
138896
|
remapSegmentEdges("silhouettes", source, nodes, edges);
|
|
138859
|
-
if (source.
|
|
138860
|
-
remapPolylineEdges(source.
|
|
138897
|
+
if (source.polylineGroups?.length === 1)
|
|
138898
|
+
remapPolylineEdges(source.polylineGroups[0].polyline, nodes, edges);
|
|
138861
138899
|
if (source.indexed)
|
|
138862
138900
|
remapIndexedEdges(source.indexed, nodes, edges);
|
|
138863
138901
|
const result = new Map();
|
|
@@ -138899,11 +138937,13 @@ function splitEdges(source, nodes, maxDimension) {
|
|
|
138899
138937
|
endPointAndQuadIndices: remappedEdges.silhouettes.endPointAndQuadIndices.toUint8Array(),
|
|
138900
138938
|
normalPairs: remappedEdges.silhouettes.normalPairs.toUint8Array(),
|
|
138901
138939
|
} : undefined,
|
|
138902
|
-
|
|
138903
|
-
|
|
138904
|
-
|
|
138905
|
-
|
|
138906
|
-
|
|
138940
|
+
polylineGroups: remappedEdges.polylines ? [{
|
|
138941
|
+
polyline: {
|
|
138942
|
+
indices: remappedEdges.polylines.indices.toVertexIndices(),
|
|
138943
|
+
prevIndices: remappedEdges.polylines.prevIndices.toVertexIndices(),
|
|
138944
|
+
nextIndicesAndParams: remappedEdges.polylines.nextIndicesAndParams.toUint8Array(),
|
|
138945
|
+
},
|
|
138946
|
+
}] : undefined,
|
|
138907
138947
|
indexed: remappedEdges.indexed ? {
|
|
138908
138948
|
indices: edgeIndices,
|
|
138909
138949
|
edges: edgeTable,
|
|
@@ -147243,10 +147283,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
147243
147283
|
/* harmony import */ var _render_RenderMemory__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../render/RenderMemory */ "../../core/frontend/lib/esm/render/RenderMemory.js");
|
|
147244
147284
|
/* harmony import */ var _AttributeMap__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AttributeMap */ "../../core/frontend/lib/esm/internal/render/webgl/AttributeMap.js");
|
|
147245
147285
|
/* harmony import */ var _CachedGeometry__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./CachedGeometry */ "../../core/frontend/lib/esm/internal/render/webgl/CachedGeometry.js");
|
|
147246
|
-
/* harmony import */ var
|
|
147247
|
-
/* harmony import */ var
|
|
147248
|
-
/* harmony import */ var
|
|
147249
|
-
/* harmony import */ var
|
|
147286
|
+
/* harmony import */ var _ColorInfo__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ColorInfo */ "../../core/frontend/lib/esm/internal/render/webgl/ColorInfo.js");
|
|
147287
|
+
/* harmony import */ var _GL__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./GL */ "../../core/frontend/lib/esm/internal/render/webgl/GL.js");
|
|
147288
|
+
/* harmony import */ var _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./AttributeBuffers */ "../../core/frontend/lib/esm/internal/render/webgl/AttributeBuffers.js");
|
|
147289
|
+
/* harmony import */ var _System__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./System */ "../../core/frontend/lib/esm/internal/render/webgl/System.js");
|
|
147290
|
+
/* harmony import */ var _MeshGeometry__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./MeshGeometry */ "../../core/frontend/lib/esm/internal/render/webgl/MeshGeometry.js");
|
|
147291
|
+
/* 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");
|
|
147250
147292
|
/*---------------------------------------------------------------------------------------------
|
|
147251
147293
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
147252
147294
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -147263,8 +147305,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
147263
147305
|
|
|
147264
147306
|
|
|
147265
147307
|
|
|
147308
|
+
|
|
147309
|
+
|
|
147266
147310
|
/** @internal */
|
|
147267
|
-
class EdgeGeometry extends
|
|
147311
|
+
class EdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_9__.MeshGeometry {
|
|
147268
147312
|
buffers;
|
|
147269
147313
|
_indices;
|
|
147270
147314
|
_endPointAndQuadIndices;
|
|
@@ -147273,8 +147317,8 @@ class EdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_8__.MeshGeomet
|
|
|
147273
147317
|
get asEdge() { return this; }
|
|
147274
147318
|
get asSilhouette() { return undefined; }
|
|
147275
147319
|
static create(mesh, edges) {
|
|
147276
|
-
const indexBuffer =
|
|
147277
|
-
const endPointBuffer =
|
|
147320
|
+
const indexBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(edges.indices.data);
|
|
147321
|
+
const endPointBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(edges.endPointAndQuadIndices);
|
|
147278
147322
|
return undefined !== indexBuffer && undefined !== endPointBuffer ? new EdgeGeometry(indexBuffer, endPointBuffer, edges.indices.length, mesh) : undefined;
|
|
147279
147323
|
}
|
|
147280
147324
|
get isDisposed() {
|
|
@@ -147293,7 +147337,7 @@ class EdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_8__.MeshGeomet
|
|
|
147293
147337
|
_draw(numInstances, instanceBuffersContainer) {
|
|
147294
147338
|
const bufs = instanceBuffersContainer !== undefined ? instanceBuffersContainer : this.buffers;
|
|
147295
147339
|
bufs.bind();
|
|
147296
|
-
|
|
147340
|
+
_System__WEBPACK_IMPORTED_MODULE_8__.System.instance.drawArrays(_GL__WEBPACK_IMPORTED_MODULE_6__.GL.PrimitiveType.Triangles, 0, this._numIndices, numInstances);
|
|
147297
147341
|
bufs.unbind();
|
|
147298
147342
|
}
|
|
147299
147343
|
_wantWoWReversal(_target) { return true; }
|
|
@@ -147308,13 +147352,13 @@ class EdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_8__.MeshGeomet
|
|
|
147308
147352
|
}
|
|
147309
147353
|
constructor(indices, endPointAndQuadsIndices, numIndices, mesh) {
|
|
147310
147354
|
super(mesh, numIndices);
|
|
147311
|
-
this.buffers =
|
|
147355
|
+
this.buffers = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BuffersContainer.create();
|
|
147312
147356
|
const attrPos = _AttributeMap__WEBPACK_IMPORTED_MODULE_3__.AttributeMap.findAttribute("a_pos", 4 /* TechniqueId.Edge */, false);
|
|
147313
147357
|
const attrEndPointAndQuadIndices = _AttributeMap__WEBPACK_IMPORTED_MODULE_3__.AttributeMap.findAttribute("a_endPointAndQuadIndices", 4 /* TechniqueId.Edge */, false);
|
|
147314
147358
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(attrPos !== undefined);
|
|
147315
147359
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(attrEndPointAndQuadIndices !== undefined);
|
|
147316
|
-
this.buffers.addBuffer(indices, [
|
|
147317
|
-
this.buffers.addBuffer(endPointAndQuadsIndices, [
|
|
147360
|
+
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)]);
|
|
147361
|
+
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)]);
|
|
147318
147362
|
this._indices = indices;
|
|
147319
147363
|
this._endPointAndQuadIndices = endPointAndQuadsIndices;
|
|
147320
147364
|
}
|
|
@@ -147324,9 +147368,9 @@ class SilhouetteEdgeGeometry extends EdgeGeometry {
|
|
|
147324
147368
|
_normalPairs;
|
|
147325
147369
|
get asSilhouette() { return this; }
|
|
147326
147370
|
static createSilhouettes(mesh, params) {
|
|
147327
|
-
const indexBuffer =
|
|
147328
|
-
const endPointBuffer =
|
|
147329
|
-
const normalsBuffer =
|
|
147371
|
+
const indexBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(params.indices.data);
|
|
147372
|
+
const endPointBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(params.endPointAndQuadIndices);
|
|
147373
|
+
const normalsBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_7__.BufferHandle.createArrayBuffer(params.normalPairs);
|
|
147330
147374
|
return undefined !== indexBuffer && undefined !== endPointBuffer && undefined !== normalsBuffer ? new SilhouetteEdgeGeometry(indexBuffer, endPointBuffer, normalsBuffer, params.indices.length, mesh) : undefined;
|
|
147331
147375
|
}
|
|
147332
147376
|
get isDisposed() { return super.isDisposed && this._normalPairs.isDisposed; }
|
|
@@ -147344,17 +147388,20 @@ class SilhouetteEdgeGeometry extends EdgeGeometry {
|
|
|
147344
147388
|
super(indices, endPointAndQuadsIndices, numIndices, mesh);
|
|
147345
147389
|
const attrNormals = _AttributeMap__WEBPACK_IMPORTED_MODULE_3__.AttributeMap.findAttribute("a_normals", 5 /* TechniqueId.SilhouetteEdge */, false);
|
|
147346
147390
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(attrNormals !== undefined);
|
|
147347
|
-
this.buffers.addBuffer(normalPairs, [
|
|
147391
|
+
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)]);
|
|
147348
147392
|
this._normalPairs = normalPairs;
|
|
147349
147393
|
}
|
|
147350
147394
|
}
|
|
147351
147395
|
/** @internal */
|
|
147352
|
-
class PolylineEdgeGeometry extends
|
|
147396
|
+
class PolylineEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_9__.MeshGeometry {
|
|
147353
147397
|
_buffers;
|
|
147398
|
+
_colorInfo;
|
|
147399
|
+
_width;
|
|
147400
|
+
_lineCode;
|
|
147354
147401
|
get lutBuffers() { return this._buffers.buffers; }
|
|
147355
|
-
static create(mesh,
|
|
147356
|
-
const buffers = _CachedGeometry__WEBPACK_IMPORTED_MODULE_4__.PolylineBuffers.create(polyline);
|
|
147357
|
-
return undefined !== buffers ? new PolylineEdgeGeometry(polyline.indices.length, buffers, mesh) : undefined;
|
|
147402
|
+
static create(mesh, group) {
|
|
147403
|
+
const buffers = _CachedGeometry__WEBPACK_IMPORTED_MODULE_4__.PolylineBuffers.create(group.polyline);
|
|
147404
|
+
return undefined !== buffers ? new PolylineEdgeGeometry(group.polyline.indices.length, buffers, mesh, group.appearance) : undefined;
|
|
147358
147405
|
}
|
|
147359
147406
|
get isDisposed() { return this._buffers.isDisposed; }
|
|
147360
147407
|
[Symbol.dispose]() {
|
|
@@ -147364,26 +147411,35 @@ class PolylineEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_8__.Me
|
|
|
147364
147411
|
this._buffers.collectStatistics(stats, _render_RenderMemory__WEBPACK_IMPORTED_MODULE_2__.RenderMemory.BufferType.PolylineEdges);
|
|
147365
147412
|
}
|
|
147366
147413
|
_wantWoWReversal(_target) { return true; }
|
|
147367
|
-
_getLineWeight(params) { return this.computeEdgeWeight(params); }
|
|
147368
|
-
_getLineCode(params) { return this.computeEdgeLineCode(params); }
|
|
147369
|
-
getColor(target) { return this.computeEdgeColor(target); }
|
|
147370
147414
|
get techniqueId() { return 1 /* TechniqueId.Polyline */; }
|
|
147371
147415
|
getPass(target) { return this.computeEdgePass(target); }
|
|
147372
147416
|
get renderOrder() { return this.isPlanar ? 14 /* RenderOrder.PlanarEdge */ : 6 /* RenderOrder.Edge */; }
|
|
147373
147417
|
get polylineBuffers() { return this._buffers; }
|
|
147418
|
+
_getLineCode(params) {
|
|
147419
|
+
return params.target.computeEdgeLineCode(params.renderPass, this._lineCode);
|
|
147420
|
+
}
|
|
147421
|
+
_getLineWeight(params) {
|
|
147422
|
+
return params.target.computeEdgeWeight(params.renderPass, this._width);
|
|
147423
|
+
}
|
|
147424
|
+
getColor(target) {
|
|
147425
|
+
return target.computeEdgeColor(this._colorInfo);
|
|
147426
|
+
}
|
|
147374
147427
|
wantMonochrome(target) {
|
|
147375
147428
|
return target.currentViewFlags.renderMode === _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RenderMode.Wireframe;
|
|
147376
147429
|
}
|
|
147377
147430
|
_draw(numInstances, instanceBuffersContainer) {
|
|
147378
|
-
const gl =
|
|
147431
|
+
const gl = _System__WEBPACK_IMPORTED_MODULE_8__.System.instance;
|
|
147379
147432
|
const bufs = instanceBuffersContainer !== undefined ? instanceBuffersContainer : this._buffers.buffers;
|
|
147380
147433
|
bufs.bind();
|
|
147381
|
-
gl.drawArrays(
|
|
147434
|
+
gl.drawArrays(_GL__WEBPACK_IMPORTED_MODULE_6__.GL.PrimitiveType.Triangles, 0, this._numIndices, numInstances);
|
|
147382
147435
|
bufs.unbind();
|
|
147383
147436
|
}
|
|
147384
|
-
constructor(numIndices, buffers, mesh) {
|
|
147437
|
+
constructor(numIndices, buffers, mesh, appearance) {
|
|
147385
147438
|
super(mesh, numIndices);
|
|
147386
147439
|
this._buffers = buffers;
|
|
147440
|
+
this._colorInfo = appearance?.color ? _ColorInfo__WEBPACK_IMPORTED_MODULE_5__.ColorInfo.createFromColorDef(appearance.color) : mesh.lut.colorInfo;
|
|
147441
|
+
this._width = appearance?.width ?? mesh.edgeWidth;
|
|
147442
|
+
this._lineCode = appearance?.linePixels ? (0,_common_internal_render_LineCode__WEBPACK_IMPORTED_MODULE_10__.lineCodeFromLinePixels)(appearance?.linePixels) : mesh.edgeLineCode;
|
|
147387
147443
|
}
|
|
147388
147444
|
}
|
|
147389
147445
|
|
|
@@ -149630,6 +149686,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
149630
149686
|
/* harmony import */ var _AttributeMap__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./AttributeMap */ "../../core/frontend/lib/esm/internal/render/webgl/AttributeMap.js");
|
|
149631
149687
|
/* harmony import */ var _GL__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./GL */ "../../core/frontend/lib/esm/internal/render/webgl/GL.js");
|
|
149632
149688
|
/* harmony import */ var _System__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./System */ "../../core/frontend/lib/esm/internal/render/webgl/System.js");
|
|
149689
|
+
/* harmony import */ var _ColorInfo__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./ColorInfo */ "../../core/frontend/lib/esm/internal/render/webgl/ColorInfo.js");
|
|
149690
|
+
/* 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");
|
|
149633
149691
|
/*---------------------------------------------------------------------------------------------
|
|
149634
149692
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
149635
149693
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -149645,6 +149703,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
149645
149703
|
|
|
149646
149704
|
|
|
149647
149705
|
|
|
149706
|
+
|
|
149707
|
+
|
|
149648
149708
|
/** @see [[EdgeTable]]
|
|
149649
149709
|
* @internal
|
|
149650
149710
|
*/
|
|
@@ -149677,10 +149737,13 @@ class EdgeLUT {
|
|
|
149677
149737
|
class IndexedEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_4__.MeshGeometry {
|
|
149678
149738
|
_buffers;
|
|
149679
149739
|
_indices;
|
|
149740
|
+
_colorInfo;
|
|
149741
|
+
_width;
|
|
149742
|
+
_lineCode;
|
|
149680
149743
|
edgeLut;
|
|
149681
149744
|
get lutBuffers() { return this._buffers; }
|
|
149682
149745
|
get asIndexedEdge() { return this; }
|
|
149683
|
-
constructor(mesh, indices, numIndices, lut) {
|
|
149746
|
+
constructor(mesh, indices, numIndices, lut, appearance) {
|
|
149684
149747
|
super(mesh, numIndices);
|
|
149685
149748
|
this.edgeLut = lut;
|
|
149686
149749
|
this._buffers = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_3__.BuffersContainer.create();
|
|
@@ -149688,6 +149751,9 @@ class IndexedEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_4__.Mes
|
|
|
149688
149751
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(undefined !== attrPos);
|
|
149689
149752
|
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)]);
|
|
149690
149753
|
this._indices = indices;
|
|
149754
|
+
this._colorInfo = appearance?.color ? _ColorInfo__WEBPACK_IMPORTED_MODULE_8__.ColorInfo.createFromColorDef(appearance.color) : mesh.lut.colorInfo;
|
|
149755
|
+
this._width = appearance?.width ?? mesh.edgeWidth;
|
|
149756
|
+
this._lineCode = appearance?.linePixels ? (0,_common_internal_render_LineCode__WEBPACK_IMPORTED_MODULE_9__.lineCodeFromLinePixels)(appearance?.linePixels) : mesh.edgeLineCode;
|
|
149691
149757
|
}
|
|
149692
149758
|
[Symbol.dispose]() {
|
|
149693
149759
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this._buffers);
|
|
@@ -149700,7 +149766,7 @@ class IndexedEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_4__.Mes
|
|
|
149700
149766
|
static create(mesh, params) {
|
|
149701
149767
|
const indexBuffer = _AttributeBuffers__WEBPACK_IMPORTED_MODULE_3__.BufferHandle.createArrayBuffer(params.indices.data);
|
|
149702
149768
|
const lut = EdgeLUT.create(params.edges);
|
|
149703
|
-
return indexBuffer && lut ? new IndexedEdgeGeometry(mesh, indexBuffer, params.indices.length, lut) : undefined;
|
|
149769
|
+
return indexBuffer && lut ? new IndexedEdgeGeometry(mesh, indexBuffer, params.indices.length, lut, params.appearance) : undefined;
|
|
149704
149770
|
}
|
|
149705
149771
|
collectStatistics(stats) {
|
|
149706
149772
|
stats.addIndexedEdges(this._indices.bytesUsed);
|
|
@@ -149713,11 +149779,18 @@ class IndexedEdgeGeometry extends _MeshGeometry__WEBPACK_IMPORTED_MODULE_4__.Mes
|
|
|
149713
149779
|
bufs.unbind();
|
|
149714
149780
|
}
|
|
149715
149781
|
_wantWoWReversal() { return true; }
|
|
149716
|
-
_getLineCode(params) {
|
|
149782
|
+
_getLineCode(params) {
|
|
149783
|
+
return params.target.computeEdgeLineCode(params.renderPass, this._lineCode);
|
|
149784
|
+
}
|
|
149785
|
+
_getLineWeight(params) {
|
|
149786
|
+
return params.target.computeEdgeWeight(params.renderPass, this._width);
|
|
149787
|
+
}
|
|
149788
|
+
getColor(target) {
|
|
149789
|
+
return target.computeEdgeColor(this._colorInfo);
|
|
149790
|
+
}
|
|
149717
149791
|
get techniqueId() { return 6 /* TechniqueId.IndexedEdge */; }
|
|
149718
149792
|
getPass(target) { return this.computeEdgePass(target); }
|
|
149719
149793
|
get renderOrder() { return this.isPlanar ? 14 /* RenderOrder.PlanarEdge */ : 6 /* RenderOrder.Edge */; }
|
|
149720
|
-
getColor(target) { return this.computeEdgeColor(target); }
|
|
149721
149794
|
wantMonochrome(target) { return target.currentViewFlags.renderMode === _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__.RenderMode.Wireframe; }
|
|
149722
149795
|
}
|
|
149723
149796
|
|
|
@@ -151346,8 +151419,15 @@ class MeshRenderGeometry {
|
|
|
151346
151419
|
this.silhouetteEdges = _EdgeGeometry__WEBPACK_IMPORTED_MODULE_4__.SilhouetteEdgeGeometry.createSilhouettes(data, edges.silhouettes);
|
|
151347
151420
|
if (edges.segments)
|
|
151348
151421
|
this.segmentEdges = _EdgeGeometry__WEBPACK_IMPORTED_MODULE_4__.EdgeGeometry.create(data, edges.segments);
|
|
151349
|
-
if (edges.
|
|
151350
|
-
this.polylineEdges =
|
|
151422
|
+
if (edges.polylineGroups) {
|
|
151423
|
+
this.polylineEdges = [];
|
|
151424
|
+
for (const group of edges.polylineGroups) {
|
|
151425
|
+
const polyline = _EdgeGeometry__WEBPACK_IMPORTED_MODULE_4__.PolylineEdgeGeometry.create(data, group);
|
|
151426
|
+
if (polyline) {
|
|
151427
|
+
this.polylineEdges.push(polyline);
|
|
151428
|
+
}
|
|
151429
|
+
}
|
|
151430
|
+
}
|
|
151351
151431
|
if (edges.indexed)
|
|
151352
151432
|
this.indexedEdges = _IndexedEdgeGeometry__WEBPACK_IMPORTED_MODULE_5__.IndexedEdgeGeometry.create(data, edges.indexed);
|
|
151353
151433
|
}
|
|
@@ -151363,7 +151443,7 @@ class MeshRenderGeometry {
|
|
|
151363
151443
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this.surface);
|
|
151364
151444
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this.segmentEdges);
|
|
151365
151445
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this.silhouetteEdges);
|
|
151366
|
-
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.
|
|
151446
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.disposeArray)(this.polylineEdges);
|
|
151367
151447
|
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.dispose)(this.indexedEdges);
|
|
151368
151448
|
}
|
|
151369
151449
|
get isDisposed() {
|
|
@@ -151371,7 +151451,7 @@ class MeshRenderGeometry {
|
|
|
151371
151451
|
(!this.surface || this.surface.isDisposed) &&
|
|
151372
151452
|
(!this.segmentEdges || this.segmentEdges.isDisposed) &&
|
|
151373
151453
|
(!this.silhouetteEdges || this.silhouetteEdges.isDisposed) &&
|
|
151374
|
-
(!this.polylineEdges || this.polylineEdges.isDisposed) &&
|
|
151454
|
+
(!this.polylineEdges || this.polylineEdges.every((x) => x.isDisposed)) &&
|
|
151375
151455
|
(!this.indexedEdges || this.indexedEdges.isDisposed);
|
|
151376
151456
|
}
|
|
151377
151457
|
collectStatistics(stats) {
|
|
@@ -151379,7 +151459,7 @@ class MeshRenderGeometry {
|
|
|
151379
151459
|
this.surface?.collectStatistics(stats);
|
|
151380
151460
|
this.segmentEdges?.collectStatistics(stats);
|
|
151381
151461
|
this.silhouetteEdges?.collectStatistics(stats);
|
|
151382
|
-
this.polylineEdges?.collectStatistics(stats);
|
|
151462
|
+
this.polylineEdges?.forEach((x) => x.collectStatistics(stats));
|
|
151383
151463
|
this.indexedEdges?.collectStatistics(stats);
|
|
151384
151464
|
}
|
|
151385
151465
|
computeRange(out) {
|
|
@@ -151412,8 +151492,8 @@ class MeshGraphic extends _Graphic__WEBPACK_IMPORTED_MODULE_2__.Graphic {
|
|
|
151412
151492
|
this.addPrimitive(geometry.surface);
|
|
151413
151493
|
this.addPrimitive(geometry.segmentEdges);
|
|
151414
151494
|
this.addPrimitive(geometry.silhouetteEdges);
|
|
151415
|
-
this.addPrimitive(geometry.polylineEdges);
|
|
151416
151495
|
this.addPrimitive(geometry.indexedEdges);
|
|
151496
|
+
geometry.polylineEdges?.forEach((x) => this.addPrimitive(x));
|
|
151417
151497
|
}
|
|
151418
151498
|
get isDisposed() { return this.meshData.isDisposed && 0 === this._primitives.length; }
|
|
151419
151499
|
get isPickable() { return false; }
|
|
@@ -184894,7 +184974,6 @@ class QuantityFormatter {
|
|
|
184894
184974
|
requestedSystem = isImperial ? "imperial" : "metric";
|
|
184895
184975
|
return this.getParserSpecByQuantityTypeAndSystem(type, requestedSystem);
|
|
184896
184976
|
}
|
|
184897
|
-
// eslint-disable-next-line @typescript-eslint/promise-function-async
|
|
184898
184977
|
formatQuantity(args, spec) {
|
|
184899
184978
|
if (typeof args === "number") {
|
|
184900
184979
|
/** Format a quantity value. Default FormatterSpec implementation uses Formatter.formatQuantity. */
|
|
@@ -184917,7 +184996,6 @@ class QuantityFormatter {
|
|
|
184917
184996
|
});
|
|
184918
184997
|
return formatSpec.applyFormatting(value);
|
|
184919
184998
|
}
|
|
184920
|
-
// eslint-disable-next-line @typescript-eslint/promise-function-async
|
|
184921
184999
|
parseToQuantityValue(args, parserSpec) {
|
|
184922
185000
|
if (typeof args === "string") {
|
|
184923
185001
|
/** Parse a quantity value. Default ParserSpec implementation uses ParserSpec.parseToQuantityValue. */
|
|
@@ -188178,6 +188256,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
188178
188256
|
/* 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");
|
|
188179
188257
|
/* harmony import */ var _common_gltf_GltfSchema__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ../common/gltf/GltfSchema */ "../../core/frontend/lib/esm/common/gltf/GltfSchema.js");
|
|
188180
188258
|
/* harmony import */ var _internal_render_GraphicTemplateImpl__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ../internal/render/GraphicTemplateImpl */ "../../core/frontend/lib/esm/internal/render/GraphicTemplateImpl.js");
|
|
188259
|
+
/* harmony import */ var _common_imdl_CompactEdges__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ../common/imdl/CompactEdges */ "../../core/frontend/lib/esm/common/imdl/CompactEdges.js");
|
|
188181
188260
|
/*---------------------------------------------------------------------------------------------
|
|
188182
188261
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
188183
188262
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -188199,6 +188278,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
188199
188278
|
|
|
188200
188279
|
|
|
188201
188280
|
|
|
188281
|
+
|
|
188202
188282
|
/**
|
|
188203
188283
|
* A chunk of binary data exposed as a typed array.
|
|
188204
188284
|
* The count member indicates how many elements exist. This may be less than this.buffer.length due to padding added to the
|
|
@@ -189262,8 +189342,75 @@ class GltfReader {
|
|
|
189262
189342
|
mesh.primitive.edges.visible.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdge(data.buffer[i++], data.buffer[i++]));
|
|
189263
189343
|
}
|
|
189264
189344
|
}
|
|
189345
|
+
else if (primitive.extensions?.EXT_mesh_primitive_edge_visibility) {
|
|
189346
|
+
const ext = primitive.extensions.EXT_mesh_primitive_edge_visibility;
|
|
189347
|
+
const visibility = this.readBufferData8(ext, "visibility");
|
|
189348
|
+
if (visibility) {
|
|
189349
|
+
const indices = mesh.indices;
|
|
189350
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(indices !== undefined);
|
|
189351
|
+
(0,_itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__.assert)(visibility.buffer instanceof Uint8Array);
|
|
189352
|
+
const silhouetteNormals = this.readBufferData16(ext, "silhouetteNormals");
|
|
189353
|
+
const normalPairs = silhouetteNormals ? new Uint32Array(silhouetteNormals.buffer.buffer, silhouetteNormals.buffer.byteOffset, silhouetteNormals.buffer.byteLength / 4) : undefined;
|
|
189354
|
+
mesh.primitive.edges = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdges();
|
|
189355
|
+
for (const edge of (0,_common_imdl_CompactEdges__WEBPACK_IMPORTED_MODULE_14__.compactEdgeIterator)(visibility.buffer, normalPairs, indices.length, (idx) => indices[idx])) {
|
|
189356
|
+
if (undefined === edge.normals) {
|
|
189357
|
+
mesh.primitive.edges.visible.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdge(edge.index0, edge.index1));
|
|
189358
|
+
}
|
|
189359
|
+
else {
|
|
189360
|
+
mesh.primitive.edges.silhouette.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdge(edge.index0, edge.index1));
|
|
189361
|
+
const normal0 = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.OctEncodedNormal(edge.normals & 0x0000ffff);
|
|
189362
|
+
const normal1 = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.OctEncodedNormal(edge.normals >>> 16);
|
|
189363
|
+
mesh.primitive.edges.silhouetteNormals.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.OctEncodedNormalPair(normal0, normal1));
|
|
189364
|
+
}
|
|
189365
|
+
}
|
|
189366
|
+
}
|
|
189367
|
+
const lineStrings = ext.lineStrings;
|
|
189368
|
+
if (lineStrings) {
|
|
189369
|
+
for (const extLineString of lineStrings) {
|
|
189370
|
+
const polylineIndices = this.readBufferData32(extLineString, "indices");
|
|
189371
|
+
if (polylineIndices) {
|
|
189372
|
+
if (!mesh.primitive.edges) {
|
|
189373
|
+
mesh.primitive.edges = new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshEdges();
|
|
189374
|
+
}
|
|
189375
|
+
const curGroup = {
|
|
189376
|
+
appearance: this.getEdgeAppearance(extLineString.material),
|
|
189377
|
+
polylines: [],
|
|
189378
|
+
};
|
|
189379
|
+
const curLineString = [];
|
|
189380
|
+
for (const index of polylineIndices.buffer) {
|
|
189381
|
+
if (index === 0xffffffff) {
|
|
189382
|
+
if (curLineString.length > 1) {
|
|
189383
|
+
curGroup.polylines.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshPolyline(curLineString));
|
|
189384
|
+
}
|
|
189385
|
+
curLineString.length = 0;
|
|
189386
|
+
}
|
|
189387
|
+
else {
|
|
189388
|
+
curLineString.push(index);
|
|
189389
|
+
}
|
|
189390
|
+
}
|
|
189391
|
+
if (curLineString.length > 1) {
|
|
189392
|
+
curGroup.polylines.push(new _itwin_core_common__WEBPACK_IMPORTED_MODULE_2__.MeshPolyline(curLineString));
|
|
189393
|
+
}
|
|
189394
|
+
if (curGroup.polylines.length > 0) {
|
|
189395
|
+
mesh.primitive.edges.polylineGroups.push(curGroup);
|
|
189396
|
+
}
|
|
189397
|
+
}
|
|
189398
|
+
}
|
|
189399
|
+
}
|
|
189400
|
+
if (mesh.primitive.edges) {
|
|
189401
|
+
mesh.primitive.edges.appearance = this.getEdgeAppearance(ext.material);
|
|
189402
|
+
}
|
|
189403
|
+
}
|
|
189265
189404
|
return mesh;
|
|
189266
189405
|
}
|
|
189406
|
+
getEdgeAppearance(materialId) {
|
|
189407
|
+
const material = undefined !== materialId ? this._materials[materialId] : undefined;
|
|
189408
|
+
const displayParams = material ? this.createDisplayParams(material, false) : undefined;
|
|
189409
|
+
if (displayParams) {
|
|
189410
|
+
return { color: displayParams.lineColor };
|
|
189411
|
+
}
|
|
189412
|
+
return undefined;
|
|
189413
|
+
}
|
|
189267
189414
|
readPointCloud2(primitive, hasFeatures) {
|
|
189268
189415
|
let pointRange;
|
|
189269
189416
|
let positions;
|
|
@@ -227513,149 +227660,150 @@ class LineStringOffsetClipperContext {
|
|
|
227513
227660
|
"use strict";
|
|
227514
227661
|
__webpack_require__.r(__webpack_exports__);
|
|
227515
227662
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
227516
|
-
/* harmony export */ AkimaCurve3d: () => (/* reexport safe */
|
|
227517
|
-
/* harmony export */ AkimaCurve3dOptions: () => (/* reexport safe */
|
|
227663
|
+
/* harmony export */ AkimaCurve3d: () => (/* reexport safe */ _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__.AkimaCurve3d),
|
|
227664
|
+
/* harmony export */ AkimaCurve3dOptions: () => (/* reexport safe */ _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__.AkimaCurve3dOptions),
|
|
227518
227665
|
/* harmony export */ Angle: () => (/* reexport safe */ _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_0__.Angle),
|
|
227519
227666
|
/* harmony export */ AngleSweep: () => (/* reexport safe */ _geometry3d_AngleSweep__WEBPACK_IMPORTED_MODULE_1__.AngleSweep),
|
|
227520
|
-
/* harmony export */ AnnotatedLineString3d: () => (/* reexport safe */
|
|
227521
|
-
/* harmony export */ Arc3d: () => (/* reexport safe */
|
|
227522
|
-
/* harmony export */ AuxChannel: () => (/* reexport safe */
|
|
227523
|
-
/* harmony export */ AuxChannelData: () => (/* reexport safe */
|
|
227524
|
-
/* harmony export */ AuxChannelDataType: () => (/* reexport safe */
|
|
227525
|
-
/* harmony export */ AxisIndex: () => (/* reexport safe */
|
|
227526
|
-
/* harmony export */ AxisOrder: () => (/* reexport safe */
|
|
227527
|
-
/* harmony export */ AxisScaleSelect: () => (/* reexport safe */
|
|
227528
|
-
/* harmony export */ BSpline1dNd: () => (/* reexport safe */
|
|
227529
|
-
/* harmony export */ BSpline2dNd: () => (/* reexport safe */
|
|
227530
|
-
/* harmony export */ BSplineCurve3d: () => (/* reexport safe */
|
|
227531
|
-
/* harmony export */ BSplineCurve3dBase: () => (/* reexport safe */
|
|
227532
|
-
/* harmony export */ BSplineCurve3dH: () => (/* reexport safe */
|
|
227533
|
-
/* harmony export */ BSplineCurveOps: () => (/* reexport safe */
|
|
227534
|
-
/* harmony export */ BSplineSurface3d: () => (/* reexport safe */
|
|
227535
|
-
/* harmony export */ BSplineSurface3dH: () => (/* reexport safe */
|
|
227536
|
-
/* harmony export */ BSplineWrapMode: () => (/* reexport safe */
|
|
227537
|
-
/* harmony export */ BagOfCurves: () => (/* reexport safe */
|
|
227667
|
+
/* harmony export */ AnnotatedLineString3d: () => (/* reexport safe */ _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__.AnnotatedLineString3d),
|
|
227668
|
+
/* harmony export */ Arc3d: () => (/* reexport safe */ _curve_Arc3d__WEBPACK_IMPORTED_MODULE_60__.Arc3d),
|
|
227669
|
+
/* harmony export */ AuxChannel: () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannel),
|
|
227670
|
+
/* harmony export */ AuxChannelData: () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannelData),
|
|
227671
|
+
/* harmony export */ AuxChannelDataType: () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.AuxChannelDataType),
|
|
227672
|
+
/* harmony export */ AxisIndex: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.AxisIndex),
|
|
227673
|
+
/* harmony export */ AxisOrder: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.AxisOrder),
|
|
227674
|
+
/* harmony export */ AxisScaleSelect: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.AxisScaleSelect),
|
|
227675
|
+
/* harmony export */ BSpline1dNd: () => (/* reexport safe */ _bspline_BSpline1dNd__WEBPACK_IMPORTED_MODULE_105__.BSpline1dNd),
|
|
227676
|
+
/* harmony export */ BSpline2dNd: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSpline2dNd),
|
|
227677
|
+
/* harmony export */ BSplineCurve3d: () => (/* reexport safe */ _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__.BSplineCurve3d),
|
|
227678
|
+
/* harmony export */ BSplineCurve3dBase: () => (/* reexport safe */ _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__.BSplineCurve3dBase),
|
|
227679
|
+
/* harmony export */ BSplineCurve3dH: () => (/* reexport safe */ _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_106__.BSplineCurve3dH),
|
|
227680
|
+
/* harmony export */ BSplineCurveOps: () => (/* reexport safe */ _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_104__.BSplineCurveOps),
|
|
227681
|
+
/* harmony export */ BSplineSurface3d: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSplineSurface3d),
|
|
227682
|
+
/* harmony export */ BSplineSurface3dH: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.BSplineSurface3dH),
|
|
227683
|
+
/* harmony export */ BSplineWrapMode: () => (/* reexport safe */ _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__.BSplineWrapMode),
|
|
227684
|
+
/* harmony export */ BagOfCurves: () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_65__.BagOfCurves),
|
|
227538
227685
|
/* harmony export */ BarycentricTriangle: () => (/* reexport safe */ _geometry3d_BarycentricTriangle__WEBPACK_IMPORTED_MODULE_3__.BarycentricTriangle),
|
|
227539
|
-
/* harmony export */ BentleyGeometryFlatBuffer: () => (/* reexport safe */
|
|
227540
|
-
/* harmony export */ Bezier1dNd: () => (/* reexport safe */
|
|
227541
|
-
/* harmony export */ BezierCoffs: () => (/* reexport safe */
|
|
227542
|
-
/* harmony export */ BezierCurve3d: () => (/* reexport safe */
|
|
227543
|
-
/* harmony export */ BezierCurve3dH: () => (/* reexport safe */
|
|
227544
|
-
/* harmony export */ BezierCurveBase: () => (/* reexport safe */
|
|
227545
|
-
/* harmony export */ BezierPolynomialAlgebra: () => (/* reexport safe */
|
|
227686
|
+
/* harmony export */ BentleyGeometryFlatBuffer: () => (/* reexport safe */ _serialization_BentleyGeometryFlatBuffer__WEBPACK_IMPORTED_MODULE_133__.BentleyGeometryFlatBuffer),
|
|
227687
|
+
/* harmony export */ Bezier1dNd: () => (/* reexport safe */ _bspline_Bezier1dNd__WEBPACK_IMPORTED_MODULE_99__.Bezier1dNd),
|
|
227688
|
+
/* harmony export */ BezierCoffs: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.BezierCoffs),
|
|
227689
|
+
/* harmony export */ BezierCurve3d: () => (/* reexport safe */ _bspline_BezierCurve3d__WEBPACK_IMPORTED_MODULE_101__.BezierCurve3d),
|
|
227690
|
+
/* harmony export */ BezierCurve3dH: () => (/* reexport safe */ _bspline_BezierCurve3dH__WEBPACK_IMPORTED_MODULE_102__.BezierCurve3dH),
|
|
227691
|
+
/* harmony export */ BezierCurveBase: () => (/* reexport safe */ _bspline_BezierCurveBase__WEBPACK_IMPORTED_MODULE_100__.BezierCurveBase),
|
|
227692
|
+
/* harmony export */ BezierPolynomialAlgebra: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.BezierPolynomialAlgebra),
|
|
227546
227693
|
/* harmony export */ BilinearPatch: () => (/* reexport safe */ _geometry3d_BilinearPatch__WEBPACK_IMPORTED_MODULE_4__.BilinearPatch),
|
|
227547
|
-
/* harmony export */ BooleanClipFactory: () => (/* reexport safe */
|
|
227548
|
-
/* harmony export */ Box: () => (/* reexport safe */
|
|
227549
|
-
/* harmony export */ BoxTopology: () => (/* reexport safe */
|
|
227550
|
-
/* harmony export */ ClipMaskXYZRangePlanes: () => (/* reexport safe */
|
|
227551
|
-
/* harmony export */ ClipPlane: () => (/* reexport safe */
|
|
227552
|
-
/* harmony export */ ClipPlaneContainment: () => (/* reexport safe */
|
|
227553
|
-
/* harmony export */ ClipPrimitive: () => (/* reexport safe */
|
|
227554
|
-
/* harmony export */ ClipShape: () => (/* reexport safe */
|
|
227555
|
-
/* harmony export */ ClipStatus: () => (/* reexport safe */
|
|
227556
|
-
/* harmony export */ ClipStepAction: () => (/* reexport safe */
|
|
227557
|
-
/* harmony export */ ClipUtilities: () => (/* reexport safe */
|
|
227558
|
-
/* harmony export */ ClipVector: () => (/* reexport safe */
|
|
227559
|
-
/* harmony export */ ClippedPolyfaceBuilders: () => (/* reexport safe */
|
|
227560
|
-
/* harmony export */ ClusterableArray: () => (/* reexport safe */
|
|
227561
|
-
/* harmony export */ Complex: () => (/* reexport safe */
|
|
227562
|
-
/* harmony export */ Cone: () => (/* reexport safe */
|
|
227563
|
-
/* harmony export */ ConsolidateAdjacentCurvePrimitivesOptions: () => (/* reexport safe */
|
|
227564
|
-
/* harmony export */ Constant: () => (/* reexport safe */
|
|
227565
|
-
/* harmony export */ ConstructCurveBetweenCurves: () => (/* reexport safe */
|
|
227566
|
-
/* harmony export */ ConvexClipPlaneSet: () => (/* reexport safe */
|
|
227567
|
-
/* harmony export */ ConvexFacetLocationDetail: () => (/* reexport safe */
|
|
227568
|
-
/* harmony export */ ConvexPolygon2d: () => (/* reexport safe */
|
|
227569
|
-
/* harmony export */ CoordinateXYZ: () => (/* reexport safe */
|
|
227570
|
-
/* harmony export */ CurveChain: () => (/* reexport safe */
|
|
227571
|
-
/* harmony export */ CurveChainWithDistanceIndex: () => (/* reexport safe */
|
|
227572
|
-
/* harmony export */ CurveCollection: () => (/* reexport safe */
|
|
227573
|
-
/* harmony export */ CurveCurve: () => (/* reexport safe */
|
|
227574
|
-
/* harmony export */ CurveCurveApproachType: () => (/* reexport safe */
|
|
227575
|
-
/* harmony export */ CurveExtendMode: () => (/* reexport safe */
|
|
227576
|
-
/* harmony export */ CurveExtendOptions: () => (/* reexport safe */
|
|
227577
|
-
/* harmony export */ CurveFactory: () => (/* reexport safe */
|
|
227578
|
-
/* harmony export */ CurveIntervalRole: () => (/* reexport safe */
|
|
227579
|
-
/* harmony export */ CurveLocationDetail: () => (/* reexport safe */
|
|
227580
|
-
/* harmony export */ CurveLocationDetailArrayPair: () => (/* reexport safe */
|
|
227581
|
-
/* harmony export */ CurveLocationDetailPair: () => (/* reexport safe */
|
|
227582
|
-
/* harmony export */ CurveOps: () => (/* reexport safe */
|
|
227583
|
-
/* harmony export */ CurvePrimitive: () => (/* reexport safe */
|
|
227584
|
-
/* harmony export */ CurveSearchStatus: () => (/* reexport safe */
|
|
227694
|
+
/* harmony export */ BooleanClipFactory: () => (/* reexport safe */ _clipping_BooleanClipFactory__WEBPACK_IMPORTED_MODULE_39__.BooleanClipFactory),
|
|
227695
|
+
/* harmony export */ Box: () => (/* reexport safe */ _solid_Box__WEBPACK_IMPORTED_MODULE_89__.Box),
|
|
227696
|
+
/* harmony export */ BoxTopology: () => (/* reexport safe */ _polyface_BoxTopology__WEBPACK_IMPORTED_MODULE_111__.BoxTopology),
|
|
227697
|
+
/* harmony export */ ClipMaskXYZRangePlanes: () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_43__.ClipMaskXYZRangePlanes),
|
|
227698
|
+
/* harmony export */ ClipPlane: () => (/* reexport safe */ _clipping_ClipPlane__WEBPACK_IMPORTED_MODULE_40__.ClipPlane),
|
|
227699
|
+
/* harmony export */ ClipPlaneContainment: () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__.ClipPlaneContainment),
|
|
227700
|
+
/* harmony export */ ClipPrimitive: () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_43__.ClipPrimitive),
|
|
227701
|
+
/* harmony export */ ClipShape: () => (/* reexport safe */ _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_43__.ClipShape),
|
|
227702
|
+
/* harmony export */ ClipStatus: () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__.ClipStatus),
|
|
227703
|
+
/* harmony export */ ClipStepAction: () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__.ClipStepAction),
|
|
227704
|
+
/* harmony export */ ClipUtilities: () => (/* reexport safe */ _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__.ClipUtilities),
|
|
227705
|
+
/* harmony export */ ClipVector: () => (/* reexport safe */ _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_44__.ClipVector),
|
|
227706
|
+
/* harmony export */ ClippedPolyfaceBuilders: () => (/* reexport safe */ _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_123__.ClippedPolyfaceBuilders),
|
|
227707
|
+
/* harmony export */ ClusterableArray: () => (/* reexport safe */ _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_53__.ClusterableArray),
|
|
227708
|
+
/* harmony export */ Complex: () => (/* reexport safe */ _numerics_Complex__WEBPACK_IMPORTED_MODULE_54__.Complex),
|
|
227709
|
+
/* harmony export */ Cone: () => (/* reexport safe */ _solid_Cone__WEBPACK_IMPORTED_MODULE_90__.Cone),
|
|
227710
|
+
/* harmony export */ ConsolidateAdjacentCurvePrimitivesOptions: () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_80__.ConsolidateAdjacentCurvePrimitivesOptions),
|
|
227711
|
+
/* harmony export */ Constant: () => (/* reexport safe */ _Constant__WEBPACK_IMPORTED_MODULE_38__.Constant),
|
|
227712
|
+
/* harmony export */ ConstructCurveBetweenCurves: () => (/* reexport safe */ _curve_ConstructCurveBetweenCurves__WEBPACK_IMPORTED_MODULE_61__.ConstructCurveBetweenCurves),
|
|
227713
|
+
/* harmony export */ ConvexClipPlaneSet: () => (/* reexport safe */ _clipping_ConvexClipPlaneSet__WEBPACK_IMPORTED_MODULE_41__.ConvexClipPlaneSet),
|
|
227714
|
+
/* harmony export */ ConvexFacetLocationDetail: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.ConvexFacetLocationDetail),
|
|
227715
|
+
/* harmony export */ ConvexPolygon2d: () => (/* reexport safe */ _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_46__.ConvexPolygon2d),
|
|
227716
|
+
/* harmony export */ CoordinateXYZ: () => (/* reexport safe */ _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_62__.CoordinateXYZ),
|
|
227717
|
+
/* harmony export */ CurveChain: () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_65__.CurveChain),
|
|
227718
|
+
/* harmony export */ CurveChainWithDistanceIndex: () => (/* reexport safe */ _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_63__.CurveChainWithDistanceIndex),
|
|
227719
|
+
/* harmony export */ CurveCollection: () => (/* reexport safe */ _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_65__.CurveCollection),
|
|
227720
|
+
/* harmony export */ CurveCurve: () => (/* reexport safe */ _curve_CurveCurve__WEBPACK_IMPORTED_MODULE_66__.CurveCurve),
|
|
227721
|
+
/* harmony export */ CurveCurveApproachType: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveCurveApproachType),
|
|
227722
|
+
/* harmony export */ CurveExtendMode: () => (/* reexport safe */ _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_64__.CurveExtendMode),
|
|
227723
|
+
/* harmony export */ CurveExtendOptions: () => (/* reexport safe */ _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_64__.CurveExtendOptions),
|
|
227724
|
+
/* harmony export */ CurveFactory: () => (/* reexport safe */ _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_68__.CurveFactory),
|
|
227725
|
+
/* harmony export */ CurveIntervalRole: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveIntervalRole),
|
|
227726
|
+
/* harmony export */ CurveLocationDetail: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveLocationDetail),
|
|
227727
|
+
/* harmony export */ CurveLocationDetailArrayPair: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveLocationDetailArrayPair),
|
|
227728
|
+
/* harmony export */ CurveLocationDetailPair: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveLocationDetailPair),
|
|
227729
|
+
/* harmony export */ CurveOps: () => (/* reexport safe */ _curve_CurveOps__WEBPACK_IMPORTED_MODULE_69__.CurveOps),
|
|
227730
|
+
/* harmony export */ CurvePrimitive: () => (/* reexport safe */ _curve_CurvePrimitive__WEBPACK_IMPORTED_MODULE_70__.CurvePrimitive),
|
|
227731
|
+
/* harmony export */ CurveSearchStatus: () => (/* reexport safe */ _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__.CurveSearchStatus),
|
|
227585
227732
|
/* harmony export */ CutLoop: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.CutLoop),
|
|
227586
227733
|
/* harmony export */ CutLoopMergeContext: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.CutLoopMergeContext),
|
|
227587
|
-
/* harmony export */ DeepCompare: () => (/* reexport safe */
|
|
227588
|
-
/* harmony export */ DirectSpiral3d: () => (/* reexport safe */
|
|
227589
|
-
/* harmony export */ DuplicateFacetClusterSelector: () => (/* reexport safe */
|
|
227734
|
+
/* harmony export */ DeepCompare: () => (/* reexport safe */ _serialization_DeepCompare__WEBPACK_IMPORTED_MODULE_130__.DeepCompare),
|
|
227735
|
+
/* harmony export */ DirectSpiral3d: () => (/* reexport safe */ _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_86__.DirectSpiral3d),
|
|
227736
|
+
/* harmony export */ DuplicateFacetClusterSelector: () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__.DuplicateFacetClusterSelector),
|
|
227590
227737
|
/* harmony export */ Ellipsoid: () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.Ellipsoid),
|
|
227591
227738
|
/* harmony export */ EllipsoidPatch: () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.EllipsoidPatch),
|
|
227592
|
-
/* harmony export */ EllipticalArcApproximationOptions: () => (/* reexport safe */
|
|
227593
|
-
/* harmony export */ EllipticalArcSampleMethod: () => (/* reexport safe */
|
|
227594
|
-
/* harmony export */ FacetFaceData: () => (/* reexport safe */
|
|
227595
|
-
/* harmony export */ FacetIntersectOptions: () => (/* reexport safe */
|
|
227596
|
-
/* harmony export */ FacetLocationDetailPair: () => (/* reexport safe */
|
|
227739
|
+
/* harmony export */ EllipticalArcApproximationOptions: () => (/* reexport safe */ _curve_Arc3d__WEBPACK_IMPORTED_MODULE_60__.EllipticalArcApproximationOptions),
|
|
227740
|
+
/* harmony export */ EllipticalArcSampleMethod: () => (/* reexport safe */ _curve_Arc3d__WEBPACK_IMPORTED_MODULE_60__.EllipticalArcSampleMethod),
|
|
227741
|
+
/* harmony export */ FacetFaceData: () => (/* reexport safe */ _polyface_FacetFaceData__WEBPACK_IMPORTED_MODULE_112__.FacetFaceData),
|
|
227742
|
+
/* harmony export */ FacetIntersectOptions: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.FacetIntersectOptions),
|
|
227743
|
+
/* harmony export */ FacetLocationDetailPair: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.FacetLocationDetailPair),
|
|
227597
227744
|
/* harmony export */ FrameBuilder: () => (/* reexport safe */ _geometry3d_FrameBuilder__WEBPACK_IMPORTED_MODULE_6__.FrameBuilder),
|
|
227598
|
-
/* harmony export */ GaussMapper: () => (/* reexport safe */
|
|
227745
|
+
/* harmony export */ GaussMapper: () => (/* reexport safe */ _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__.GaussMapper),
|
|
227599
227746
|
/* harmony export */ GeodesicPathPoint: () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.GeodesicPathPoint),
|
|
227600
227747
|
/* harmony export */ GeodesicPathSolver: () => (/* reexport safe */ _geometry3d_Ellipsoid__WEBPACK_IMPORTED_MODULE_5__.GeodesicPathSolver),
|
|
227601
|
-
/* harmony export */ Geometry: () => (/* reexport safe */
|
|
227748
|
+
/* harmony export */ Geometry: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.Geometry),
|
|
227602
227749
|
/* harmony export */ GeometryHandler: () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.GeometryHandler),
|
|
227603
|
-
/* harmony export */ GeometryQuery: () => (/* reexport safe */
|
|
227604
|
-
/* harmony export */ GriddedRaggedRange2dSet: () => (/* reexport safe */
|
|
227605
|
-
/* harmony export */ GriddedRaggedRange2dSetWithOverflow: () => (/* reexport safe */
|
|
227750
|
+
/* harmony export */ GeometryQuery: () => (/* reexport safe */ _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_72__.GeometryQuery),
|
|
227751
|
+
/* harmony export */ GriddedRaggedRange2dSet: () => (/* reexport safe */ _polyface_multiclip_GriddedRaggedRange2dSet__WEBPACK_IMPORTED_MODULE_118__.GriddedRaggedRange2dSet),
|
|
227752
|
+
/* harmony export */ GriddedRaggedRange2dSetWithOverflow: () => (/* reexport safe */ _polyface_multiclip_GriddedRaggedRange2dSetWithOverflow__WEBPACK_IMPORTED_MODULE_119__.GriddedRaggedRange2dSetWithOverflow),
|
|
227606
227753
|
/* harmony export */ GrowableBlockedArray: () => (/* reexport safe */ _geometry3d_GrowableBlockedArray__WEBPACK_IMPORTED_MODULE_9__.GrowableBlockedArray),
|
|
227607
227754
|
/* harmony export */ GrowableFloat64Array: () => (/* reexport safe */ _geometry3d_GrowableFloat64Array__WEBPACK_IMPORTED_MODULE_10__.GrowableFloat64Array),
|
|
227608
227755
|
/* harmony export */ GrowableXYArray: () => (/* reexport safe */ _geometry3d_GrowableXYArray__WEBPACK_IMPORTED_MODULE_11__.GrowableXYArray),
|
|
227609
227756
|
/* harmony export */ GrowableXYZArray: () => (/* reexport safe */ _geometry3d_GrowableXYZArray__WEBPACK_IMPORTED_MODULE_12__.GrowableXYZArray),
|
|
227610
|
-
/* harmony export */
|
|
227757
|
+
/* harmony export */ GrowableXYZArrayCache: () => (/* reexport safe */ _geometry3d_ReusableObjectCache__WEBPACK_IMPORTED_MODULE_31__.GrowableXYZArrayCache),
|
|
227758
|
+
/* harmony export */ IModelJson: () => (/* reexport safe */ _serialization_IModelJsonSchema__WEBPACK_IMPORTED_MODULE_129__.IModelJson),
|
|
227611
227759
|
/* harmony export */ IndexedCollectionInterval: () => (/* reexport safe */ _geometry3d_IndexedCollectionInterval__WEBPACK_IMPORTED_MODULE_13__.IndexedCollectionInterval),
|
|
227612
|
-
/* harmony export */ IndexedEdgeMatcher: () => (/* reexport safe */
|
|
227613
|
-
/* harmony export */ IndexedPolyface: () => (/* reexport safe */
|
|
227614
|
-
/* harmony export */ IndexedPolyfaceSubsetVisitor: () => (/* reexport safe */
|
|
227615
|
-
/* harmony export */ IndexedPolyfaceVisitor: () => (/* reexport safe */
|
|
227616
|
-
/* harmony export */ IndexedPolyfaceWalker: () => (/* reexport safe */
|
|
227760
|
+
/* harmony export */ IndexedEdgeMatcher: () => (/* reexport safe */ _polyface_IndexedEdgeMatcher__WEBPACK_IMPORTED_MODULE_115__.IndexedEdgeMatcher),
|
|
227761
|
+
/* harmony export */ IndexedPolyface: () => (/* reexport safe */ _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__.IndexedPolyface),
|
|
227762
|
+
/* harmony export */ IndexedPolyfaceSubsetVisitor: () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_116__.IndexedPolyfaceSubsetVisitor),
|
|
227763
|
+
/* harmony export */ IndexedPolyfaceVisitor: () => (/* reexport safe */ _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_116__.IndexedPolyfaceVisitor),
|
|
227764
|
+
/* harmony export */ IndexedPolyfaceWalker: () => (/* reexport safe */ _polyface_IndexedPolyfaceWalker__WEBPACK_IMPORTED_MODULE_117__.IndexedPolyfaceWalker),
|
|
227617
227765
|
/* harmony export */ IndexedReadWriteXYZCollection: () => (/* reexport safe */ _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__.IndexedReadWriteXYZCollection),
|
|
227618
227766
|
/* harmony export */ IndexedXYCollection: () => (/* reexport safe */ _geometry3d_IndexedXYCollection__WEBPACK_IMPORTED_MODULE_14__.IndexedXYCollection),
|
|
227619
227767
|
/* harmony export */ IndexedXYZCollection: () => (/* reexport safe */ _geometry3d_IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_15__.IndexedXYZCollection),
|
|
227620
227768
|
/* harmony export */ IndexedXYZCollectionInterval: () => (/* reexport safe */ _geometry3d_IndexedCollectionInterval__WEBPACK_IMPORTED_MODULE_13__.IndexedXYZCollectionInterval),
|
|
227621
227769
|
/* harmony export */ IndexedXYZCollectionPolygonOps: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.IndexedXYZCollectionPolygonOps),
|
|
227622
|
-
/* harmony export */ IntegratedSpiral3d: () => (/* reexport safe */
|
|
227623
|
-
/* harmony export */ InterpolationCurve3d: () => (/* reexport safe */
|
|
227624
|
-
/* harmony export */ InterpolationCurve3dOptions: () => (/* reexport safe */
|
|
227770
|
+
/* harmony export */ IntegratedSpiral3d: () => (/* reexport safe */ _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_85__.IntegratedSpiral3d),
|
|
227771
|
+
/* harmony export */ InterpolationCurve3d: () => (/* reexport safe */ _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__.InterpolationCurve3d),
|
|
227772
|
+
/* harmony export */ InterpolationCurve3dOptions: () => (/* reexport safe */ _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__.InterpolationCurve3dOptions),
|
|
227625
227773
|
/* harmony export */ InverseMatrixState: () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.InverseMatrixState),
|
|
227626
|
-
/* harmony export */ JointOptions: () => (/* reexport safe */
|
|
227627
|
-
/* harmony export */ KnotVector: () => (/* reexport safe */
|
|
227628
|
-
/* harmony export */ LineSegment3d: () => (/* reexport safe */
|
|
227629
|
-
/* harmony export */ LineString3d: () => (/* reexport safe */
|
|
227630
|
-
/* harmony export */ LineString3dRangeTreeContext: () => (/* reexport safe */
|
|
227631
|
-
/* harmony export */ LinearSweep: () => (/* reexport safe */
|
|
227774
|
+
/* harmony export */ JointOptions: () => (/* reexport safe */ _curve_OffsetOptions__WEBPACK_IMPORTED_MODULE_76__.JointOptions),
|
|
227775
|
+
/* harmony export */ KnotVector: () => (/* reexport safe */ _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__.KnotVector),
|
|
227776
|
+
/* harmony export */ LineSegment3d: () => (/* reexport safe */ _curve_LineSegment3d__WEBPACK_IMPORTED_MODULE_73__.LineSegment3d),
|
|
227777
|
+
/* harmony export */ LineString3d: () => (/* reexport safe */ _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__.LineString3d),
|
|
227778
|
+
/* harmony export */ LineString3dRangeTreeContext: () => (/* reexport safe */ _polyface_RangeTree_LineString3dRangeTreeContext__WEBPACK_IMPORTED_MODULE_125__.LineString3dRangeTreeContext),
|
|
227779
|
+
/* harmony export */ LinearSweep: () => (/* reexport safe */ _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_91__.LinearSweep),
|
|
227632
227780
|
/* harmony export */ LongitudeLatitudeNumber: () => (/* reexport safe */ _geometry3d_LongitudeLatitudeAltitude__WEBPACK_IMPORTED_MODULE_2__.LongitudeLatitudeNumber),
|
|
227633
|
-
/* harmony export */ Loop: () => (/* reexport safe */
|
|
227634
|
-
/* harmony export */ LoopCurveLoopCurve: () => (/* reexport safe */
|
|
227635
|
-
/* harmony export */ Map4d: () => (/* reexport safe */
|
|
227781
|
+
/* harmony export */ Loop: () => (/* reexport safe */ _curve_Loop__WEBPACK_IMPORTED_MODULE_75__.Loop),
|
|
227782
|
+
/* harmony export */ LoopCurveLoopCurve: () => (/* reexport safe */ _curve_Loop__WEBPACK_IMPORTED_MODULE_75__.LoopCurveLoopCurve),
|
|
227783
|
+
/* harmony export */ Map4d: () => (/* reexport safe */ _geometry4d_Map4d__WEBPACK_IMPORTED_MODULE_50__.Map4d),
|
|
227636
227784
|
/* harmony export */ Matrix3d: () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.Matrix3d),
|
|
227637
|
-
/* harmony export */ Matrix4d: () => (/* reexport safe */
|
|
227638
|
-
/* harmony export */ MiteredSweepOutputSelect: () => (/* reexport safe */
|
|
227639
|
-
/* harmony export */ MomentData: () => (/* reexport safe */
|
|
227640
|
-
/* harmony export */ NonConvexFacetLocationDetail: () => (/* reexport safe */
|
|
227785
|
+
/* harmony export */ Matrix4d: () => (/* reexport safe */ _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_49__.Matrix4d),
|
|
227786
|
+
/* harmony export */ MiteredSweepOutputSelect: () => (/* reexport safe */ _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_68__.MiteredSweepOutputSelect),
|
|
227787
|
+
/* harmony export */ MomentData: () => (/* reexport safe */ _geometry4d_MomentData__WEBPACK_IMPORTED_MODULE_51__.MomentData),
|
|
227788
|
+
/* harmony export */ NonConvexFacetLocationDetail: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.NonConvexFacetLocationDetail),
|
|
227641
227789
|
/* harmony export */ NullGeometryHandler: () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.NullGeometryHandler),
|
|
227642
227790
|
/* harmony export */ NumberArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.NumberArray),
|
|
227643
|
-
/* harmony export */ OffsetMeshOptions: () => (/* reexport safe */
|
|
227644
|
-
/* harmony export */ OffsetOptions: () => (/* reexport safe */
|
|
227645
|
-
/* harmony export */ Order2Bezier: () => (/* reexport safe */
|
|
227646
|
-
/* harmony export */ Order3Bezier: () => (/* reexport safe */
|
|
227647
|
-
/* harmony export */ Order4Bezier: () => (/* reexport safe */
|
|
227648
|
-
/* harmony export */ Order5Bezier: () => (/* reexport safe */
|
|
227791
|
+
/* harmony export */ OffsetMeshOptions: () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__.OffsetMeshOptions),
|
|
227792
|
+
/* harmony export */ OffsetOptions: () => (/* reexport safe */ _curve_OffsetOptions__WEBPACK_IMPORTED_MODULE_76__.OffsetOptions),
|
|
227793
|
+
/* harmony export */ Order2Bezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.Order2Bezier),
|
|
227794
|
+
/* harmony export */ Order3Bezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.Order3Bezier),
|
|
227795
|
+
/* harmony export */ Order4Bezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.Order4Bezier),
|
|
227796
|
+
/* harmony export */ Order5Bezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.Order5Bezier),
|
|
227649
227797
|
/* harmony export */ OrderedRotationAngles: () => (/* reexport safe */ _geometry3d_OrderedRotationAngles__WEBPACK_IMPORTED_MODULE_17__.OrderedRotationAngles),
|
|
227650
227798
|
/* harmony export */ PackedMatrix3dOps: () => (/* reexport safe */ _geometry3d_Matrix3d__WEBPACK_IMPORTED_MODULE_16__.PackedMatrix3dOps),
|
|
227651
|
-
/* harmony export */ ParityRegion: () => (/* reexport safe */
|
|
227652
|
-
/* harmony export */ PascalCoefficients: () => (/* reexport safe */
|
|
227653
|
-
/* harmony export */ Path: () => (/* reexport safe */
|
|
227654
|
-
/* harmony export */ PathFragment: () => (/* reexport safe */
|
|
227799
|
+
/* harmony export */ ParityRegion: () => (/* reexport safe */ _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_77__.ParityRegion),
|
|
227800
|
+
/* harmony export */ PascalCoefficients: () => (/* reexport safe */ _numerics_PascalCoefficients__WEBPACK_IMPORTED_MODULE_55__.PascalCoefficients),
|
|
227801
|
+
/* harmony export */ Path: () => (/* reexport safe */ _curve_Path__WEBPACK_IMPORTED_MODULE_78__.Path),
|
|
227802
|
+
/* harmony export */ PathFragment: () => (/* reexport safe */ _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_63__.PathFragment),
|
|
227655
227803
|
/* harmony export */ Plane3d: () => (/* reexport safe */ _geometry3d_Plane3d__WEBPACK_IMPORTED_MODULE_18__.Plane3d),
|
|
227656
227804
|
/* harmony export */ Plane3dByOriginAndUnitNormal: () => (/* reexport safe */ _geometry3d_Plane3dByOriginAndUnitNormal__WEBPACK_IMPORTED_MODULE_19__.Plane3dByOriginAndUnitNormal),
|
|
227657
227805
|
/* harmony export */ Plane3dByOriginAndVectors: () => (/* reexport safe */ _geometry3d_Plane3dByOriginAndVectors__WEBPACK_IMPORTED_MODULE_20__.Plane3dByOriginAndVectors),
|
|
227658
|
-
/* harmony export */ PlaneByOriginAndVectors4d: () => (/* reexport safe */
|
|
227806
|
+
/* harmony export */ PlaneByOriginAndVectors4d: () => (/* reexport safe */ _geometry4d_PlaneByOriginAndVectors4d__WEBPACK_IMPORTED_MODULE_47__.PlaneByOriginAndVectors4d),
|
|
227659
227807
|
/* harmony export */ Point2d: () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.Point2d),
|
|
227660
227808
|
/* harmony export */ Point2dArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point2dArray),
|
|
227661
227809
|
/* harmony export */ Point2dArrayCarrier: () => (/* reexport safe */ _geometry3d_Point2dArrayCarrier__WEBPACK_IMPORTED_MODULE_21__.Point2dArrayCarrier),
|
|
@@ -227663,77 +227811,78 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
227663
227811
|
/* harmony export */ Point3dArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point3dArray),
|
|
227664
227812
|
/* harmony export */ Point3dArrayCarrier: () => (/* reexport safe */ _geometry3d_Point3dArrayCarrier__WEBPACK_IMPORTED_MODULE_25__.Point3dArrayCarrier),
|
|
227665
227813
|
/* harmony export */ Point3dArrayPolygonOps: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.Point3dArrayPolygonOps),
|
|
227666
|
-
/* harmony export */ Point3dArrayRangeTreeContext: () => (/* reexport safe */
|
|
227667
|
-
/* harmony export */ Point4d: () => (/* reexport safe */
|
|
227814
|
+
/* harmony export */ Point3dArrayRangeTreeContext: () => (/* reexport safe */ _polyface_RangeTree_Point3dArrayRangeTreeContext__WEBPACK_IMPORTED_MODULE_124__.Point3dArrayRangeTreeContext),
|
|
227815
|
+
/* harmony export */ Point4d: () => (/* reexport safe */ _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_48__.Point4d),
|
|
227668
227816
|
/* harmony export */ Point4dArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Point4dArray),
|
|
227669
|
-
/* harmony export */ PointString3d: () => (/* reexport safe */
|
|
227670
|
-
/* harmony export */ Polyface: () => (/* reexport safe */
|
|
227671
|
-
/* harmony export */ PolyfaceAuxData: () => (/* reexport safe */
|
|
227672
|
-
/* harmony export */ PolyfaceBuilder: () => (/* reexport safe */
|
|
227673
|
-
/* harmony export */ PolyfaceClip: () => (/* reexport safe */
|
|
227674
|
-
/* harmony export */ PolyfaceData: () => (/* reexport safe */
|
|
227675
|
-
/* harmony export */ PolyfaceQuery: () => (/* reexport safe */
|
|
227676
|
-
/* harmony export */ PolyfaceRangeTreeContext: () => (/* reexport safe */
|
|
227677
|
-
/* harmony export */ PolygonLocation: () => (/* reexport safe */
|
|
227817
|
+
/* harmony export */ PointString3d: () => (/* reexport safe */ _curve_PointString3d__WEBPACK_IMPORTED_MODULE_81__.PointString3d),
|
|
227818
|
+
/* harmony export */ Polyface: () => (/* reexport safe */ _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__.Polyface),
|
|
227819
|
+
/* harmony export */ PolyfaceAuxData: () => (/* reexport safe */ _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__.PolyfaceAuxData),
|
|
227820
|
+
/* harmony export */ PolyfaceBuilder: () => (/* reexport safe */ _polyface_PolyfaceBuilder__WEBPACK_IMPORTED_MODULE_120__.PolyfaceBuilder),
|
|
227821
|
+
/* harmony export */ PolyfaceClip: () => (/* reexport safe */ _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_123__.PolyfaceClip),
|
|
227822
|
+
/* harmony export */ PolyfaceData: () => (/* reexport safe */ _polyface_PolyfaceData__WEBPACK_IMPORTED_MODULE_121__.PolyfaceData),
|
|
227823
|
+
/* harmony export */ PolyfaceQuery: () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__.PolyfaceQuery),
|
|
227824
|
+
/* harmony export */ PolyfaceRangeTreeContext: () => (/* reexport safe */ _polyface_RangeTree_PolyfaceRangeTreeContext__WEBPACK_IMPORTED_MODULE_126__.PolyfaceRangeTreeContext),
|
|
227825
|
+
/* harmony export */ PolygonLocation: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.PolygonLocation),
|
|
227678
227826
|
/* harmony export */ PolygonLocationDetail: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonLocationDetail),
|
|
227679
227827
|
/* harmony export */ PolygonLocationDetailPair: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonLocationDetailPair),
|
|
227680
227828
|
/* harmony export */ PolygonOps: () => (/* reexport safe */ _geometry3d_PolygonOps__WEBPACK_IMPORTED_MODULE_27__.PolygonOps),
|
|
227681
227829
|
/* harmony export */ PolylineOps: () => (/* reexport safe */ _geometry3d_PolylineOps__WEBPACK_IMPORTED_MODULE_26__.PolylineOps),
|
|
227682
|
-
/* harmony export */ ProxyCurve: () => (/* reexport safe */
|
|
227683
|
-
/* harmony export */ Quadrature: () => (/* reexport safe */
|
|
227830
|
+
/* harmony export */ ProxyCurve: () => (/* reexport safe */ _curve_ProxyCurve__WEBPACK_IMPORTED_MODULE_82__.ProxyCurve),
|
|
227831
|
+
/* harmony export */ Quadrature: () => (/* reexport safe */ _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__.Quadrature),
|
|
227684
227832
|
/* harmony export */ Range1d: () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range1d),
|
|
227685
|
-
/* harmony export */ Range1dArray: () => (/* reexport safe */
|
|
227833
|
+
/* harmony export */ Range1dArray: () => (/* reexport safe */ _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__.Range1dArray),
|
|
227686
227834
|
/* harmony export */ Range2d: () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range2d),
|
|
227687
227835
|
/* harmony export */ Range3d: () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.Range3d),
|
|
227688
227836
|
/* harmony export */ RangeBase: () => (/* reexport safe */ _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__.RangeBase),
|
|
227689
227837
|
/* harmony export */ Ray2d: () => (/* reexport safe */ _geometry3d_Ray2d__WEBPACK_IMPORTED_MODULE_29__.Ray2d),
|
|
227690
227838
|
/* harmony export */ Ray3d: () => (/* reexport safe */ _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_30__.Ray3d),
|
|
227691
227839
|
/* harmony export */ RecurseToCurvesGeometryHandler: () => (/* reexport safe */ _geometry3d_GeometryHandler__WEBPACK_IMPORTED_MODULE_8__.RecurseToCurvesGeometryHandler),
|
|
227692
|
-
/* harmony export */ RecursiveCurveProcessor: () => (/* reexport safe */
|
|
227693
|
-
/* harmony export */ RecursiveCurveProcessorWithStack: () => (/* reexport safe */
|
|
227694
|
-
/* harmony export */ RegionBinaryOpType: () => (/* reexport safe */
|
|
227695
|
-
/* harmony export */ RegionMomentsXY: () => (/* reexport safe */
|
|
227696
|
-
/* harmony export */ RegionOps: () => (/* reexport safe */
|
|
227697
|
-
/* harmony export */
|
|
227698
|
-
/* harmony export */
|
|
227699
|
-
/* harmony export */
|
|
227700
|
-
/* harmony export */
|
|
227701
|
-
/* harmony export */
|
|
227702
|
-
/* harmony export */
|
|
227840
|
+
/* harmony export */ RecursiveCurveProcessor: () => (/* reexport safe */ _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__.RecursiveCurveProcessor),
|
|
227841
|
+
/* harmony export */ RecursiveCurveProcessorWithStack: () => (/* reexport safe */ _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__.RecursiveCurveProcessorWithStack),
|
|
227842
|
+
/* harmony export */ RegionBinaryOpType: () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_80__.RegionBinaryOpType),
|
|
227843
|
+
/* harmony export */ RegionMomentsXY: () => (/* reexport safe */ _curve_RegionMomentsXY__WEBPACK_IMPORTED_MODULE_79__.RegionMomentsXY),
|
|
227844
|
+
/* harmony export */ RegionOps: () => (/* reexport safe */ _curve_RegionOps__WEBPACK_IMPORTED_MODULE_80__.RegionOps),
|
|
227845
|
+
/* harmony export */ ReusableObjectCache: () => (/* reexport safe */ _geometry3d_ReusableObjectCache__WEBPACK_IMPORTED_MODULE_31__.ReusableObjectCache),
|
|
227846
|
+
/* harmony export */ RotationalSweep: () => (/* reexport safe */ _solid_RotationalSweep__WEBPACK_IMPORTED_MODULE_92__.RotationalSweep),
|
|
227847
|
+
/* harmony export */ RuledSweep: () => (/* reexport safe */ _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_93__.RuledSweep),
|
|
227848
|
+
/* harmony export */ Sample: () => (/* reexport safe */ _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_131__.Sample),
|
|
227849
|
+
/* harmony export */ Segment1d: () => (/* reexport safe */ _geometry3d_Segment1d__WEBPACK_IMPORTED_MODULE_32__.Segment1d),
|
|
227850
|
+
/* harmony export */ SerializationHelpers: () => (/* reexport safe */ _serialization_SerializationHelpers__WEBPACK_IMPORTED_MODULE_132__.SerializationHelpers),
|
|
227851
|
+
/* harmony export */ SmallSystem: () => (/* reexport safe */ _numerics_SmallSystem__WEBPACK_IMPORTED_MODULE_58__.SmallSystem),
|
|
227703
227852
|
/* harmony export */ SmoothTransformBetweenFrusta: () => (/* reexport safe */ _geometry3d_FrustumAnimation__WEBPACK_IMPORTED_MODULE_7__.SmoothTransformBetweenFrusta),
|
|
227704
|
-
/* harmony export */ SolidPrimitive: () => (/* reexport safe */
|
|
227705
|
-
/* harmony export */ SortableEdge: () => (/* reexport safe */
|
|
227706
|
-
/* harmony export */ SpacePolygonTriangulation: () => (/* reexport safe */
|
|
227707
|
-
/* harmony export */ Sphere: () => (/* reexport safe */
|
|
227708
|
-
/* harmony export */ StandardViewIndex: () => (/* reexport safe */
|
|
227709
|
-
/* harmony export */ SteppedIndexFunctionFactory: () => (/* reexport safe */
|
|
227710
|
-
/* harmony export */ StringifiedClipVector: () => (/* reexport safe */
|
|
227711
|
-
/* harmony export */ StrokeCountMap: () => (/* reexport safe */
|
|
227712
|
-
/* harmony export */ StrokeOptions: () => (/* reexport safe */
|
|
227713
|
-
/* harmony export */ SweepContour: () => (/* reexport safe */
|
|
227714
|
-
/* harmony export */ SweepLineStringToFacetsOptions: () => (/* reexport safe */
|
|
227715
|
-
/* harmony export */ TaggedNumericConstants: () => (/* reexport safe */
|
|
227716
|
-
/* harmony export */ TaggedNumericData: () => (/* reexport safe */
|
|
227717
|
-
/* harmony export */ TorusPipe: () => (/* reexport safe */
|
|
227718
|
-
/* harmony export */ Transform: () => (/* reexport safe */
|
|
227719
|
-
/* harmony export */ TransitionSpiral3d: () => (/* reexport safe */
|
|
227720
|
-
/* harmony export */ TriDiagonalSystem: () => (/* reexport safe */
|
|
227853
|
+
/* harmony export */ SolidPrimitive: () => (/* reexport safe */ _solid_SolidPrimitive__WEBPACK_IMPORTED_MODULE_94__.SolidPrimitive),
|
|
227854
|
+
/* harmony export */ SortableEdge: () => (/* reexport safe */ _polyface_IndexedEdgeMatcher__WEBPACK_IMPORTED_MODULE_115__.SortableEdge),
|
|
227855
|
+
/* harmony export */ SpacePolygonTriangulation: () => (/* reexport safe */ _topology_SpaceTriangulation__WEBPACK_IMPORTED_MODULE_128__.SpacePolygonTriangulation),
|
|
227856
|
+
/* harmony export */ Sphere: () => (/* reexport safe */ _solid_Sphere__WEBPACK_IMPORTED_MODULE_95__.Sphere),
|
|
227857
|
+
/* harmony export */ StandardViewIndex: () => (/* reexport safe */ _Geometry__WEBPACK_IMPORTED_MODULE_37__.StandardViewIndex),
|
|
227858
|
+
/* harmony export */ SteppedIndexFunctionFactory: () => (/* reexport safe */ _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_131__.SteppedIndexFunctionFactory),
|
|
227859
|
+
/* harmony export */ StringifiedClipVector: () => (/* reexport safe */ _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_44__.StringifiedClipVector),
|
|
227860
|
+
/* harmony export */ StrokeCountMap: () => (/* reexport safe */ _curve_Query_StrokeCountMap__WEBPACK_IMPORTED_MODULE_88__.StrokeCountMap),
|
|
227861
|
+
/* harmony export */ StrokeOptions: () => (/* reexport safe */ _curve_StrokeOptions__WEBPACK_IMPORTED_MODULE_83__.StrokeOptions),
|
|
227862
|
+
/* harmony export */ SweepContour: () => (/* reexport safe */ _solid_SweepContour__WEBPACK_IMPORTED_MODULE_96__.SweepContour),
|
|
227863
|
+
/* harmony export */ SweepLineStringToFacetsOptions: () => (/* reexport safe */ _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__.SweepLineStringToFacetsOptions),
|
|
227864
|
+
/* harmony export */ TaggedNumericConstants: () => (/* reexport safe */ _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_127__.TaggedNumericConstants),
|
|
227865
|
+
/* harmony export */ TaggedNumericData: () => (/* reexport safe */ _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_127__.TaggedNumericData),
|
|
227866
|
+
/* harmony export */ TorusPipe: () => (/* reexport safe */ _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_97__.TorusPipe),
|
|
227867
|
+
/* harmony export */ Transform: () => (/* reexport safe */ _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_33__.Transform),
|
|
227868
|
+
/* harmony export */ TransitionSpiral3d: () => (/* reexport safe */ _curve_spiral_TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_84__.TransitionSpiral3d),
|
|
227869
|
+
/* harmony export */ TriDiagonalSystem: () => (/* reexport safe */ _numerics_TriDiagonalSystem__WEBPACK_IMPORTED_MODULE_59__.TriDiagonalSystem),
|
|
227721
227870
|
/* harmony export */ TriangleLocationDetail: () => (/* reexport safe */ _geometry3d_BarycentricTriangle__WEBPACK_IMPORTED_MODULE_3__.TriangleLocationDetail),
|
|
227722
|
-
/* harmony export */ TriangularFacetLocationDetail: () => (/* reexport safe */
|
|
227723
|
-
/* harmony export */ UVSelect: () => (/* reexport safe */
|
|
227724
|
-
/* harmony export */ UVSurfaceOps: () => (/* reexport safe */
|
|
227725
|
-
/* harmony export */ UnionOfConvexClipPlaneSets: () => (/* reexport safe */
|
|
227726
|
-
/* harmony export */ UnionRegion: () => (/* reexport safe */
|
|
227727
|
-
/* harmony export */ UnivariateBezier: () => (/* reexport safe */
|
|
227871
|
+
/* harmony export */ TriangularFacetLocationDetail: () => (/* reexport safe */ _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__.TriangularFacetLocationDetail),
|
|
227872
|
+
/* harmony export */ UVSelect: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.UVSelect),
|
|
227873
|
+
/* harmony export */ UVSurfaceOps: () => (/* reexport safe */ _geometry3d_UVSurfaceOps__WEBPACK_IMPORTED_MODULE_34__.UVSurfaceOps),
|
|
227874
|
+
/* harmony export */ UnionOfConvexClipPlaneSets: () => (/* reexport safe */ _clipping_UnionOfConvexClipPlaneSets__WEBPACK_IMPORTED_MODULE_42__.UnionOfConvexClipPlaneSets),
|
|
227875
|
+
/* harmony export */ UnionRegion: () => (/* reexport safe */ _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_87__.UnionRegion),
|
|
227876
|
+
/* harmony export */ UnivariateBezier: () => (/* reexport safe */ _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__.UnivariateBezier),
|
|
227728
227877
|
/* harmony export */ Vector2d: () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.Vector2d),
|
|
227729
227878
|
/* harmony export */ Vector3d: () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.Vector3d),
|
|
227730
227879
|
/* harmony export */ Vector3dArray: () => (/* reexport safe */ _geometry3d_PointHelpers__WEBPACK_IMPORTED_MODULE_24__.Vector3dArray),
|
|
227731
|
-
/* harmony export */ WeightStyle: () => (/* reexport safe */
|
|
227880
|
+
/* harmony export */ WeightStyle: () => (/* reexport safe */ _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__.WeightStyle),
|
|
227732
227881
|
/* harmony export */ XY: () => (/* reexport safe */ _geometry3d_Point2dVector2d__WEBPACK_IMPORTED_MODULE_22__.XY),
|
|
227733
|
-
/* harmony export */ XYAndZ: () => (/* reexport safe */
|
|
227882
|
+
/* harmony export */ XYAndZ: () => (/* reexport safe */ _geometry3d_XYZProps__WEBPACK_IMPORTED_MODULE_35__.XYAndZ),
|
|
227734
227883
|
/* harmony export */ XYZ: () => (/* reexport safe */ _geometry3d_Point3dVector3d__WEBPACK_IMPORTED_MODULE_23__.XYZ),
|
|
227735
|
-
/* harmony export */ YawPitchRollAngles: () => (/* reexport safe */
|
|
227736
|
-
/* harmony export */ compareRange1dLexicalLowHigh: () => (/* reexport safe */
|
|
227884
|
+
/* harmony export */ YawPitchRollAngles: () => (/* reexport safe */ _geometry3d_YawPitchRollAngles__WEBPACK_IMPORTED_MODULE_36__.YawPitchRollAngles),
|
|
227885
|
+
/* harmony export */ compareRange1dLexicalLowHigh: () => (/* reexport safe */ _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__.compareRange1dLexicalLowHigh)
|
|
227737
227886
|
/* harmony export */ });
|
|
227738
227887
|
/* harmony import */ var _geometry3d_Angle__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./geometry3d/Angle */ "../../core/geometry/lib/esm/geometry3d/Angle.js");
|
|
227739
227888
|
/* harmony import */ var _geometry3d_AngleSweep__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./geometry3d/AngleSweep */ "../../core/geometry/lib/esm/geometry3d/AngleSweep.js");
|
|
@@ -227766,108 +227915,109 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
227766
227915
|
/* harmony import */ var _geometry3d_Range__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./geometry3d/Range */ "../../core/geometry/lib/esm/geometry3d/Range.js");
|
|
227767
227916
|
/* harmony import */ var _geometry3d_Ray2d__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./geometry3d/Ray2d */ "../../core/geometry/lib/esm/geometry3d/Ray2d.js");
|
|
227768
227917
|
/* harmony import */ var _geometry3d_Ray3d__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./geometry3d/Ray3d */ "../../core/geometry/lib/esm/geometry3d/Ray3d.js");
|
|
227769
|
-
/* harmony import */ var
|
|
227770
|
-
/* harmony import */ var
|
|
227771
|
-
/* harmony import */ var
|
|
227772
|
-
/* harmony import */ var
|
|
227773
|
-
/* harmony import */ var
|
|
227774
|
-
/* harmony import */ var
|
|
227775
|
-
/* harmony import */ var
|
|
227776
|
-
/* harmony import */ var
|
|
227777
|
-
/* harmony import */ var
|
|
227778
|
-
/* harmony import */ var
|
|
227779
|
-
/* harmony import */ var
|
|
227780
|
-
/* harmony import */ var
|
|
227781
|
-
/* harmony import */ var
|
|
227782
|
-
/* harmony import */ var
|
|
227783
|
-
/* harmony import */ var
|
|
227784
|
-
/* harmony import */ var
|
|
227785
|
-
/* harmony import */ var
|
|
227786
|
-
/* harmony import */ var
|
|
227787
|
-
/* harmony import */ var
|
|
227788
|
-
/* harmony import */ var
|
|
227789
|
-
/* harmony import */ var
|
|
227790
|
-
/* harmony import */ var
|
|
227791
|
-
/* harmony import */ var
|
|
227792
|
-
/* harmony import */ var
|
|
227793
|
-
/* harmony import */ var
|
|
227794
|
-
/* harmony import */ var
|
|
227795
|
-
/* harmony import */ var
|
|
227796
|
-
/* harmony import */ var
|
|
227797
|
-
/* harmony import */ var
|
|
227798
|
-
/* harmony import */ var
|
|
227799
|
-
/* harmony import */ var
|
|
227800
|
-
/* harmony import */ var
|
|
227801
|
-
/* harmony import */ var
|
|
227802
|
-
/* harmony import */ var
|
|
227803
|
-
/* harmony import */ var
|
|
227804
|
-
/* harmony import */ var
|
|
227805
|
-
/* harmony import */ var
|
|
227806
|
-
/* harmony import */ var
|
|
227807
|
-
/* harmony import */ var
|
|
227808
|
-
/* harmony import */ var
|
|
227809
|
-
/* harmony import */ var
|
|
227810
|
-
/* harmony import */ var
|
|
227811
|
-
/* harmony import */ var
|
|
227812
|
-
/* harmony import */ var
|
|
227813
|
-
/* harmony import */ var
|
|
227814
|
-
/* harmony import */ var
|
|
227815
|
-
/* harmony import */ var
|
|
227816
|
-
/* harmony import */ var
|
|
227817
|
-
/* harmony import */ var
|
|
227818
|
-
/* harmony import */ var
|
|
227819
|
-
/* harmony import */ var
|
|
227820
|
-
/* harmony import */ var
|
|
227821
|
-
/* harmony import */ var
|
|
227822
|
-
/* harmony import */ var
|
|
227823
|
-
/* harmony import */ var
|
|
227824
|
-
/* harmony import */ var
|
|
227825
|
-
/* harmony import */ var
|
|
227826
|
-
/* harmony import */ var
|
|
227827
|
-
/* harmony import */ var
|
|
227828
|
-
/* harmony import */ var
|
|
227829
|
-
/* harmony import */ var
|
|
227830
|
-
/* harmony import */ var
|
|
227831
|
-
/* harmony import */ var
|
|
227832
|
-
/* harmony import */ var
|
|
227833
|
-
/* harmony import */ var
|
|
227834
|
-
/* harmony import */ var
|
|
227835
|
-
/* harmony import */ var
|
|
227836
|
-
/* harmony import */ var
|
|
227837
|
-
/* harmony import */ var
|
|
227838
|
-
/* harmony import */ var
|
|
227839
|
-
/* harmony import */ var
|
|
227840
|
-
/* harmony import */ var
|
|
227841
|
-
/* harmony import */ var
|
|
227842
|
-
/* harmony import */ var
|
|
227843
|
-
/* harmony import */ var
|
|
227844
|
-
/* harmony import */ var
|
|
227845
|
-
/* harmony import */ var
|
|
227846
|
-
/* harmony import */ var
|
|
227847
|
-
/* harmony import */ var
|
|
227848
|
-
/* harmony import */ var
|
|
227849
|
-
/* harmony import */ var
|
|
227850
|
-
/* harmony import */ var
|
|
227851
|
-
/* harmony import */ var
|
|
227852
|
-
/* harmony import */ var
|
|
227853
|
-
/* harmony import */ var
|
|
227854
|
-
/* harmony import */ var
|
|
227855
|
-
/* harmony import */ var
|
|
227856
|
-
/* harmony import */ var
|
|
227857
|
-
/* harmony import */ var
|
|
227858
|
-
/* harmony import */ var
|
|
227859
|
-
/* harmony import */ var
|
|
227860
|
-
/* harmony import */ var
|
|
227861
|
-
/* harmony import */ var
|
|
227862
|
-
/* harmony import */ var
|
|
227863
|
-
/* harmony import */ var
|
|
227864
|
-
/* harmony import */ var
|
|
227865
|
-
/* harmony import */ var
|
|
227866
|
-
/* harmony import */ var
|
|
227867
|
-
/* harmony import */ var
|
|
227868
|
-
/* harmony import */ var
|
|
227869
|
-
/* harmony import */ var
|
|
227870
|
-
/* harmony import */ var
|
|
227918
|
+
/* harmony import */ var _geometry3d_ReusableObjectCache__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./geometry3d/ReusableObjectCache */ "../../core/geometry/lib/esm/geometry3d/ReusableObjectCache.js");
|
|
227919
|
+
/* harmony import */ var _geometry3d_Segment1d__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./geometry3d/Segment1d */ "../../core/geometry/lib/esm/geometry3d/Segment1d.js");
|
|
227920
|
+
/* harmony import */ var _geometry3d_Transform__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./geometry3d/Transform */ "../../core/geometry/lib/esm/geometry3d/Transform.js");
|
|
227921
|
+
/* harmony import */ var _geometry3d_UVSurfaceOps__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./geometry3d/UVSurfaceOps */ "../../core/geometry/lib/esm/geometry3d/UVSurfaceOps.js");
|
|
227922
|
+
/* harmony import */ var _geometry3d_XYZProps__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./geometry3d/XYZProps */ "../../core/geometry/lib/esm/geometry3d/XYZProps.js");
|
|
227923
|
+
/* harmony import */ var _geometry3d_YawPitchRollAngles__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./geometry3d/YawPitchRollAngles */ "../../core/geometry/lib/esm/geometry3d/YawPitchRollAngles.js");
|
|
227924
|
+
/* harmony import */ var _Geometry__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./Geometry */ "../../core/geometry/lib/esm/Geometry.js");
|
|
227925
|
+
/* harmony import */ var _Constant__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./Constant */ "../../core/geometry/lib/esm/Constant.js");
|
|
227926
|
+
/* harmony import */ var _clipping_BooleanClipFactory__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./clipping/BooleanClipFactory */ "../../core/geometry/lib/esm/clipping/BooleanClipFactory.js");
|
|
227927
|
+
/* harmony import */ var _clipping_ClipPlane__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./clipping/ClipPlane */ "../../core/geometry/lib/esm/clipping/ClipPlane.js");
|
|
227928
|
+
/* harmony import */ var _clipping_ConvexClipPlaneSet__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./clipping/ConvexClipPlaneSet */ "../../core/geometry/lib/esm/clipping/ConvexClipPlaneSet.js");
|
|
227929
|
+
/* harmony import */ var _clipping_UnionOfConvexClipPlaneSets__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./clipping/UnionOfConvexClipPlaneSets */ "../../core/geometry/lib/esm/clipping/UnionOfConvexClipPlaneSets.js");
|
|
227930
|
+
/* harmony import */ var _clipping_ClipPrimitive__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./clipping/ClipPrimitive */ "../../core/geometry/lib/esm/clipping/ClipPrimitive.js");
|
|
227931
|
+
/* harmony import */ var _clipping_ClipVector__WEBPACK_IMPORTED_MODULE_44__ = __webpack_require__(/*! ./clipping/ClipVector */ "../../core/geometry/lib/esm/clipping/ClipVector.js");
|
|
227932
|
+
/* harmony import */ var _clipping_ClipUtils__WEBPACK_IMPORTED_MODULE_45__ = __webpack_require__(/*! ./clipping/ClipUtils */ "../../core/geometry/lib/esm/clipping/ClipUtils.js");
|
|
227933
|
+
/* harmony import */ var _numerics_ConvexPolygon2d__WEBPACK_IMPORTED_MODULE_46__ = __webpack_require__(/*! ./numerics/ConvexPolygon2d */ "../../core/geometry/lib/esm/numerics/ConvexPolygon2d.js");
|
|
227934
|
+
/* harmony import */ var _geometry4d_PlaneByOriginAndVectors4d__WEBPACK_IMPORTED_MODULE_47__ = __webpack_require__(/*! ./geometry4d/PlaneByOriginAndVectors4d */ "../../core/geometry/lib/esm/geometry4d/PlaneByOriginAndVectors4d.js");
|
|
227935
|
+
/* harmony import */ var _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_48__ = __webpack_require__(/*! ./geometry4d/Point4d */ "../../core/geometry/lib/esm/geometry4d/Point4d.js");
|
|
227936
|
+
/* harmony import */ var _geometry4d_Matrix4d__WEBPACK_IMPORTED_MODULE_49__ = __webpack_require__(/*! ./geometry4d/Matrix4d */ "../../core/geometry/lib/esm/geometry4d/Matrix4d.js");
|
|
227937
|
+
/* harmony import */ var _geometry4d_Map4d__WEBPACK_IMPORTED_MODULE_50__ = __webpack_require__(/*! ./geometry4d/Map4d */ "../../core/geometry/lib/esm/geometry4d/Map4d.js");
|
|
227938
|
+
/* harmony import */ var _geometry4d_MomentData__WEBPACK_IMPORTED_MODULE_51__ = __webpack_require__(/*! ./geometry4d/MomentData */ "../../core/geometry/lib/esm/geometry4d/MomentData.js");
|
|
227939
|
+
/* harmony import */ var _numerics_BezierPolynomials__WEBPACK_IMPORTED_MODULE_52__ = __webpack_require__(/*! ./numerics/BezierPolynomials */ "../../core/geometry/lib/esm/numerics/BezierPolynomials.js");
|
|
227940
|
+
/* harmony import */ var _numerics_ClusterableArray__WEBPACK_IMPORTED_MODULE_53__ = __webpack_require__(/*! ./numerics/ClusterableArray */ "../../core/geometry/lib/esm/numerics/ClusterableArray.js");
|
|
227941
|
+
/* harmony import */ var _numerics_Complex__WEBPACK_IMPORTED_MODULE_54__ = __webpack_require__(/*! ./numerics/Complex */ "../../core/geometry/lib/esm/numerics/Complex.js");
|
|
227942
|
+
/* harmony import */ var _numerics_PascalCoefficients__WEBPACK_IMPORTED_MODULE_55__ = __webpack_require__(/*! ./numerics/PascalCoefficients */ "../../core/geometry/lib/esm/numerics/PascalCoefficients.js");
|
|
227943
|
+
/* harmony import */ var _numerics_Quadrature__WEBPACK_IMPORTED_MODULE_56__ = __webpack_require__(/*! ./numerics/Quadrature */ "../../core/geometry/lib/esm/numerics/Quadrature.js");
|
|
227944
|
+
/* harmony import */ var _numerics_Range1dArray__WEBPACK_IMPORTED_MODULE_57__ = __webpack_require__(/*! ./numerics/Range1dArray */ "../../core/geometry/lib/esm/numerics/Range1dArray.js");
|
|
227945
|
+
/* harmony import */ var _numerics_SmallSystem__WEBPACK_IMPORTED_MODULE_58__ = __webpack_require__(/*! ./numerics/SmallSystem */ "../../core/geometry/lib/esm/numerics/SmallSystem.js");
|
|
227946
|
+
/* harmony import */ var _numerics_TriDiagonalSystem__WEBPACK_IMPORTED_MODULE_59__ = __webpack_require__(/*! ./numerics/TriDiagonalSystem */ "../../core/geometry/lib/esm/numerics/TriDiagonalSystem.js");
|
|
227947
|
+
/* harmony import */ var _curve_Arc3d__WEBPACK_IMPORTED_MODULE_60__ = __webpack_require__(/*! ./curve/Arc3d */ "../../core/geometry/lib/esm/curve/Arc3d.js");
|
|
227948
|
+
/* harmony import */ var _curve_ConstructCurveBetweenCurves__WEBPACK_IMPORTED_MODULE_61__ = __webpack_require__(/*! ./curve/ConstructCurveBetweenCurves */ "../../core/geometry/lib/esm/curve/ConstructCurveBetweenCurves.js");
|
|
227949
|
+
/* harmony import */ var _curve_CoordinateXYZ__WEBPACK_IMPORTED_MODULE_62__ = __webpack_require__(/*! ./curve/CoordinateXYZ */ "../../core/geometry/lib/esm/curve/CoordinateXYZ.js");
|
|
227950
|
+
/* harmony import */ var _curve_CurveChainWithDistanceIndex__WEBPACK_IMPORTED_MODULE_63__ = __webpack_require__(/*! ./curve/CurveChainWithDistanceIndex */ "../../core/geometry/lib/esm/curve/CurveChainWithDistanceIndex.js");
|
|
227951
|
+
/* harmony import */ var _curve_CurveExtendMode__WEBPACK_IMPORTED_MODULE_64__ = __webpack_require__(/*! ./curve/CurveExtendMode */ "../../core/geometry/lib/esm/curve/CurveExtendMode.js");
|
|
227952
|
+
/* harmony import */ var _curve_CurveCollection__WEBPACK_IMPORTED_MODULE_65__ = __webpack_require__(/*! ./curve/CurveCollection */ "../../core/geometry/lib/esm/curve/CurveCollection.js");
|
|
227953
|
+
/* harmony import */ var _curve_CurveCurve__WEBPACK_IMPORTED_MODULE_66__ = __webpack_require__(/*! ./curve/CurveCurve */ "../../core/geometry/lib/esm/curve/CurveCurve.js");
|
|
227954
|
+
/* harmony import */ var _curve_CurveLocationDetail__WEBPACK_IMPORTED_MODULE_67__ = __webpack_require__(/*! ./curve/CurveLocationDetail */ "../../core/geometry/lib/esm/curve/CurveLocationDetail.js");
|
|
227955
|
+
/* harmony import */ var _curve_CurveFactory__WEBPACK_IMPORTED_MODULE_68__ = __webpack_require__(/*! ./curve/CurveFactory */ "../../core/geometry/lib/esm/curve/CurveFactory.js");
|
|
227956
|
+
/* harmony import */ var _curve_CurveOps__WEBPACK_IMPORTED_MODULE_69__ = __webpack_require__(/*! ./curve/CurveOps */ "../../core/geometry/lib/esm/curve/CurveOps.js");
|
|
227957
|
+
/* harmony import */ var _curve_CurvePrimitive__WEBPACK_IMPORTED_MODULE_70__ = __webpack_require__(/*! ./curve/CurvePrimitive */ "../../core/geometry/lib/esm/curve/CurvePrimitive.js");
|
|
227958
|
+
/* harmony import */ var _curve_CurveProcessor__WEBPACK_IMPORTED_MODULE_71__ = __webpack_require__(/*! ./curve/CurveProcessor */ "../../core/geometry/lib/esm/curve/CurveProcessor.js");
|
|
227959
|
+
/* harmony import */ var _curve_GeometryQuery__WEBPACK_IMPORTED_MODULE_72__ = __webpack_require__(/*! ./curve/GeometryQuery */ "../../core/geometry/lib/esm/curve/GeometryQuery.js");
|
|
227960
|
+
/* harmony import */ var _curve_LineSegment3d__WEBPACK_IMPORTED_MODULE_73__ = __webpack_require__(/*! ./curve/LineSegment3d */ "../../core/geometry/lib/esm/curve/LineSegment3d.js");
|
|
227961
|
+
/* harmony import */ var _curve_LineString3d__WEBPACK_IMPORTED_MODULE_74__ = __webpack_require__(/*! ./curve/LineString3d */ "../../core/geometry/lib/esm/curve/LineString3d.js");
|
|
227962
|
+
/* harmony import */ var _curve_Loop__WEBPACK_IMPORTED_MODULE_75__ = __webpack_require__(/*! ./curve/Loop */ "../../core/geometry/lib/esm/curve/Loop.js");
|
|
227963
|
+
/* harmony import */ var _curve_OffsetOptions__WEBPACK_IMPORTED_MODULE_76__ = __webpack_require__(/*! ./curve/OffsetOptions */ "../../core/geometry/lib/esm/curve/OffsetOptions.js");
|
|
227964
|
+
/* harmony import */ var _curve_ParityRegion__WEBPACK_IMPORTED_MODULE_77__ = __webpack_require__(/*! ./curve/ParityRegion */ "../../core/geometry/lib/esm/curve/ParityRegion.js");
|
|
227965
|
+
/* harmony import */ var _curve_Path__WEBPACK_IMPORTED_MODULE_78__ = __webpack_require__(/*! ./curve/Path */ "../../core/geometry/lib/esm/curve/Path.js");
|
|
227966
|
+
/* harmony import */ var _curve_RegionMomentsXY__WEBPACK_IMPORTED_MODULE_79__ = __webpack_require__(/*! ./curve/RegionMomentsXY */ "../../core/geometry/lib/esm/curve/RegionMomentsXY.js");
|
|
227967
|
+
/* harmony import */ var _curve_RegionOps__WEBPACK_IMPORTED_MODULE_80__ = __webpack_require__(/*! ./curve/RegionOps */ "../../core/geometry/lib/esm/curve/RegionOps.js");
|
|
227968
|
+
/* harmony import */ var _curve_PointString3d__WEBPACK_IMPORTED_MODULE_81__ = __webpack_require__(/*! ./curve/PointString3d */ "../../core/geometry/lib/esm/curve/PointString3d.js");
|
|
227969
|
+
/* harmony import */ var _curve_ProxyCurve__WEBPACK_IMPORTED_MODULE_82__ = __webpack_require__(/*! ./curve/ProxyCurve */ "../../core/geometry/lib/esm/curve/ProxyCurve.js");
|
|
227970
|
+
/* harmony import */ var _curve_StrokeOptions__WEBPACK_IMPORTED_MODULE_83__ = __webpack_require__(/*! ./curve/StrokeOptions */ "../../core/geometry/lib/esm/curve/StrokeOptions.js");
|
|
227971
|
+
/* harmony import */ var _curve_spiral_TransitionSpiral3d__WEBPACK_IMPORTED_MODULE_84__ = __webpack_require__(/*! ./curve/spiral/TransitionSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/TransitionSpiral3d.js");
|
|
227972
|
+
/* harmony import */ var _curve_spiral_IntegratedSpiral3d__WEBPACK_IMPORTED_MODULE_85__ = __webpack_require__(/*! ./curve/spiral/IntegratedSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/IntegratedSpiral3d.js");
|
|
227973
|
+
/* harmony import */ var _curve_spiral_DirectSpiral3d__WEBPACK_IMPORTED_MODULE_86__ = __webpack_require__(/*! ./curve/spiral/DirectSpiral3d */ "../../core/geometry/lib/esm/curve/spiral/DirectSpiral3d.js");
|
|
227974
|
+
/* harmony import */ var _curve_UnionRegion__WEBPACK_IMPORTED_MODULE_87__ = __webpack_require__(/*! ./curve/UnionRegion */ "../../core/geometry/lib/esm/curve/UnionRegion.js");
|
|
227975
|
+
/* harmony import */ var _curve_Query_StrokeCountMap__WEBPACK_IMPORTED_MODULE_88__ = __webpack_require__(/*! ./curve/Query/StrokeCountMap */ "../../core/geometry/lib/esm/curve/Query/StrokeCountMap.js");
|
|
227976
|
+
/* harmony import */ var _solid_Box__WEBPACK_IMPORTED_MODULE_89__ = __webpack_require__(/*! ./solid/Box */ "../../core/geometry/lib/esm/solid/Box.js");
|
|
227977
|
+
/* harmony import */ var _solid_Cone__WEBPACK_IMPORTED_MODULE_90__ = __webpack_require__(/*! ./solid/Cone */ "../../core/geometry/lib/esm/solid/Cone.js");
|
|
227978
|
+
/* harmony import */ var _solid_LinearSweep__WEBPACK_IMPORTED_MODULE_91__ = __webpack_require__(/*! ./solid/LinearSweep */ "../../core/geometry/lib/esm/solid/LinearSweep.js");
|
|
227979
|
+
/* harmony import */ var _solid_RotationalSweep__WEBPACK_IMPORTED_MODULE_92__ = __webpack_require__(/*! ./solid/RotationalSweep */ "../../core/geometry/lib/esm/solid/RotationalSweep.js");
|
|
227980
|
+
/* harmony import */ var _solid_RuledSweep__WEBPACK_IMPORTED_MODULE_93__ = __webpack_require__(/*! ./solid/RuledSweep */ "../../core/geometry/lib/esm/solid/RuledSweep.js");
|
|
227981
|
+
/* harmony import */ var _solid_SolidPrimitive__WEBPACK_IMPORTED_MODULE_94__ = __webpack_require__(/*! ./solid/SolidPrimitive */ "../../core/geometry/lib/esm/solid/SolidPrimitive.js");
|
|
227982
|
+
/* harmony import */ var _solid_Sphere__WEBPACK_IMPORTED_MODULE_95__ = __webpack_require__(/*! ./solid/Sphere */ "../../core/geometry/lib/esm/solid/Sphere.js");
|
|
227983
|
+
/* harmony import */ var _solid_SweepContour__WEBPACK_IMPORTED_MODULE_96__ = __webpack_require__(/*! ./solid/SweepContour */ "../../core/geometry/lib/esm/solid/SweepContour.js");
|
|
227984
|
+
/* harmony import */ var _solid_TorusPipe__WEBPACK_IMPORTED_MODULE_97__ = __webpack_require__(/*! ./solid/TorusPipe */ "../../core/geometry/lib/esm/solid/TorusPipe.js");
|
|
227985
|
+
/* harmony import */ var _bspline_AkimaCurve3d__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./bspline/AkimaCurve3d */ "../../core/geometry/lib/esm/bspline/AkimaCurve3d.js");
|
|
227986
|
+
/* harmony import */ var _bspline_Bezier1dNd__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./bspline/Bezier1dNd */ "../../core/geometry/lib/esm/bspline/Bezier1dNd.js");
|
|
227987
|
+
/* harmony import */ var _bspline_BezierCurveBase__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./bspline/BezierCurveBase */ "../../core/geometry/lib/esm/bspline/BezierCurveBase.js");
|
|
227988
|
+
/* harmony import */ var _bspline_BezierCurve3d__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./bspline/BezierCurve3d */ "../../core/geometry/lib/esm/bspline/BezierCurve3d.js");
|
|
227989
|
+
/* harmony import */ var _bspline_BezierCurve3dH__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./bspline/BezierCurve3dH */ "../../core/geometry/lib/esm/bspline/BezierCurve3dH.js");
|
|
227990
|
+
/* harmony import */ var _bspline_BSplineCurve__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./bspline/BSplineCurve */ "../../core/geometry/lib/esm/bspline/BSplineCurve.js");
|
|
227991
|
+
/* harmony import */ var _bspline_BSplineCurveOps__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./bspline/BSplineCurveOps */ "../../core/geometry/lib/esm/bspline/BSplineCurveOps.js");
|
|
227992
|
+
/* harmony import */ var _bspline_BSpline1dNd__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./bspline/BSpline1dNd */ "../../core/geometry/lib/esm/bspline/BSpline1dNd.js");
|
|
227993
|
+
/* harmony import */ var _bspline_BSplineCurve3dH__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./bspline/BSplineCurve3dH */ "../../core/geometry/lib/esm/bspline/BSplineCurve3dH.js");
|
|
227994
|
+
/* harmony import */ var _bspline_BSplineSurface__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./bspline/BSplineSurface */ "../../core/geometry/lib/esm/bspline/BSplineSurface.js");
|
|
227995
|
+
/* harmony import */ var _bspline_InterpolationCurve3d__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./bspline/InterpolationCurve3d */ "../../core/geometry/lib/esm/bspline/InterpolationCurve3d.js");
|
|
227996
|
+
/* harmony import */ var _bspline_KnotVector__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./bspline/KnotVector */ "../../core/geometry/lib/esm/bspline/KnotVector.js");
|
|
227997
|
+
/* harmony import */ var _polyface_AuxData__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./polyface/AuxData */ "../../core/geometry/lib/esm/polyface/AuxData.js");
|
|
227998
|
+
/* harmony import */ var _polyface_BoxTopology__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./polyface/BoxTopology */ "../../core/geometry/lib/esm/polyface/BoxTopology.js");
|
|
227999
|
+
/* harmony import */ var _polyface_FacetFaceData__WEBPACK_IMPORTED_MODULE_112__ = __webpack_require__(/*! ./polyface/FacetFaceData */ "../../core/geometry/lib/esm/polyface/FacetFaceData.js");
|
|
228000
|
+
/* harmony import */ var _polyface_Polyface__WEBPACK_IMPORTED_MODULE_113__ = __webpack_require__(/*! ./polyface/Polyface */ "../../core/geometry/lib/esm/polyface/Polyface.js");
|
|
228001
|
+
/* harmony import */ var _polyface_FacetLocationDetail__WEBPACK_IMPORTED_MODULE_114__ = __webpack_require__(/*! ./polyface/FacetLocationDetail */ "../../core/geometry/lib/esm/polyface/FacetLocationDetail.js");
|
|
228002
|
+
/* harmony import */ var _polyface_IndexedEdgeMatcher__WEBPACK_IMPORTED_MODULE_115__ = __webpack_require__(/*! ./polyface/IndexedEdgeMatcher */ "../../core/geometry/lib/esm/polyface/IndexedEdgeMatcher.js");
|
|
228003
|
+
/* harmony import */ var _polyface_IndexedPolyfaceVisitor__WEBPACK_IMPORTED_MODULE_116__ = __webpack_require__(/*! ./polyface/IndexedPolyfaceVisitor */ "../../core/geometry/lib/esm/polyface/IndexedPolyfaceVisitor.js");
|
|
228004
|
+
/* harmony import */ var _polyface_IndexedPolyfaceWalker__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./polyface/IndexedPolyfaceWalker */ "../../core/geometry/lib/esm/polyface/IndexedPolyfaceWalker.js");
|
|
228005
|
+
/* harmony import */ var _polyface_multiclip_GriddedRaggedRange2dSet__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./polyface/multiclip/GriddedRaggedRange2dSet */ "../../core/geometry/lib/esm/polyface/multiclip/GriddedRaggedRange2dSet.js");
|
|
228006
|
+
/* harmony import */ var _polyface_multiclip_GriddedRaggedRange2dSetWithOverflow__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./polyface/multiclip/GriddedRaggedRange2dSetWithOverflow */ "../../core/geometry/lib/esm/polyface/multiclip/GriddedRaggedRange2dSetWithOverflow.js");
|
|
228007
|
+
/* harmony import */ var _polyface_PolyfaceBuilder__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./polyface/PolyfaceBuilder */ "../../core/geometry/lib/esm/polyface/PolyfaceBuilder.js");
|
|
228008
|
+
/* harmony import */ var _polyface_PolyfaceData__WEBPACK_IMPORTED_MODULE_121__ = __webpack_require__(/*! ./polyface/PolyfaceData */ "../../core/geometry/lib/esm/polyface/PolyfaceData.js");
|
|
228009
|
+
/* harmony import */ var _polyface_PolyfaceQuery__WEBPACK_IMPORTED_MODULE_122__ = __webpack_require__(/*! ./polyface/PolyfaceQuery */ "../../core/geometry/lib/esm/polyface/PolyfaceQuery.js");
|
|
228010
|
+
/* harmony import */ var _polyface_PolyfaceClip__WEBPACK_IMPORTED_MODULE_123__ = __webpack_require__(/*! ./polyface/PolyfaceClip */ "../../core/geometry/lib/esm/polyface/PolyfaceClip.js");
|
|
228011
|
+
/* harmony import */ var _polyface_RangeTree_Point3dArrayRangeTreeContext__WEBPACK_IMPORTED_MODULE_124__ = __webpack_require__(/*! ./polyface/RangeTree/Point3dArrayRangeTreeContext */ "../../core/geometry/lib/esm/polyface/RangeTree/Point3dArrayRangeTreeContext.js");
|
|
228012
|
+
/* harmony import */ var _polyface_RangeTree_LineString3dRangeTreeContext__WEBPACK_IMPORTED_MODULE_125__ = __webpack_require__(/*! ./polyface/RangeTree/LineString3dRangeTreeContext */ "../../core/geometry/lib/esm/polyface/RangeTree/LineString3dRangeTreeContext.js");
|
|
228013
|
+
/* harmony import */ var _polyface_RangeTree_PolyfaceRangeTreeContext__WEBPACK_IMPORTED_MODULE_126__ = __webpack_require__(/*! ./polyface/RangeTree/PolyfaceRangeTreeContext */ "../../core/geometry/lib/esm/polyface/RangeTree/PolyfaceRangeTreeContext.js");
|
|
228014
|
+
/* harmony import */ var _polyface_TaggedNumericData__WEBPACK_IMPORTED_MODULE_127__ = __webpack_require__(/*! ./polyface/TaggedNumericData */ "../../core/geometry/lib/esm/polyface/TaggedNumericData.js");
|
|
228015
|
+
/* harmony import */ var _topology_SpaceTriangulation__WEBPACK_IMPORTED_MODULE_128__ = __webpack_require__(/*! ./topology/SpaceTriangulation */ "../../core/geometry/lib/esm/topology/SpaceTriangulation.js");
|
|
228016
|
+
/* harmony import */ var _serialization_IModelJsonSchema__WEBPACK_IMPORTED_MODULE_129__ = __webpack_require__(/*! ./serialization/IModelJsonSchema */ "../../core/geometry/lib/esm/serialization/IModelJsonSchema.js");
|
|
228017
|
+
/* harmony import */ var _serialization_DeepCompare__WEBPACK_IMPORTED_MODULE_130__ = __webpack_require__(/*! ./serialization/DeepCompare */ "../../core/geometry/lib/esm/serialization/DeepCompare.js");
|
|
228018
|
+
/* harmony import */ var _serialization_GeometrySamples__WEBPACK_IMPORTED_MODULE_131__ = __webpack_require__(/*! ./serialization/GeometrySamples */ "../../core/geometry/lib/esm/serialization/GeometrySamples.js");
|
|
228019
|
+
/* harmony import */ var _serialization_SerializationHelpers__WEBPACK_IMPORTED_MODULE_132__ = __webpack_require__(/*! ./serialization/SerializationHelpers */ "../../core/geometry/lib/esm/serialization/SerializationHelpers.js");
|
|
228020
|
+
/* harmony import */ var _serialization_BentleyGeometryFlatBuffer__WEBPACK_IMPORTED_MODULE_133__ = __webpack_require__(/*! ./serialization/BentleyGeometryFlatBuffer */ "../../core/geometry/lib/esm/serialization/BentleyGeometryFlatBuffer.js");
|
|
227871
228021
|
/*---------------------------------------------------------------------------------------------
|
|
227872
228022
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
227873
228023
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -228122,6 +228272,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
228122
228272
|
|
|
228123
228273
|
|
|
228124
228274
|
|
|
228275
|
+
|
|
228125
228276
|
|
|
228126
228277
|
|
|
228127
228278
|
/***/ }),
|
|
@@ -255704,7 +255855,7 @@ class GrowableXYZArray extends _IndexedXYZCollection__WEBPACK_IMPORTED_MODULE_0_
|
|
|
255704
255855
|
* * Point3d
|
|
255705
255856
|
* * An array of 2 doubles
|
|
255706
255857
|
* * An array of 3 doubles
|
|
255707
|
-
* *
|
|
255858
|
+
* * An IndexedXYZCollection
|
|
255708
255859
|
* * Any json object satisfying Point3d.isXYAndZ
|
|
255709
255860
|
* * Any json object satisfying Point3d.isXAndY
|
|
255710
255861
|
* * A Float64Array of doubles, interpreted as xyzxyz
|
|
@@ -269961,61 +270112,60 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
269961
270112
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
269962
270113
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
269963
270114
|
*--------------------------------------------------------------------------------------------*/
|
|
269964
|
-
|
|
269965
270115
|
/** @packageDocumentation
|
|
269966
270116
|
* @module ArraysAndInterfaces
|
|
269967
270117
|
*/
|
|
270118
|
+
|
|
269968
270119
|
/**
|
|
269969
|
-
*
|
|
269970
|
-
* * Derived class must implement
|
|
269971
|
-
*
|
|
269972
|
-
* * `clearForCache (data: T)` -- tidy up `data` so it can be reused.
|
|
269973
|
-
* @internal
|
|
270120
|
+
* Abstract class managing an array of objects of type T, available for reuse by trusted callers.
|
|
270121
|
+
* * Derived class must implement `createForCache` and `clearForCache`.
|
|
270122
|
+
* @public
|
|
269974
270123
|
*/
|
|
269975
270124
|
class ReusableObjectCache {
|
|
269976
270125
|
_cachedObjects;
|
|
269977
|
-
|
|
269978
|
-
|
|
269979
|
-
|
|
270126
|
+
_numDrop;
|
|
270127
|
+
_numCreate;
|
|
270128
|
+
_numReuse;
|
|
269980
270129
|
/**
|
|
269981
|
-
*
|
|
270130
|
+
* Create a new cache for objects of type T.
|
|
269982
270131
|
*/
|
|
269983
270132
|
constructor() {
|
|
269984
270133
|
this._cachedObjects = [];
|
|
269985
|
-
this.
|
|
269986
|
-
this.
|
|
269987
|
-
this.
|
|
270134
|
+
this._numDrop = 0;
|
|
270135
|
+
this._numCreate = 0;
|
|
270136
|
+
this._numReuse = 0;
|
|
269988
270137
|
}
|
|
269989
|
-
/**
|
|
269990
|
-
*
|
|
269991
|
-
*
|
|
270138
|
+
/**
|
|
270139
|
+
* Present `data` for storage in the cache, and hence reuse by any subsequent [[grabFromCache]].
|
|
270140
|
+
* * `data` will be sent to [[clearForCache]].
|
|
270141
|
+
* * The caller should never refer to `data` again.
|
|
270142
|
+
* @param data object to return to the cache.
|
|
269992
270143
|
*/
|
|
269993
270144
|
dropToCache(data) {
|
|
269994
270145
|
if (data) {
|
|
269995
|
-
this.
|
|
270146
|
+
this._numDrop++;
|
|
269996
270147
|
this.clearForCache(data);
|
|
269997
270148
|
this._cachedObjects.push(data);
|
|
269998
270149
|
}
|
|
269999
270150
|
}
|
|
270000
270151
|
/**
|
|
270001
|
-
*
|
|
270002
|
-
*
|
|
270003
|
-
* * That is, the cache does not remember it for any further management
|
|
270004
|
-
* @param data
|
|
270152
|
+
* Grab an object from the cache.
|
|
270153
|
+
* * The returned object becomes property of the caller: the cache does not remember it for any further management.
|
|
270005
270154
|
*/
|
|
270006
270155
|
grabFromCache() {
|
|
270007
270156
|
let data = this._cachedObjects.pop();
|
|
270008
270157
|
if (data === undefined) {
|
|
270009
270158
|
data = this.createForCache();
|
|
270010
|
-
this.
|
|
270159
|
+
this._numCreate++;
|
|
270011
270160
|
}
|
|
270012
270161
|
else {
|
|
270013
|
-
this.
|
|
270162
|
+
this._numReuse++;
|
|
270014
270163
|
}
|
|
270015
270164
|
return data;
|
|
270016
270165
|
}
|
|
270017
|
-
/**
|
|
270018
|
-
*
|
|
270166
|
+
/**
|
|
270167
|
+
* Drop multiple objects to the cache.
|
|
270168
|
+
* @param data on input, the data to drop. On output, data is an empty array.
|
|
270019
270169
|
*/
|
|
270020
270170
|
dropAllToCache(data) {
|
|
270021
270171
|
while (data.length > 0) {
|
|
@@ -270024,17 +270174,32 @@ class ReusableObjectCache {
|
|
|
270024
270174
|
}
|
|
270025
270175
|
}
|
|
270026
270176
|
/**
|
|
270027
|
-
* Cache of GrowableXYZArray.
|
|
270028
|
-
*
|
|
270029
|
-
* @
|
|
270177
|
+
* Cache of [[GrowableXYZArray]].
|
|
270178
|
+
* * 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.
|
|
270179
|
+
* @public
|
|
270030
270180
|
*/
|
|
270031
270181
|
class GrowableXYZArrayCache extends ReusableObjectCache {
|
|
270032
|
-
clearForCache(data) { data.length = 0; }
|
|
270033
|
-
createForCache() { return new _GrowableXYZArray__WEBPACK_IMPORTED_MODULE_0__.GrowableXYZArray(10); }
|
|
270034
|
-
constructor() { super(); }
|
|
270035
270182
|
/**
|
|
270036
|
-
*
|
|
270037
|
-
|
|
270183
|
+
* Create a new cache for [[GrowableXYZArray]] objects.
|
|
270184
|
+
*/
|
|
270185
|
+
constructor() {
|
|
270186
|
+
super();
|
|
270187
|
+
}
|
|
270188
|
+
/**
|
|
270189
|
+
* Create a new, ready-to-use [[GrowableXYZArray]].
|
|
270190
|
+
* @param numPoints initial capacity in xyz triples (default 10)
|
|
270191
|
+
* @param growthFactor reallocation expansion (default 1.5)
|
|
270192
|
+
*/
|
|
270193
|
+
createForCache(numPoints = 10, growthFactor = 1.5) {
|
|
270194
|
+
return new _GrowableXYZArray__WEBPACK_IMPORTED_MODULE_0__.GrowableXYZArray(numPoints, growthFactor);
|
|
270195
|
+
}
|
|
270196
|
+
/** Tidy up `data` so it can be reused. */
|
|
270197
|
+
clearForCache(data) {
|
|
270198
|
+
data.length = 0;
|
|
270199
|
+
}
|
|
270200
|
+
/**
|
|
270201
|
+
* Grab an array from the cache and immediately fill from a source.
|
|
270202
|
+
* @param source xyz to copy into the returned array.
|
|
270038
270203
|
*/
|
|
270039
270204
|
grabAndFill(source) {
|
|
270040
270205
|
const dest = this.grabFromCache();
|
|
@@ -335207,7 +335372,7 @@ class TestContext {
|
|
|
335207
335372
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
335208
335373
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${process.env.IMJS_URL_PREFIX ?? ""}api.bentley.com/imodels` } });
|
|
335209
335374
|
await core_frontend_1.NoRenderApp.startup({
|
|
335210
|
-
applicationVersion: "5.1.0-dev.
|
|
335375
|
+
applicationVersion: "5.1.0-dev.69",
|
|
335211
335376
|
applicationId: this.settings.gprid,
|
|
335212
335377
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.serviceAuthToken),
|
|
335213
335378
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -360296,7 +360461,7 @@ var loadLanguages = instance.loadLanguages;
|
|
|
360296
360461
|
/***/ ((module) => {
|
|
360297
360462
|
|
|
360298
360463
|
"use strict";
|
|
360299
|
-
module.exports = /*#__PURE__*/JSON.parse('{"name":"@itwin/core-frontend","version":"5.1.0-dev.
|
|
360464
|
+
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"}}');
|
|
360300
360465
|
|
|
360301
360466
|
/***/ }),
|
|
360302
360467
|
|