gov.nasa.worldwind.geom.Angle.subtract()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(192)

本文整理了Java中gov.nasa.worldwind.geom.Angle.subtract()方法的一些代码示例,展示了Angle.subtract()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Angle.subtract()方法的具体详情如下:
包路径:gov.nasa.worldwind.geom.Angle
类名称:Angle
方法名:subtract

Angle.subtract介绍

[英]Obtains the difference of these two angles. Does not accept a null argument. This method is not commutative. Neither this angle nor angle is changed, instead the result is returned as a new angle.
[中]获得这两个角度的差。不接受空参数。这种方法是不可交换的。此角度和角度都不会更改,而是将结果作为新角度返回。

代码示例

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. /**
  2. * Computes the shortest distance between this and angle, as an angle.
  3. *
  4. * @param angle the angle to measure angular distance to.
  5. *
  6. * @return the angular distance between this and <code>value</code>.
  7. */
  8. public Angle angularDistanceTo(Angle angle)
  9. {
  10. if (angle == null)
  11. {
  12. throw new IllegalArgumentException("Angle Is Null");
  13. }
  14. double differenceDegrees = angle.subtract(this).degrees;
  15. if (differenceDegrees < -180)
  16. differenceDegrees += 360;
  17. else if (differenceDegrees > 180)
  18. differenceDegrees -= 360;
  19. double absAngle = Math.abs(differenceDegrees);
  20. return Angle.fromDegrees(absAngle);
  21. }

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. public Position subtract(Position that)
  2. {
  3. Angle lat = Angle.normalizedLatitude(this.latitude.subtract(that.latitude));
  4. Angle lon = Angle.normalizedLongitude(this.longitude.subtract(that.longitude));
  5. return new Position(lat, lon, this.elevation - that.elevation);
  6. }

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. public LatLon subtract(LatLon that)
  2. {
  3. if (that == null)
  4. {
  5. throw new IllegalArgumentException("Angle Is Null");
  6. }
  7. Angle lat = Angle.normalizedLatitude(this.latitude.subtract(that.latitude));
  8. Angle lon = Angle.normalizedLongitude(this.longitude.subtract(that.longitude));
  9. return new LatLon(lat, lon);
  10. }

代码示例来源:origin: com.bitplan.radolan/com.bitplan.radolan

  1. /**
  2. * Computes the shortest distance between this and angle, as an angle.
  3. *
  4. * @param angle the angle to measure angular distance to.
  5. *
  6. * @return the angular distance between this and <code>value</code>.
  7. */
  8. public Angle angularDistanceTo(Angle angle)
  9. {
  10. if (angle == null)
  11. {
  12. throw new IllegalArgumentException("Angle Is Null");
  13. }
  14. double differenceDegrees = angle.subtract(this).degrees;
  15. if (differenceDegrees < -180)
  16. differenceDegrees += 360;
  17. else if (differenceDegrees > 180)
  18. differenceDegrees -= 360;
  19. double absAngle = Math.abs(differenceDegrees);
  20. return Angle.fromDegrees(absAngle);
  21. }

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. public LatLon subtract(Position that)
  2. {
  3. if (that == null)
  4. {
  5. throw new IllegalArgumentException("Angle Is Null");
  6. }
  7. Angle lat = Angle.normalizedLatitude(this.latitude.subtract(that.getLatitude()));
  8. Angle lon = Angle.normalizedLongitude(this.longitude.subtract(that.getLongitude()));
  9. return new LatLon(lat, lon);
  10. }

代码示例来源:origin: Berico-Technologies/Geo-Coordinate-Conversion-Java

  1. final double L = p2.longitude.subtract(p1.longitude).radians;

相关文章