/** Air Navigation Waypoint Intercept Demonstrator by Robert J Morton UK-YE572246C*/ /* 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 double Y = 100; // in logical pixels from top left of tracking square double R = 90; // effective range of waypoint's influence or use }