/// <summary>
 /// 计算平面范围的面积。
 /// </summary>
 /// <returns>平面范围的面积。</returns>
 public double Area()
 {
     return(_x.Length() * _y.Length());
 }