当前位置: 首页>>代码示例>>C#>>正文


C# CelestialBody.TerrainAltitude方法代码示例

本文整理汇总了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);
 }
开发者ID:CliftonMarien,项目名称:MechJeb2,代码行数:5,代码来源:MechJebModuleTargetController.cs

示例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);
 }
开发者ID:Kerbas-ad-astra,项目名称:ThrottleControlledAvionics,代码行数:19,代码来源:NavigationPanel.cs

示例3: Alt

 public double Alt(CelestialBody body)
 {
     return body.TerrainAltitude(Lat, Lon);
 }
开发者ID:Kerbas-ad-astra,项目名称:ThrottleControlledAvionics,代码行数:4,代码来源:Coordinates.cs


注:本文中的CelestialBody.TerrainAltitude方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。