Home
last modified time | relevance | path

Searched refs:_runway (Results 1 – 11 of 11) sorted by relevance

/dports/games/flightgear/flightgear-2020.3.11/src/Instrumentation/HUD/
H A DHUD_runway.cxx74 _runway = get_active_runway(); in draw()
75 if (!_runway) in draw()
171 double alt = _runway->geod().getElevationM(); in get_rwy_points()
172 double length = _runway->lengthM() * 0.5; in get_rwy_points()
173 double width = _runway->widthM() * 0.5; in get_rwy_points()
176 …geo_direct_wgs_84(alt, _runway->latitude(), _runway->longitude(), _runway->headingDeg(), length, &… in get_rwy_points()
179 …geo_direct_wgs_84(alt, _runway->latitude(), _runway->longitude(), _runway->headingDeg() + 180, len… in get_rwy_points()
182 …geo_direct_wgs_84(alt, backLat, backLon, _runway->headingDeg() + 90, width, &tempLat, &tempLon, &a… in get_rwy_points()
185 …geo_direct_wgs_84(alt, backLat, backLon, _runway->headingDeg() - 90, width, &tempLat, &tempLon, &a… in get_rwy_points()
372 float theta = SGGeodesy::courseDeg(acPos, _runway->geod()); in drawArrow()
[all …]
H A DHUD_private.hxx389 FGRunway* _runway; member in HUD::Runway
/dports/games/flightgear/flightgear-2020.3.11/src/Navaids/
H A Dwaypoint.cxx203 _runway(aPos) in RunwayWaypt()
215 return _runway->threshold(); in position()
220 return _runway->airport()->ident() + "-" + _runway->ident(); in ident()
225 return _runway; in source()
230 return _runway->headingDeg(); in headingRadialDeg()
256 _runway = apt->getRunwayByIdent(ident); in initFromProperties()
263 aProp->setStringValue("ident", _runway->ident()); in writeToProperties()
264 aProp->setStringValue("icao", _runway->airport()->ident()); in writeToProperties()
H A Dmarkerbeacon.cxx36 _runway(aRunway) in FGMarkerBeaconRecord()
42 FGPositioned* p = flightgear::NavDataCache::instance()->loadById(_runway); in runway()
H A Dprocedure.cxx65 _runway = aRwy; in setRunway()
70 return _runway->airport(); in airport()
76 r.push_back(_runway); in runways()
155 RunwayWaypt* rwy = new RunwayWaypt(_runway, NULL); in routeFromVectors()
H A Dmarkerbeacon.hxx41 PositionedID _runway; member in FGMarkerBeaconRecord
H A Dprocedure.hxx120 { return _runway; } in runway()
167 FGRunwayRef _runway; member in flightgear::Approach
H A Dwaypoint.hxx130 { return _runway; } in runway()
141 FGRunway* _runway; member in flightgear::RunwayWaypt
/dports/games/flightgear/flightgear-2020.3.11/src/Instrumentation/
H A Drnav_waypt_controller.cxx591 _runway(NULL), in RunwayCtl()
599 _runway = static_cast<RunwayWaypt*>(_waypt.get())->runway(); in init()
600 if (!_runway) { in init()
603 _targetTrack = _runway->headingDeg(); in init()
615 bearingAircraftRunwayEnd = SGGeodesy::courseDeg(_rnav->position(), _runway->end()); in update()
616 _distanceAircraftRunwayEnd = SGGeodesy::distanceM(_rnav->position(), _runway->end()); in update()
628 return SGGeodesy::distanceM(_rnav->position(), _runway->threshold()); in distanceToWayptM()
646 return SGGeodesy::courseDeg(_rnav->position(), _runway->end()); in trueBearingDeg()
651 return _runway->threshold(); in position()
654 FGRunway* _runway; member in flightgear::RunwayCtl
H A Dmk_viii.cxx4147 MK_VIII::Mode6Handler::test_runway (const FGRunway *_runway) in test_runway() argument
4149 if (_runway->lengthFt() < mk->conf.runway_database) in test_runway()
4386 FGRunway* _runway = apt->findBestRunwayForPos(apos).get(); in update_runway() local
4387 if (!_runway) in update_runway()
4394 runway.center = _runway->pointOnCenterline(_runway->lengthM() * 0.5); in update_runway()
4398 runway.half_width_m = _runway->widthM() * 0.5; in update_runway()
4399 double half_length_m = _runway->lengthM() * 0.5; in update_runway()
4408 runway.edge.heading = _runway->headingDeg(); in update_runway()
4411 runway.edge.position = _runway->begin(); in update_runway()
4414 runway.bias_points[0] = _runway->cart(); in update_runway()
[all …]
H A Dmk_viii.hxx1252 bool test_runway (const FGRunway *_runway);