cesium
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
13 lines (11 loc) • 561 B
JavaScript
import defined from '../Core/defined.js';
import Ellipsoid from '../Core/Ellipsoid.js';
import PolygonOutlineGeometry from '../Core/PolygonOutlineGeometry.js';
function createPolygonOutlineGeometry(polygonGeometry, offset) {
if (defined(offset)) {
polygonGeometry = PolygonOutlineGeometry.unpack(polygonGeometry, offset);
}
polygonGeometry._ellipsoid = Ellipsoid.clone(polygonGeometry._ellipsoid);
return PolygonOutlineGeometry.createGeometry(polygonGeometry);
}
export default createPolygonOutlineGeometry;