1
0
forked from Rowland/EG
EG/Cesium-1.132/packages/engine/Source/Workers/createSphereOutlineGeometry.js
2025-08-25 17:48:13 +08:00

11 lines
389 B
JavaScript

import defined from "../Core/defined.js";
import SphereOutlineGeometry from "../Core/SphereOutlineGeometry.js";
function createSphereOutlineGeometry(sphereGeometry, offset) {
if (defined(offset)) {
sphereGeometry = SphereOutlineGeometry.unpack(sphereGeometry, offset);
}
return SphereOutlineGeometry.createGeometry(sphereGeometry);
}
export default createSphereOutlineGeometry;