@giro3d/giro3d
Version:
A JS/WebGL framework for 3D geospatial data visualization
18 lines • 661 B
TypeScript
import type { Matrix4 } from 'three';
import { Box3, Vector3 } from 'three';
import type ElevationRange from '../../core/ElevationRange';
import type Extent from '../../core/geographic/Extent';
import TileVolume from './TileVolume';
export default class PlanarTileVolume extends TileVolume {
private readonly _extent;
private _range;
get extent(): Readonly<Extent>;
constructor(options: {
extent: Extent;
range: ElevationRange;
});
protected computeLocalBox(): Box3;
getWorldSpaceCorners(matrix: Matrix4): Vector3[];
setElevationRange(range: ElevationRange): void;
}
//# sourceMappingURL=PlanarTileVolume.d.ts.map