1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- import DeveloperError from "../Core/DeveloperError.js";
- function TileBoundingVolume() {}
- TileBoundingVolume.prototype.boundingVolume = undefined;
- TileBoundingVolume.prototype.boundingSphere = undefined;
- TileBoundingVolume.prototype.distanceToCamera = function (frameState) {
- DeveloperError.throwInstantiationError();
- };
- TileBoundingVolume.prototype.intersectPlane = function (plane) {
- DeveloperError.throwInstantiationError();
- };
- TileBoundingVolume.prototype.createDebugVolume = function (color) {
- DeveloperError.throwInstantiationError();
- };
- export default TileBoundingVolume;
|