/** Air Navigation Waypoint Intercept Demonstrator by Robert J Morton */ /* Provides the essentials of a waypoint, namely its position and its range of influence. This class can be extended for particular kinds of waypoint, eg: mountain, city, lake, fork in a river, gas holder, tower whose co-ordinates are known. Mainly, however a waypoint will be a purpose-built radio aid such as a VOR, TACAN, ILS or marker. */ class waypoint { String N = "Rockall"; // name of waypoint double X = 220, // co-ordinates of waypoint Y = 100, // in logical pixels from top left of tracking square R = 90; // effective range of waypoint's influence or use }