namespace Plane.Geography { /// /// 定义可用于确定一个固定的星球上的空间中的一个点的属性。 /// public interface ILocation : ILocation2D { /// /// 获取相对高度。 /// float Altitude { get; } } }