Cesium.Plane 使用的例子
时间: 2024-05-15 07:17:56 浏览: 221
Cesium.Plane 的使用例子可以参考以下代码:
```
var viewer = new Cesium.Viewer('cesiumContainer');
var plane = new Cesium.Plane(new Cesium.Cartesian3(1.0, 0.0, 0.0), 0.0);
var planeGraphics = new Cesium.PlaneGraphics({
plane : new Cesium.ConstantProperty(plane),
dimensions : new Cesium.ConstantProperty(new Cesium.Cartesian2(400000.0, 300000.0)),
outline : new Cesium.ConstantProperty(true),
outlineColor : new Cesium.ConstantProperty(Cesium.Color.WHITE)
});
viewer.entities.add({
position : Cesium.Cartesian3.fromDegrees(-75.170726, 39.920535),
plane : planeGraphics
});
```
该示例使用 Cesium.Plane 创建一个平面,然后创建一个平面图形对象 Cesium.PlaneGraphics,并将其添加到一个实体对象中,并在地球上呈现。值得注意的是,该示例使用了 Cesium 的实体对象系统,可以用于绘制各种图形并添加到场景中。
阅读全文