NASA World Wind

Uses of Class
gov.nasa.worldwind.geom.Angle

Packages that use Angle
gov.nasa.worldwind   
gov.nasa.worldwind.geom   
gov.nasa.worldwind.globes   
gov.nasa.worldwind.layers   
 

Uses of Angle in gov.nasa.worldwind
 

Methods in gov.nasa.worldwind that return Angle
static Angle Tile.computeColumnLongitude(int column, Angle delta)
          Determines the minimum longitude of a column in the global tile grid corresponding to a specified grid interval.
static Angle Tile.computeRowLatitude(int row, Angle delta)
          Determines the minimum latitude of a row in the global tile grid corresponding to a specified grid interval.
 Angle View.getFieldOfView()
          Returns the horizontal field-of-view angle (the angle of visibility) associated with this View, or null if the View implementation does not support a field-of-view.
 Angle AbstractView.getFieldOfView()
           
 Angle View.getHeading()
          Returns the View's angle from true North.
 Angle BasicOrbitView.getHeading()
           
 Angle View.getPitch()
          Returns the View's angle from the plane tangent to the surface.
 Angle BasicOrbitView.getPitch()
           
 Angle[] View.getPitchConstraints()
          Returns a two-dimensional array containing the range of angles (inclusive) the View may limit its pitch to, if pitch constraints are enabled.
 Angle[] BasicOrbitView.getPitchConstraints()
           
 Angle View.getRoll()
          Returns the View's angle about its local z-axis.
 Angle BasicOrbitView.getRoll()
           
 

Methods in gov.nasa.worldwind with parameters of type Angle
static int Tile.computeColumn(Angle delta, Angle longitude)
          Computes the column index of a longitude in the global tile grid corresponding to a specified grid interval.
static Angle Tile.computeColumnLongitude(int column, Angle delta)
          Determines the minimum longitude of a column in the global tile grid corresponding to a specified grid interval.
 Point Globe.computePointFromPosition(Angle latitude, Angle longitude, double metersElevation)
           
static int Tile.computeRow(Angle delta, Angle latitude)
          Computes the row index of a latitude in the global tile grid corresponding to a specified grid interval.
static Angle Tile.computeRowLatitude(int row, Angle delta)
          Determines the minimum latitude of a row in the global tile grid corresponding to a specified grid interval.
 double Globe.getElevation(Angle latitude, Angle longitude)
           
 double ElevationModel.getElevation(Angle latitude, Angle longitude)
           
 double BasicElevationModel.getElevation(Angle latitude, Angle longitude)
           
 Point DrawContextImpl.getPointOnGlobe(Angle latitude, Angle longitude)
           
 Point DrawContext.getPointOnGlobe(Angle latitude, Angle longitude)
           
 double Globe.getRadiusAt(Angle latitude, Angle longitude)
           
 Point SectorGeometryList.getSurfacePoint(Angle latitude, Angle longitude)
           
 Point SectorGeometryList.getSurfacePoint(Angle latitude, Angle longitude, double metersOffset)
           
 Point SectorGeometry.getSurfacePoint(Angle latitude, Angle longitude, double metersOffset)
           
 void View.setFieldOfView(Angle newFov)
          Sets the horiziontal field-of-view angle (the angle of visibillity) associated with this View.
 void AbstractView.setFieldOfView(Angle newFov)
           
 void View.setHeading(Angle newHeading)
          Sets the View's angle to true North.
 void BasicOrbitView.setHeading(Angle newHeading)
           
 void View.setPitch(Angle newPitch)
          Sets the View's angle to the plane tangent to the surface.
 void BasicOrbitView.setPitch(Angle newPitch)
           
 void View.setPitchConstraints(Angle newMinPitch, Angle newMaxPitch)
          Sets the range of angles (inclusive) the View may limit its pitch to, if pitch constraints are enabled.
 void BasicOrbitView.setPitchConstraints(Angle newMinPitch, Angle newMaxPitch)
           
 void View.setRoll(Angle newRoll)
          Sets the View's angle about its local z-axis.
 void BasicOrbitView.setRoll(Angle newRoll)
           
 

Constructors in gov.nasa.worldwind with parameters of type Angle
PickedObject(int colorCode, Object userObject, Angle lat, Angle lon, double elev, boolean isTerrain)
           
TileKey(Angle latitude, Angle longitude, Level level)
           
 

Uses of Angle in gov.nasa.worldwind.geom
 

Fields in gov.nasa.worldwind.geom declared as Angle
static Angle Angle.NEG180
          Represents an angle of negative 180 degrees
static Angle Angle.NEG90
          Represents a right angle of negative 90 degrees
static Angle Angle.POS180
          Represents an angle of positive 180 degrees
static Angle Angle.POS360
          Represents an angle of positive 360 degrees
static Angle Angle.POS90
          Represents a right angle of positive 90 degrees
static Angle Angle.ZERO
          Represents an angle of zero degrees
 

Methods in gov.nasa.worldwind.geom that return Angle
static Angle Angle.acos(double cosine)
           
 Angle Angle.add(Angle angle)
          Obtains the sum of these two Angles.
 Angle Angle.addDegrees(double degrees)
           
 Angle Angle.addRadians(double radians)
           
static Angle Angle.asin(double sine)
           
static Angle Angle.atan(double tan)
           
static Angle Angle.average(Angle a, Angle b)
          Obtains the average of three Angles.
static Angle Angle.average(Angle a, Angle b, Angle c)
          Obtains the average of three Angles.
 Angle Angle.divide(double divisor)
          Divides this Angle by divisor.
static Angle Angle.fromDegrees(double degrees)
          Obtains an Angle from a specified number of degrees.
static Angle Angle.fromDegreesLatitude(double degrees)
           
static Angle Angle.fromDegreesLongitude(double degrees)
           
static Angle Angle.fromRadians(double radians)
          Obtains an Angle from a specified number of radians.
static Angle Angle.fromRadiansLatitude(double radians)
           
static Angle Angle.fromRadiansLongitude(double radians)
           
static Angle Angle.fromXY(double x, double y)
          Obtains an Angle from rectangular coordinates.
 Angle Sector.getDeltaLat()
          Returns the angular difference between the sector's minimum and maximum latitudes: max - min
 Angle Sector.getDeltaLon()
          Returns the angular difference between the sector's minimum and maximum longitudes: max - min.
 Angle Position.getLatitude()
          Obtains the latitude of this position
 Angle PolarPoint.getLatitude()
          Obtains the latitude of this polar point
 Angle LatLon.getLatitude()
          Obtains the latitude of this LatLon.
 Angle Position.getLongitude()
          Obtains the longitude of this position
 Angle PolarPoint.getLongitude()
          Obtains the longitude of this polar point
 Angle LatLon.getLongitude()
          Obtains the longitude of this LatLon.
 Angle Sector.getMaxLatitude()
          Returns the sector's maximum latitude.
 Angle Sector.getMaxLongitude()
          Returns the sector's maximum longitude.
 Angle Sector.getMinLatitude()
          Returns the sector's minimum latitude.
 Angle Sector.getMinLongitude()
          Returns the sector's minimum longitude.
static Angle Angle.midAngle(Angle a1, Angle a2)
          Obtains the average of two Angles.
 Angle Angle.multiply(double multiplier)
          Multiplies this Angle by multiplier.
 Angle Angle.subtract(Angle angle)
          Obtains the difference of these two Angles.
 Angle Angle.subtractDegrees(double degrees)
           
 Angle Angle.subtractRadians(double radians)
           
 

Methods in gov.nasa.worldwind.geom with parameters of type Angle
 Angle Angle.add(Angle angle)
          Obtains the sum of these two Angles.
static Angle Angle.average(Angle a, Angle b)
          Obtains the average of three Angles.
static Angle Angle.average(Angle a, Angle b, Angle c)
          Obtains the average of three Angles.
static Quaternion Quaternion.AxisAngleToQuaternion(Angle angle, double x, double y, double z)
           
 int Angle.compareTo(Angle angle)
          Compares this Angle with angle for order.
 boolean Sector.contains(Angle latitude, Angle longitude)
           
 double Angle.divide(Angle angle)
          Divides this Angle by another angle.
 Sector Sector.intersection(Angle latitude, Angle longitude)
           
static Angle Angle.midAngle(Angle a1, Angle a2)
          Obtains the average of two Angles.
 Matrix Matrix4.rotate(Angle rotation, double axisX, double axisY, double axisZ)
          Rotate this matrix by some angle around an arbitrary axis.
 Matrix Matrix.rotate(Angle rotation, double axisX, double axisY, double axisZ)
           
 Matrix Matrix4.rotateX(Angle rotation)
          Rotate this Matrix around the x-axis.
 Matrix Matrix.rotateX(Angle rotation)
           
 Matrix Matrix4.rotateY(Angle rotation)
          Rotate this Matrix around the y-axis.
 Matrix Matrix.rotateY(Angle rotation)
           
 Matrix Matrix4.rotateZ(Angle rotation)
          Rotate this Matrix around the z-axis.
 Matrix Matrix.rotateZ(Angle rotation)
           
 Angle Angle.subtract(Angle angle)
          Obtains the difference of these two Angles.
static Point PolarPoint.toCartesian(Angle latitude, Angle longitude, double radius)
          Obtains a cartesian point from a given latitude, longitude and distance from center.
 Sector Sector.union(Angle latitude, Angle longitude)
           
 

Constructors in gov.nasa.worldwind.geom with parameters of type Angle
Angle(Angle angle)
           
LatLon(Angle latitude, Angle longitude)
          Contructs a new LatLon from two angles.
PolarPoint(Angle latitude, Angle longitude, double radius)
          Obtains a PolarPoint from two angles and a radius.
Position(Angle latitude, Angle longitude, double elevation)
           
Sector(Angle minLatitude, Angle maxLatitude, Angle minLongitude, Angle maxLongitude)
          Creates a new Sector and initializes it to the specified angles.
ViewFrustum(Angle fieldOfView, int viewportWidth, int viewportHeight, double near, double far)
          Creates a Frustum from a horizontal field-of-view, viewport aspect ratio and distance to near and far depth clipping planes.
 

Uses of Angle in gov.nasa.worldwind.globes
 

Methods in gov.nasa.worldwind.globes with parameters of type Angle
 Point EllipsoidalGlobe.computePointFromPosition(Angle latitude, Angle longitude, double metersElevation)
           
 double EllipsoidalGlobe.getElevation(Angle latitude, Angle longitude)
           
 double EllipsoidalGlobe.getRadiusAt(Angle latitude, Angle longitude)
           
 

Uses of Angle in gov.nasa.worldwind.layers
 

Fields in gov.nasa.worldwind.layers declared as Angle
static Angle RpfLayer.DefaultDeltaLat
           
static Angle RpfLayer.DefaultDeltaLon
           
 

Methods in gov.nasa.worldwind.layers that return Angle
 Angle RpfLayer.getViewingDeltaLat()
           
 Angle RpfLayer.getViewingDeltaLon()
           
 

Methods in gov.nasa.worldwind.layers with parameters of type Angle
static long RpfLayer.estimateMemoryCacheCapacity(gov.nasa.worldwind.formats.rpf.RpfDataSeries dataSeries, Angle deltaLat, Angle deltaLon)
           
 Color TiledImageLayer.getColor(Angle latitude, Angle longitude, int levelNumber)
           
 void RpfLayer.setViewingDeltaLat(Angle deltaLat)
           
 void RpfLayer.setViewingDeltaLon(Angle deltaLon)
           
 

Constructors in gov.nasa.worldwind.layers with parameters of type Angle
RpfLayer(gov.nasa.worldwind.formats.rpf.RpfDataSeries dataSeries, Angle deltaLat, Angle deltaLon)
           
RpfLayer(gov.nasa.worldwind.formats.rpf.RpfDataSeries dataSeries, Angle deltaLat, Angle deltaLon, MemoryCache sharedMemoryCache)
           
 


NASA World Wind