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

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

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

Angle.<init>介绍

暂无

代码示例

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

  1. public static Angle fromDegreesLatitude(double degrees)
  2. {
  3. degrees = degrees < -90 ? -90 : degrees > 90 ? 90 : degrees;
  4. double radians = DEGREES_TO_RADIANS * degrees;
  5. radians = radians < -PIOver2 ? -PIOver2 : radians > PIOver2 ? PIOver2 : radians;
  6. return new Angle(degrees, radians);
  7. }

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

  1. public static Angle fromDegreesLongitude(double degrees)
  2. {
  3. degrees = degrees < -180 ? -180 : degrees > 180 ? 180 : degrees;
  4. double radians = DEGREES_TO_RADIANS * degrees;
  5. radians = radians < -Math.PI ? -Math.PI : radians > Math.PI ? Math.PI : radians;
  6. return new Angle(degrees, radians);
  7. }

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

  1. /**
  2. * Obtains an angle from a specified number of degrees.
  3. *
  4. * @param degrees the size in degrees of the angle to be obtained
  5. *
  6. * @return a new angle, whose size in degrees is given by <code>degrees</code>
  7. */
  8. public static Angle fromDegrees(double degrees)
  9. {
  10. return new Angle(degrees, DEGREES_TO_RADIANS * degrees);
  11. }

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

  1. /**
  2. * Obtains an angle from a specified number of radians.
  3. *
  4. * @param radians the size in radians of the angle to be obtained.
  5. *
  6. * @return a new angle, whose size in radians is given by <code>radians</code>.
  7. */
  8. public static Angle fromRadians(double radians)
  9. {
  10. return new Angle(RADIANS_TO_DEGREES * radians, radians);
  11. }

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

  1. public static Angle fromRadiansLatitude(double radians)
  2. {
  3. radians = radians < -PIOver2 ? -PIOver2 : radians > PIOver2 ? PIOver2 : radians;
  4. double degrees = RADIANS_TO_DEGREES * radians;
  5. degrees = degrees < -90 ? -90 : degrees > 90 ? 90 : degrees;
  6. return new Angle(degrees, radians);
  7. }

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

  1. public static Angle fromDegreesLongitude(double degrees)
  2. {
  3. degrees = degrees < -180 ? -180 : degrees > 180 ? 180 : degrees;
  4. double radians = DEGREES_TO_RADIANS * degrees;
  5. radians = radians < -Math.PI ? -Math.PI : radians > Math.PI ? Math.PI : radians;
  6. return new Angle(degrees, radians);
  7. }

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

  1. public static Angle fromRadiansLongitude(double radians)
  2. {
  3. radians = radians < -Math.PI ? -Math.PI : radians > Math.PI ? Math.PI : radians;
  4. double degrees = RADIANS_TO_DEGREES * radians;
  5. degrees = degrees < -180 ? -180 : degrees > 180 ? 180 : degrees;
  6. return new Angle(degrees, radians);
  7. }

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

  1. /**
  2. * Obtains an angle from a specified number of radians.
  3. *
  4. * @param radians the size in radians of the angle to be obtained.
  5. *
  6. * @return a new angle, whose size in radians is given by <code>radians</code>.
  7. */
  8. public static Angle fromRadians(double radians)
  9. {
  10. return new Angle(RADIANS_TO_DEGREES * radians, radians);
  11. }

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

  1. public static Angle fromRadiansLatitude(double radians)
  2. {
  3. radians = radians < -PIOver2 ? -PIOver2 : radians > PIOver2 ? PIOver2 : radians;
  4. double degrees = RADIANS_TO_DEGREES * radians;
  5. degrees = degrees < -90 ? -90 : degrees > 90 ? 90 : degrees;
  6. return new Angle(degrees, radians);
  7. }

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

  1. /**
  2. * Obtains an angle from a specified number of degrees.
  3. *
  4. * @param degrees the size in degrees of the angle to be obtained
  5. *
  6. * @return a new angle, whose size in degrees is given by <code>degrees</code>
  7. */
  8. public static Angle fromDegrees(double degrees)
  9. {
  10. return new Angle(degrees, DEGREES_TO_RADIANS * degrees);
  11. }

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

  1. public static Angle fromDegreesLatitude(double degrees)
  2. {
  3. degrees = degrees < -90 ? -90 : degrees > 90 ? 90 : degrees;
  4. double radians = DEGREES_TO_RADIANS * degrees;
  5. radians = radians < -PIOver2 ? -PIOver2 : radians > PIOver2 ? PIOver2 : radians;
  6. return new Angle(degrees, radians);
  7. }

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

  1. public static Angle fromRadiansLongitude(double radians)
  2. {
  3. radians = radians < -Math.PI ? -Math.PI : radians > Math.PI ? Math.PI : radians;
  4. double degrees = RADIANS_TO_DEGREES * radians;
  5. degrees = degrees < -180 ? -180 : degrees > 180 ? 180 : degrees;
  6. return new Angle(degrees, radians);
  7. }

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

  1. /**
  2. * Obtains an angle from rectangular coordinates.
  3. *
  4. * @param x the abscissa coordinate.
  5. * @param y the ordinate coordinate.
  6. *
  7. * @return a new angle, whose size is determined from <code>x</code> and <code>y</code>.
  8. */
  9. public static Angle fromXY(double x, double y)
  10. {
  11. double radians = Math.atan2(y, x);
  12. return new Angle(RADIANS_TO_DEGREES * radians, radians);
  13. }

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

  1. /**
  2. * Obtains an angle from rectangular coordinates.
  3. *
  4. * @param x the abscissa coordinate.
  5. * @param y the ordinate coordinate.
  6. *
  7. * @return a new angle, whose size is determined from <code>x</code> and <code>y</code>.
  8. */
  9. public static Angle fromXY(double x, double y)
  10. {
  11. double radians = Math.atan2(y, x);
  12. return new Angle(RADIANS_TO_DEGREES * radians, radians);
  13. }

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

  1. public Sector(Sector sector)
  2. {
  3. if (sector == null)
  4. {
  5. throw new IllegalArgumentException("Sector Is Null");
  6. }
  7. this.minLatitude = new Angle(sector.getMinLatitude());
  8. this.maxLatitude = new Angle(sector.getMaxLatitude());
  9. this.minLongitude = new Angle(sector.getMinLongitude());
  10. this.maxLongitude = new Angle(sector.getMaxLongitude());
  11. this.deltaLat = Angle.fromDegrees(this.maxLatitude.degrees - this.minLatitude.degrees);
  12. this.deltaLon = Angle.fromDegrees(this.maxLongitude.degrees - this.minLongitude.degrees);
  13. }

代码示例来源:origin: it.tidalwave.geo/it-tidalwave-geo-viewer-spi-worldwindprovider

  1. @Nonnull
  2. public static MercatorSector fromSector (final @Nonnull Sector sector)
  3. {
  4. return new MercatorSector(gudermannianInverse(sector.getMinLatitude()),
  5. gudermannianInverse(sector.getMaxLatitude()),
  6. new Angle(sector.getMinLongitude()),
  7. new Angle(sector.getMaxLongitude()));
  8. }

相关文章