@itwin/ecschema-rpcinterface-tests 4.0.0-dev.63 → 4.0.0-dev.66
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/_d48c.bundled-tests.js.map +1 -1
- package/lib/dist/bundled-tests.js +46 -8
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/object-storage.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_5_0_node_modules_itwin_obj-e3e81d.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_3_1_node_modules_loaders_gl_draco_di-d3af41.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3.bundled-tests.js.map +1 -1
- package/package.json +15 -15
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_d48c.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_b\\
|
|
1
|
+
{"version":3,"file":"_d48c.bundled-tests.js","mappings":";;;;;;;;AAAA","sources":["file:///ignored|D:\\vsts_b\\13\\s\\common\\temp\\node_modules\\.pnpm\\@loaders.gl+worker-utils@3.3.1\\node_modules\\@loaders.gl\\worker-utils\\dist\\esm\\lib\\library-utils|../node/require-utils.node"],"names":[],"sourceRoot":""}
|
|
@@ -59216,27 +59216,63 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
59216
59216
|
* @module Geometry
|
|
59217
59217
|
*/
|
|
59218
59218
|
|
|
59219
|
+
/*
|
|
59220
|
+
The following visualizes the contents of frustum.points, which is sent to computeFrustumPlanes().
|
|
59221
|
+
The below numbers are the indices into that array.
|
|
59222
|
+
|
|
59223
|
+
2----------3
|
|
59224
|
+
/| /|
|
|
59225
|
+
/ 0--------/-1
|
|
59226
|
+
6----------7 /
|
|
59227
|
+
| / | /
|
|
59228
|
+
|/ |/
|
|
59229
|
+
4__________5
|
|
59230
|
+
|
|
59231
|
+
0 = left bottom rear
|
|
59232
|
+
1 = right bottom rear
|
|
59233
|
+
2 = left top right
|
|
59234
|
+
3 = right top rear
|
|
59235
|
+
4 = left bottom front
|
|
59236
|
+
5 = right bottom front
|
|
59237
|
+
6 = left top front
|
|
59238
|
+
7 = right top front
|
|
59239
|
+
*/
|
|
59240
|
+
// Ordering of sub-arrays is: [origin, a, b]
|
|
59219
59241
|
const planePointIndices = [
|
|
59220
|
-
[1,
|
|
59221
|
-
[0,
|
|
59222
|
-
[2,
|
|
59223
|
-
[0,
|
|
59224
|
-
[0,
|
|
59225
|
-
|
|
59242
|
+
[1, 5, 3],
|
|
59243
|
+
[0, 2, 4],
|
|
59244
|
+
[2, 3, 6],
|
|
59245
|
+
[0, 4, 1],
|
|
59246
|
+
[0, 1, 2], // back
|
|
59247
|
+
// Skip front plane because it can be too small. Instead derive it from back plane.
|
|
59248
|
+
// Otherwise, it would be: [4, 6, 5]
|
|
59226
59249
|
];
|
|
59227
59250
|
function computeFrustumPlanes(frustum) {
|
|
59228
59251
|
const planes = [];
|
|
59229
59252
|
const points = frustum.points;
|
|
59230
59253
|
const expandPlaneDistance = 1e-6;
|
|
59254
|
+
let normal;
|
|
59231
59255
|
for (const indices of planePointIndices) {
|
|
59232
59256
|
const i0 = indices[0], i1 = indices[1], i2 = indices[2];
|
|
59233
|
-
|
|
59257
|
+
normal = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.Vector3d.createCrossProductToPoints(points[i0], points[i1], points[i2]);
|
|
59234
59258
|
normal.normalizeInPlace();
|
|
59235
59259
|
const plane = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.ClipPlane.createNormalAndDistance(normal, normal.dotProduct(points[i0]) - expandPlaneDistance);
|
|
59236
59260
|
if (!plane)
|
|
59237
59261
|
return [];
|
|
59238
59262
|
planes.push(plane);
|
|
59239
59263
|
}
|
|
59264
|
+
// Derive front plane from back plane due to fact that front plane can become very tiny and cause precision issues, resulting in zero frustum planes. Deriving the front plane from the rear rect resolves this problem.
|
|
59265
|
+
// The back plane was the last plane processed above, so we can just consult the current value of `normal`.
|
|
59266
|
+
if (undefined !== normal) {
|
|
59267
|
+
normal.negate(normal); // negate the back plane
|
|
59268
|
+
// NB: Below, we make sure we calculate the distance based on a point on the front rect, not the rear rect!
|
|
59269
|
+
const plane = _itwin_core_geometry__WEBPACK_IMPORTED_MODULE_0__.ClipPlane.createNormalAndDistance(normal, normal.dotProduct(points[4]) - expandPlaneDistance);
|
|
59270
|
+
if (!plane)
|
|
59271
|
+
return [];
|
|
59272
|
+
planes.push(plane);
|
|
59273
|
+
}
|
|
59274
|
+
else
|
|
59275
|
+
return [];
|
|
59240
59276
|
return planes;
|
|
59241
59277
|
}
|
|
59242
59278
|
// Scratch variable used by FrustumPlanes.computeContainment.
|
|
@@ -59252,6 +59288,7 @@ class FrustumPlanes {
|
|
|
59252
59288
|
}
|
|
59253
59289
|
/** Compute the six planes of the specified frustum.
|
|
59254
59290
|
* If the frustum is degenerate - that is, its points do not represent a truncated pyramid - then the returned `FrustumPlanes` will contain zero planes.
|
|
59291
|
+
* @note This method assumes that the front plane is parallel to the back plane.
|
|
59255
59292
|
* @see [[isValid]] to test this condition.
|
|
59256
59293
|
*/
|
|
59257
59294
|
static fromFrustum(frustum) {
|
|
@@ -59278,6 +59315,7 @@ class FrustumPlanes {
|
|
|
59278
59315
|
}
|
|
59279
59316
|
/** Recompute the planes from the specified frustum.
|
|
59280
59317
|
* @returns true upon success, or false if the input frustum was degenerate, in which case [[isValid]] will be `false`.
|
|
59318
|
+
* @note This method assumes that the front plane is parallel to the back plane.
|
|
59281
59319
|
*/
|
|
59282
59320
|
init(frustum) {
|
|
59283
59321
|
this._planes = computeFrustumPlanes(frustum);
|
|
@@ -289137,7 +289175,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
289137
289175
|
/***/ ((module) => {
|
|
289138
289176
|
|
|
289139
289177
|
"use strict";
|
|
289140
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.
|
|
289178
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.66","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","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"./node_modules/@itwin/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core.git","directory":"core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.0.0-dev.66","@itwin/core-bentley":"workspace:^4.0.0-dev.66","@itwin/core-common":"workspace:^4.0.0-dev.66","@itwin/core-geometry":"workspace:^4.0.0-dev.66","@itwin/core-orbitgt":"workspace:^4.0.0-dev.66","@itwin/core-quantity":"workspace:^4.0.0-dev.66"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"^4.0.0-dev.32","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.0","@types/mocha":"^8.2.2","@types/node":"^18.11.5","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^7.11.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~5.0.2","webpack":"^5.76.0"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/object-storage-azure":"^1.5.0","@itwin/cloud-agnostic-core":"^1.5.0","@itwin/object-storage-core":"^1.5.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","qs":"^6.5.3","semver":"^7.3.5","superagent":"^7.1.5","wms-capabilities":"0.4.0","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
|
|
289141
289179
|
|
|
289142
289180
|
/***/ })
|
|
289143
289181
|
|