Package gov.nasa.worldwind.geom

Examples of gov.nasa.worldwind.geom.Angle.divide()


   static public LatLon s_getMiddle(LatLon llnA, LatLon llnB)
   {
      Angle angAzimuth = LatLon.greatCircleAzimuth(llnA, llnB);
      Angle angAngle = LatLon.greatCircleDistance(llnA, llnB);

      return LatLon.greatCircleEndPosition(llnA, angAzimuth, angAngle.divide(2));
   }
  
   protected GfrLatLon() {}
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.