You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
521 B
JavaScript
13 lines
521 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;
|