@xeokit/xeokit-sdk 2.4.2-beta-35 → 2.4.2-beta-37
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/dist/xeokit-sdk.cjs.js +4 -4
- package/dist/xeokit-sdk.es.js +4 -4
- package/dist/xeokit-sdk.es5.js +4 -4
- package/dist/xeokit-sdk.min.cjs.js +1 -1
- package/dist/xeokit-sdk.min.es.js +1 -1
- package/dist/xeokit-sdk.min.es5.js +1 -1
- package/package.json +1 -1
- package/src/viewer/scene/model/vbo/snapBatching/SnapBatchingDepthBufInitRenderer.js +1 -1
- package/src/viewer/scene/model/vbo/snapBatching/SnapBatchingDepthRenderer.js +1 -1
- package/src/viewer/scene/model/vbo/snapInstancing/SnapInstancingDepthBufInitRenderer.js +1 -1
- package/src/viewer/scene/model/vbo/snapInstancing/SnapInstancingDepthRenderer.js +1 -1
package/package.json
CHANGED
|
@@ -35,7 +35,7 @@ export class SnapBatchingDepthBufInitRenderer extends VBOSceneModelRenderer {
|
|
|
35
35
|
const state = batchingLayer._state;
|
|
36
36
|
const origin = batchingLayer._state.origin;
|
|
37
37
|
const {position, rotationMatrix, rotationMatrixConjugate} = model;
|
|
38
|
-
const aabb =
|
|
38
|
+
const aabb = model.aabb;
|
|
39
39
|
const viewMatrix = frameCtx.pickViewMatrix || camera.viewMatrix;
|
|
40
40
|
|
|
41
41
|
if (this._vaoCache.has(batchingLayer)) {
|
|
@@ -39,7 +39,7 @@ export class SnapBatchingDepthRenderer extends VBOSceneModelRenderer{
|
|
|
39
39
|
const state = batchingLayer._state;
|
|
40
40
|
const origin = batchingLayer._state.origin;
|
|
41
41
|
const {position, rotationMatrix, rotationMatrixConjugate} = model;
|
|
42
|
-
const aabb =
|
|
42
|
+
const aabb = model.aabb;
|
|
43
43
|
const viewMatrix = frameCtx.pickViewMatrix || camera.viewMatrix;
|
|
44
44
|
|
|
45
45
|
if (this._vaoCache.has(batchingLayer)) {
|
|
@@ -40,7 +40,7 @@ class SnapInstancingDepthBufInitRenderer extends VBOSceneModelRenderer {
|
|
|
40
40
|
const state = instancingLayer._state;
|
|
41
41
|
const origin = instancingLayer._state.origin;
|
|
42
42
|
const {position, rotationMatrix, rotationMatrixConjugate} = model;
|
|
43
|
-
const aabb =
|
|
43
|
+
const aabb = model.aabb;
|
|
44
44
|
const viewMatrix = frameCtx.pickViewMatrix || camera.viewMatrix;
|
|
45
45
|
|
|
46
46
|
if (this._vaoCache.has(instancingLayer)) {
|
|
@@ -40,7 +40,7 @@ class SnapInstancingDepthRenderer extends VBOSceneModelRenderer {
|
|
|
40
40
|
const state = instancingLayer._state;
|
|
41
41
|
const origin = instancingLayer._state.origin;
|
|
42
42
|
const {position, rotationMatrix, rotationMatrixConjugate} = model;
|
|
43
|
-
const aabb =
|
|
43
|
+
const aabb = model.aabb;
|
|
44
44
|
const viewMatrix = frameCtx.pickViewMatrix || camera.viewMatrix;
|
|
45
45
|
|
|
46
46
|
if (this._vaoCache.has(instancingLayer)) {
|