? ENPair

java.lang.Object
mccombe.mapping.ENPair

public class ENPair extends Object
An ENPair represents a 2-dimensional coordinate pair used to define position on a map in terms of "easting" and "northing" distances.
  • ???????

    • ENPair

      public ENPair()
      Creates a new instance of ENPair
    • ENPair

      public ENPair(double east, double north)
      Create an ENPair from two double values
      ??:
      east - Easting distance (m)
      north - Northing distance (m)
  • ??????

    • toString

      public String toString()
      Provide a String representation of the ENPair
      ??:
      toString ??? Object
      ??:
      A String showing Easting and Northing distances
    • east

      public double east()
      Access the Easting distance
      ??:
      the Easting distance(m)
    • north

      public double north()
      Access the Northing distance
      ??:
      the Northing distance (m)