本文整理汇总了C#中CelestialBody.TerrainAltitude方法的典型用法代码示例。如果您正苦于以下问题:C# CelestialBody.TerrainAltitude方法的具体用法?C# CelestialBody.TerrainAltitude怎么用?C# CelestialBody.TerrainAltitude使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CelestialBody
的用法示例。
在下文中一共展示了CelestialBody.TerrainAltitude方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Update
public void Update(CelestialBody body, double latitude, double longitude)
{
double altitude = body.TerrainAltitude(latitude, longitude);
Update(body, latitude, longitude, altitude);
}
示例2: DrawGroundMarker
static bool DrawGroundMarker(CelestialBody body, Coordinates pos, Color c, float r = IconSize, Texture2D texture = null)
{
Vector3d center;
Camera camera;
if(MapView.MapIsEnabled)
{
//TODO: cache local center coordinates of the marker
camera = PlanetariumCamera.Camera;
center = body.position + (body.TerrainAltitude(pos.Lat, pos.Lon)+body.Radius) * body.GetSurfaceNVector(pos.Lat, pos.Lon);
}
else
{
camera = FlightCamera.fetch.mainCamera;
center = body.GetWorldSurfacePosition(pos.Lat, pos.Lon, body.TerrainAltitude(pos.Lat, pos.Lon)+GLB.WaypointHeight);
if(camera.transform.InverseTransformPoint(center).z <= 0) return false;
}
return !IsOccluded(center, body) &&
DrawMarker(camera.WorldToScreenPoint(MapView.MapIsEnabled ? ScaledSpace.LocalToScaledSpace(center) : center), c, r, texture);
}
示例3: Alt
public double Alt(CelestialBody body)
{
return body.TerrainAltitude(Lat, Lon);
}