Hey,
I am playing around with this sandcastle demo: Cesium Sandcastle
I have edited the “Partial Ellipsoid” some to test different attributes. I am wondering if it is possible to have an identical cone cutout at the top (minimumCone: Cesium.Math.toRadians(45.0)) at the bottom and meeting in the middle.
viewer.entities.add({
name: "Partial ellipsoid",
position: Cesium.Cartesian3.fromDegrees(-95.0, 34.0),
orientation: Cesium.Transforms.headingPitchRollQuaternion(
Cesium.Cartesian3.fromDegrees(-95.0, 34.0),
new Cesium.HeadingPitchRoll.fromDegrees(340, 45, 0.0)),
ellipsoid: {
radii: new Cesium.Cartesian3(300000.0, 300000.0, 300000.0),
innerRadii: new Cesium.Cartesian3(1, 1, 1),
minimumClock: Cesium.Math.toRadians(-180),
maximumClock: Cesium.Math.toRadians(180),
minimumCone: Cesium.Math.toRadians(45.0),
material: Cesium.Color.DARKCYAN.withAlpha(0.3),
outline: true,
},
});