UNPKG

3d-tiles-renderer

Version:

https://github.com/AnalyticalGraphicsInc/3d-tiles/tree/master/specification

6 lines (4 loc) 242 B
import { WGS84_RADIUS, WGS84_HEIGHT } from '3d-tiles-renderer/core'; import { Ellipsoid } from './Ellipsoid.js'; export const WGS84_ELLIPSOID = new Ellipsoid( WGS84_RADIUS, WGS84_RADIUS, WGS84_HEIGHT ); WGS84_ELLIPSOID.name = 'WGS84 Earth';