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

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

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

Angle.getRadians介绍

[英]Retrieves the size of this angle in radians. This may be useful for java.lang.Math functions, which generally take radians as trigonometric arguments. This method may be faster that first obtaining the degrees and then converting to radians.
[中]检索此角度的大小(以弧度为单位)。这可能对java.lang.Math函数有用,该函数通常将弧度作为三角参数。这种方法可能比首先获取度数然后转换为弧度更快。

代码示例

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

public static Matrix fromSkew(Angle theta, Angle phi)
{
  // from http://faculty.juniata.edu/rhodes/graphics/projectionmat.htm
  double cotTheta = 1.0e6;
  double cotPhi = 1.0e6;
  if (theta.getRadians() < EPSILON && phi.getRadians() < EPSILON)
  {
    cotTheta = 0;
    cotPhi = 0;
  }
  else
  {
    if (Math.abs(Math.tan(theta.getRadians())) > EPSILON)
      cotTheta = 1 / Math.tan(theta.getRadians());
    if (Math.abs(Math.tan(phi.getRadians())) > EPSILON)
      cotPhi = 1 / Math.tan(phi.getRadians());
  }
  return new Matrix(
    1.0, 0.0, -cotTheta, 0,
    0.0, 1.0, -cotPhi, 0,
    0.0, 0.0, 1.0, 0,
    0.0, 0.0, 0.0, 1.0,
    false);
}

代码示例来源:origin: com.uvic-cfar.swim/worldwind

double distance = LatLon.linearDistance(start, goal).getRadians() * globe.getRadius();
double height = goal.getElevation() - start.getElevation();

相关文章