1
0
Fork 0

Add width to ATC RunwayDetails structure

This commit is contained in:
daveluff 2003-03-31 16:23:49 +00:00
parent fa094c9980
commit 3f53eaeaa7

View file

@ -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;
};