mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
13 lines
317 B
JavaScript
13 lines
317 B
JavaScript
import WGS84 from '../../core/WGS84';
|
|
|
|
/**
|
|
* 瓦片几何体
|
|
*/
|
|
function TiledGeometry() {
|
|
THREE.PlaneBufferGeometry.call(this, WGS84.a, WGS84.a);
|
|
}
|
|
|
|
TiledGeometry.prototype = Object.create(THREE.PlaneBufferGeometry.prototype);
|
|
TiledGeometry.prototype.constructor = TiledGeometry;
|
|
|
|
export default TiledGeometry; |