From: daveluff Date: Mon, 31 Mar 2003 16:23:49 +0000 (+0000) Subject: Add width to ATC RunwayDetails structure X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3f53eaeaa70c35576c712b67983d941a4f14fd7b;p=flightgear.git Add width to ATC RunwayDetails structure --- diff --git a/src/ATC/ATC.hxx b/src/ATC/ATC.hxx index be3d4ccb7..38750898a 100644 --- a/src/ATC/ATC.hxx +++ b/src/ATC/ATC.hxx @@ -83,13 +83,15 @@ struct ATCData { string name; }; -// perhaps we could use an FGRunway instead of this +// perhaps we could use an FGRunway instead of this. +// That wouldn't cache the orthopos though. struct RunwayDetails { Point3D threshold_pos; Point3D end1ortho; // ortho projection end1 (the threshold ATM) Point3D end2ortho; // ortho projection end2 (the take off end in the current hardwired scheme) double hdg; // true runway heading double length; // In *METERS* + double width; // ditto string rwyID; };