DSDSServer2024/build/build.20240805/static/js/Cesium-1.53/Source/Workers/createPlaneOutlineGeometry.js

16 lines
404 B
JavaScript

define([
'../Core/defined',
'../Core/PlaneOutlineGeometry'
], function(
defined,
PlaneOutlineGeometry) {
'use strict';
return function(planeGeometry, offset) {
if (defined(offset)) {
planeGeometry = PlaneOutlineGeometry.unpack(planeGeometry, offset);
}
return PlaneOutlineGeometry.createGeometry(planeGeometry);
};
});