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.
17 lines
610 B
JavaScript
17 lines
610 B
JavaScript
import ApproximateTerrainHeights from "../Core/ApproximateTerrainHeights.js";
|
|
import defined from "../Core/defined.js";
|
|
import GroundPolylineGeometry from "../Core/GroundPolylineGeometry.js";
|
|
|
|
function createGroundPolylineGeometry(groundPolylineGeometry, offset) {
|
|
return ApproximateTerrainHeights.initialize().then(function () {
|
|
if (defined(offset)) {
|
|
groundPolylineGeometry = GroundPolylineGeometry.unpack(
|
|
groundPolylineGeometry,
|
|
offset
|
|
);
|
|
}
|
|
return GroundPolylineGeometry.createGeometry(groundPolylineGeometry);
|
|
});
|
|
}
|
|
export default createGroundPolylineGeometry;
|