@xeokit/xeokit-sdk 2.4.2-beta-41 → 2.4.2-beta-42
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 +0 -6
- package/dist/xeokit-sdk.es.js +0 -6
- package/dist/xeokit-sdk.es5.js +0 -3
- 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/trianglesBatching/TrianglesBatchingLayer.js +0 -6
package/dist/xeokit-sdk.cjs.js
CHANGED
|
@@ -61456,12 +61456,6 @@ class TrianglesBatchingLayer {
|
|
|
61456
61456
|
this._state.origin.set(cfg.origin);
|
|
61457
61457
|
}
|
|
61458
61458
|
|
|
61459
|
-
/**
|
|
61460
|
-
* The axis-aligned World-space boundary of this TrianglesBatchingLayer's positions.
|
|
61461
|
-
* @type {*|Float64Array}
|
|
61462
|
-
*/
|
|
61463
|
-
this.aabb = math.collapseAABB3();
|
|
61464
|
-
|
|
61465
61459
|
/**
|
|
61466
61460
|
* When true, this layer contains solid triangle meshes, otherwise this layer contains surface triangle meshes
|
|
61467
61461
|
* @type {boolean}
|
package/dist/xeokit-sdk.es.js
CHANGED
|
@@ -61452,12 +61452,6 @@ class TrianglesBatchingLayer {
|
|
|
61452
61452
|
this._state.origin.set(cfg.origin);
|
|
61453
61453
|
}
|
|
61454
61454
|
|
|
61455
|
-
/**
|
|
61456
|
-
* The axis-aligned World-space boundary of this TrianglesBatchingLayer's positions.
|
|
61457
|
-
* @type {*|Float64Array}
|
|
61458
|
-
*/
|
|
61459
|
-
this.aabb = math.collapseAABB3();
|
|
61460
|
-
|
|
61461
61455
|
/**
|
|
61462
61456
|
* When true, this layer contains solid triangle meshes, otherwise this layer contains surface triangle meshes
|
|
61463
61457
|
* @type {boolean}
|
package/dist/xeokit-sdk.es5.js
CHANGED
|
@@ -17473,9 +17473,6 @@ if(!this._snapDepthBufInitRenderer){this._snapDepthBufInitRenderer=new SnapBatch
|
|
|
17473
17473
|
});// These counts are used to avoid unnecessary render passes
|
|
17474
17474
|
this._numPortions=0;this._numVisibleLayerPortions=0;this._numTransparentLayerPortions=0;this._numXRayedLayerPortions=0;this._numSelectedLayerPortions=0;this._numHighlightedLayerPortions=0;this._numClippableLayerPortions=0;this._numEdgesLayerPortions=0;this._numPickableLayerPortions=0;this._numCulledLayerPortions=0;this._modelAABB=math.collapseAABB3();// Model-space AABB
|
|
17475
17475
|
this._portions=[];this._meshes=[];this._numVerts=0;this._aabb=math.collapseAABB3();this.aabbDirty=true;this._finalized=false;if(cfg.positionsDecodeMatrix){this._state.positionsDecodeMatrix=math.mat4(cfg.positionsDecodeMatrix);}if(cfg.uvDecodeMatrix){this._state.uvDecodeMatrix=math.mat3(cfg.uvDecodeMatrix);this._preCompressedUVsExpected=true;}else{this._preCompressedUVsExpected=false;}if(cfg.origin){this._state.origin.set(cfg.origin);}/**
|
|
17476
|
-
* The axis-aligned World-space boundary of this TrianglesBatchingLayer's positions.
|
|
17477
|
-
* @type {*|Float64Array}
|
|
17478
|
-
*/this.aabb=math.collapseAABB3();/**
|
|
17479
17476
|
* When true, this layer contains solid triangle meshes, otherwise this layer contains surface triangle meshes
|
|
17480
17477
|
* @type {boolean}
|
|
17481
17478
|
*/this.solid=!!cfg.solid;}_createClass(TrianglesBatchingLayer,[{key:"aabb",get:function get(){if(this.aabbDirty){math.collapseAABB3(this._aabb);for(var _i205=0,len=this._meshes.length;_i205<len;_i205++){math.expandAABB3(this._aabb,this._meshes[_i205].aabb);}this.aabbDirty=false;}}/**
|