#include "FlyLegacy.h"
Go to the source code of this file.
Classes | |
| struct | SCIE |
| class | CImageTIFF |
| class | CMaskImage |
| class | CRawImage |
| class | CSunRawImage |
| class | CModelBIN |
| class | CModelSMF |
| class | CModelACM |
| class | CDataLookup |
| class | CDataMap |
Defines | |
| #define | MILES_PER_NM (1.151) |
| #define | KM_PER_NM (1.852) |
| #define | METRES_PER_FOOT (0.3048) |
| #define | FEET_PER_NM (6076.0) |
| #define | PI (3.1415926) |
| #define | DEG2RAD (PI / 180.0) |
| #define | RAD2DEG (180.0 / PI) |
| #define | FEET_PER_MILE (5280.0) |
| #define | FEET_PER_METRE (3.2808399) |
| #define | POLAR_CIRCUMFERENCE (double)(1.3104211E+08) |
| #define | FEET_PER_LAT_ARCSEC (double)(1.0111274E+02) |
| #define | EQUATORIAL_CIRCUMFERENCE (double)(1.3147339E+08) |
| #define | MEAN_CIRCUMFERENCE (FEET_PER_NM * 21600) |
Functions | |
| SPosition | GeocToGeod (SPosition) |
| SPosition | GeodToGeoc (SPosition) |
| SVector | GeocToCartesian (SPosition) |
| SPosition | CartesianToGeoc (SVector) |
| SVector | GeodToCartesian (SPosition) |
| SPosition | CartesianToGeod (SVector) |
| void | test_geodesy (void) |
| float | GreatCircleDistance (SPosition *from, SPosition *to) |
| SPosition | GreatCirclePosition (SPosition *from, SVector *polar) |
| SVector | GreatCirclePolar (SPosition *from, SPosition *to) |
| SVector | VectorSum (SVector v1, SVector v2) |
| SVector | VectorDifference (SVector v1, SVector v2) |
| double | WrapTwoPi (double rad) |
| double | WrapPi (double rad) |
| double | Wrap360 (double deg) |
| int | Wrap360 (int deg) |
| double | Wrap180 (double deg) |
| float | Wrap24 (float hrs) |
| float | Wrap60 (float min) |
| double | FeetPerLonArcsec (double lat) |
| SPosition | AddVector (SPosition &from, SVector &v) |
| SPosition | SubtractVector (SPosition &from, SVector &v) |
| SVector | SubtractPosition (SPosition &from, SPosition &to) |
| float | NmToMi (float nm) |
| float | MiToNm (float mi) |
| float | FeetToNm (float feet) |
| float | NmToFeet (float nm) |
| float | FpsToKt (float fps) |
| double | FeetToMetres (double ft) |
| double | MetresToFeet (double m) |
| float | KmToNm (float km) |
| float | NmToKm (float nm) |
| float | RadToDeg (float rad) |
| double | RadToDeg (double rad) |
| float | DegToRad (float deg) |
| double | DegToRad (double deg) |
| char * | TagString (char *s, Tag tag) |
| Tag | StringToTag (const char *s) |
| void | TagToString (char *s, Tag tag) |
| void | FormatPosition (SPosition pos, char *s) |
| void | FormatRADec (double ra, double dec, char *s) |
| void | FormatSiderealTime (double st, char *s) |
| void | TrimTrailingWhitespace (char *s) |
| EMessageResult | SendMessage (SMessage *msg) |
| void | CIE_Yxy_to_XYZ (SCIE in, SCIE &out) |
| void | CIE_XYZ_to_RGB_D65 (SCIE XYZ, sgdVec3 &RGB) |
| void | init_globe_tile_table () |
| Initialize globe tile latitude lookup table. | |
| void | lat_lon_to_qgt (double latArg, double lonArg, int &x, int &z) |
| Convert lat/lon into quarter globe tile indices. | |
| void | lat_lon_to_globe_tile (double latArg, double lonArg, int &x, int &z) |
| Convert lat/lon into globe tile indices. | |
| void | qgt_lon_bounds (int x, double &w, double &e) |
| Find longitude bounds for a given QGT x-index. | |
| void | qgt_lat_bounds (int z, double &s, double &n) |
| Find latitude bounds for a given QGT z-index. | |
| void | globe_tile_lon_bounds (int x, double &w, double &e) |
| Find longitude bounds for a given GT x-index. | |
| void | globe_tile_lat_bounds (int z, double &s, double &n) |
| Find latitude bounds for a given GT x-index. | |
| void | qgt_position (SPosition pos, int &qx, int &qz, double &x, double &z) |
| Calculate distance between a position and the center of a given QGT, in QGT units. | |
| void | delta_qgt (SPosition pos, int rx, int rz, double &x, double &z) |
| float | TerrainScale (SPosition pos) |
| float | GlobeTileDistance (void) |
| SVector | PosToFlatCartesian (SPosition pos, int gx, int gz) |
| SVector | PosToFlatCartesian (SPosition pos) |
| SVector | PosToScaledFlatCartesian (SPosition pos) |
| SVector | PosToFlatCartesianQgt (SPosition pos, int x, int z) |
| Find unscaled cartesian coordinate of world position relative to the given QGT. | |
| SVector | PosToFlatCartesianQgt (SPosition pos) |
| Find cartesian coordinate of world position relative to the QGT it is in. | |
| SVector | PosToScaledFlatCartesianQgt (SPosition pos) |
| Find scaled cartesian coordinate of world position relative to the QGT it is in. | |
| SSurface * | CreateSurface (int width, int height) |
| void | FreeSurface (SSurface *surface) |
| void | EraseSurface (SSurface *surface) |
| void | EraseSurfaceRGB (SSurface *surface, unsigned int rgb) |
| void | EraseSurfaceRGBA (SSurface *surface, unsigned int rgba) |
| void | DrawDot (SSurface *surface, int x, int y, unsigned int rgbColor) |
| void | DrawLine (SSurface *surface, int x1, int y1, int x2, int y2, unsigned int rgbColor) |
| void | DrawRect (SSurface *surface, int x1, int y1, int x2, int y2, unsigned int rgbColor) |
| void | FillRect (SSurface *surface, int x1, int y1, int x2, int y2, unsigned int rgbColor) |
| void | DrawCircle (SSurface *surface, int xCenter, int yCenter, int radius, unsigned int rgbColor) |
| unsigned int | MakeRGB (unsigned int r, unsigned int g, unsigned int b) |
| unsigned int | MakeRGBA (unsigned int r, unsigned int g, unsigned int b, unsigned int a) |
| void | UnmakeRGB (unsigned int rgb, unsigned int *r, unsigned int *g, unsigned int *b) |
| void | Blit (SSurface *surface) |
| void | BlitTransparent (SSurface *surface, unsigned int rgbTransparentColor) |
| GLuint | TextureFromSurface (SSurface *s, bool mipmap) |
| int | LoadBitmap (SBitmap *bm) |
| void | DrawBitmap (SSurface *surface, SBitmap *bm, int x, int y, int frame) |
| void | DrawBitmapPartial (SSurface *surface, SBitmap *bm, int dx, int dy, int sx1, int sy1, int sx2, int sy2, int frame) |
| void | GetBitmapSize (SBitmap *bm, int *xSize, int *ySize) |
| int | NumBitmapFrames (SBitmap *bm) |
| void | FreeBitmap (SBitmap *bm) |
| int | LoadFont (SFont *font) |
| void | FreeFont (SFont *font) |
| void | DrawChar (SSurface *surface, SFont *font, int x, int y, unsigned int rgbColour, char ascii) |
| void | DrawText (SSurface *surface, SFont *font, int x, int y, unsigned int rgbColour, const char *text) |
| void | DrawTextC (SSurface *surface, SFont *font, int x, int y, unsigned int rgbColour, const char *text) |
| void | DrawTextR (SSurface *surface, SFont *font, int x, int y, unsigned int rgbColour, const char *text) |
| int | TextHeight (SFont *font, const char *text) |
| int | TextWidth (SFont *font, const char *text) |
| int | CharHeight (SFont *font, char c) |
| int | CharWidth (SFont *font, char c) |
| int | MaxCharHeight (SFont *font) |
| int | MaxCharWidth (SFont *font) |
Definition in file Utility.h.
|
|
|
|
|
|
|
|
Definition at line 49 of file Utility.h. Referenced by AddVector(), and SubtractPosition(). |
|
|
Definition at line 45 of file Utility.h. Referenced by CElevationBlockBT::Load(). |
|
|
Definition at line 44 of file Utility.h. Referenced by CTerrainManager::UpdateMaxVisibility(). |
|
|
Definition at line 40 of file Utility.h. Referenced by FeetToNm(), and NmToFeet(). |
|
|
|
|
|
Definition at line 55 of file Utility.h. Referenced by FeetPerLonArcsec(). |
|
|
Definition at line 39 of file Utility.h. Referenced by FeetToMetres(), and MetresToFeet(). |
|
|
|
|
|
|
|
|
|
|
|
||||||||||||
|
Definition at line 195 of file Math.cpp. References SPosition::alt, FEET_PER_LAT_ARCSEC, FeetPerLonArcsec(), SPosition::lat, SPosition::lon, WrapArcsec(), SVector::x, SVector::y, and SVector::z. Referenced by SubtractVector(), and CCamera::UpdateCamera(). |
|
|
Definition at line 320 of file Bitmaps.cpp. References SSurface::drawBuffer, SSurface::xSize, and SSurface::ySize. Referenced by CGaugeKnob::Draw(), and Draw2D(). |
|
||||||||||||
|
Definition at line 337 of file Bitmaps.cpp. References SSurface::drawBuffer, SSurface::xSize, and SSurface::ySize. Referenced by BlitSurface(), and CPanel::Draw(). |
|
|
Definition at line 236 of file Geodesy.cpp. References SPosition::alt, SPosition::lat, SPosition::lon, PI, SVector::x, SVector::y, and SVector::z. Referenced by test_geodesy(). |
|
|
|
|
||||||||||||
|
Definition at line 635 of file Fonts.cpp. References CBitmappedFont::CharHeight(), and SFont::font. |
|
||||||||||||
|
Definition at line 652 of file Fonts.cpp. References CBitmappedFont::CharWidth(), and SFont::font. |
|
||||||||||||
|
Definition at line 498 of file Scenery.cpp. References SCIE::XYZ. |
|
||||||||||||
|
Definition at line 487 of file Scenery.cpp. |
|
||||||||||||
|
|
Definition at line 323 of file Math.cpp. References PI. |
|
|
||||||||||||||||||||||||
|
Definition at line 191 of file Scenery.cpp. References qgt_position(). Referenced by CQuarterGlobeTile::UpdatePosition(). |
|
||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||
|
Definition at line 818 of file Bitmaps.cpp. References SBitmap::bitmap, gtfo, SBitmap::type, TYPE_FRAMES, and TYPE_SINGLE. Referenced by InitLoadingScreen(). |
|
||||||||||||||||||||||||||||
|
Definition at line 522 of file Fonts.cpp. References CBitmappedFontChar::Draw(), SFont::font, and CBitmappedFont::GetAscii(). Referenced by CBKADFKR87Gauge::Draw(). |
|
||||||||||||||||||||||||
|
Definition at line 298 of file Bitmaps.cpp. |
|
||||||||||||||||||||
|
Definition at line 140 of file Bitmaps.cpp. References SSurface::drawBuffer, SSurface::xSize, SSurface::xSpan, and SSurface::ySize. Referenced by CDetailTile::CreateFanGeometry(), CDetailTile::CreateStripGeometry(), CBitmappedFontChar::Draw(), CFuiGraphTrace::Draw(), and DrawLine(). |
|
||||||||||||||||||||||||||||
|
Definition at line 161 of file Bitmaps.cpp. References DrawDot(), and DrawLine(). Referenced by CDefaultSuperTile::CDefaultSuperTile(), CQuarterGlobeTile::Create(), CDetailTile::CreateFanGeometry(), CDetailTile::CreateStripGeometry(), CFuiGraphTrace::Draw(), CFuiLine::Draw(), DrawLine(), DrawRect(), and FillRect(). |
|
||||||||||||||||||||||||||||
|
Definition at line 273 of file Bitmaps.cpp. References DrawLine(). |
|
||||||||||||||||||||||||||||
|
Definition at line 540 of file Fonts.cpp. References CBitmappedFontChar::Draw(), SFont::font, CBitmappedFont::GetAscii(), CBitmappedFontChar::GetWidth(), and CBitmappedFont::space. Referenced by CFuiGroupBox::Draw(), CFuiTextField::Draw(), CFuiLabel::Draw(), CFuiRadioButton::Draw(), CFuiCheckbox::Draw(), CFuiPopupMenu::Draw(), CBKADFKR87Gauge::Draw(), CBKXPDRKT76Gauge::Draw(), CBKNavComKX155Gauge::Draw(), DrawTextC(), and DrawTextR(). |
|
||||||||||||||||||||||||||||
|
Definition at line 566 of file Fonts.cpp. References DrawText(), SFont::font, and CBitmappedFont::TextWidth(). Referenced by CDefaultSuperTile::CDefaultSuperTile(), CQuarterGlobeTile::Create(), CDetailTile::CreateFanGeometry(), CDetailTile::CreateStripGeometry(), CFuiLabel::Draw(), CFuiButton::Draw(), CFuiWindowTitle::Draw(), CBKADFKR87Gauge::Draw(), InitExitScreen(), and InitSplashScreen(). |
|
||||||||||||||||||||||||||||
|
Definition at line 583 of file Fonts.cpp. References DrawText(), SFont::font, and CBitmappedFont::TextWidth(). Referenced by CFuiLabel::Draw(), CBKADFKR87Gauge::Draw(), and CBKNavComKX155Gauge::Draw(). |
|
|
Definition at line 77 of file Bitmaps.cpp. References EraseSurfaceRGBA(). Referenced by CPanel::Activate(), CGauge::ClearSurface(), CFuiLabel::Draw(), CNavigationGauge::Draw(), CGaugeKnob::Draw(), InitExitScreen(), InitLoadingScreen(), InitSplashScreen(), and CFuiComponent::MakeSurface(). |
|
||||||||||||
|
Definition at line 82 of file Bitmaps.cpp. References EraseSurfaceRGBA(). Referenced by CDefaultSuperTile::CDefaultSuperTile(), CQuarterGlobeTile::Create(), CDetailTile::CreateFanGeometry(), CDetailTile::CreateStripGeometry(), and CFuiTextField::Draw(). |
|
||||||||||||
|
Definition at line 87 of file Bitmaps.cpp. References SSurface::drawBuffer, SSurface::xSpan, and SSurface::ySize. Referenced by EraseSurface(), and EraseSurfaceRGB(). |
|
|
Definition at line 178 of file Math.cpp. References DegToRad(), and MEAN_CIRCUMFERENCE. Referenced by AddVector(), and SubtractPosition(). |
|
|
Definition at line 284 of file Math.cpp. References METRES_PER_FOOT. Referenced by GeocToGeod(), GeodToGeoc(), GreatCirclePolar(), and GreatCirclePosition(). |
|
|
Definition at line 266 of file Math.cpp. References FEET_PER_NM. Referenced by FpsToKt(). |
|
||||||||||||||||||||||||||||
|
Definition at line 285 of file Bitmaps.cpp. References DrawLine(), and FillRect(). Referenced by FillRect(). |
|
||||||||||||
|
Definition at line 399 of file Scenery.cpp. References SPosition::lat, and SPosition::lon. Referenced by CTerrainTile::FormatBounds(), init_globe_tile_table(), CCameraManager::Print(), and test_geodesy(). |
|
||||||||||||||||
|
Definition at line 437 of file Scenery.cpp. References RadToDeg(), and WrapTwoPi(). Referenced by CSkyManager::Print(). |
|
||||||||||||
|
Definition at line 466 of file Scenery.cpp. Referenced by CTimeManager::Print(). |
|
|
Definition at line 276 of file Math.cpp. References FeetToNm(). |
|
|
|
Definition at line 514 of file Fonts.cpp. References SFont::font. Referenced by cleanup_fonts(). |
|
|
|
Definition at line 209 of file Geodesy.cpp. References SPosition::alt, SPosition::lat, SPosition::lon, SVector::x, SVector::y, and SVector::z. Referenced by GeodToCartesian(), and test_geodesy(). |
|
|
Definition at line 104 of file Geodesy.cpp. References SPosition::alt, ARCSEC_TO_RAD, E, EPS, EQ_RAD_SQUARE_M, EQUATORIAL_RADIUS_M, FeetToMetres(), SPosition::lat, SPosition::lon, MetresToFeet(), ONE_ARCSEC, and PI_2. Referenced by test_geodesy(). |
|
|
Definition at line 252 of file Geodesy.cpp. References GeocToCartesian(), and GeodToGeoc(). Referenced by CSkyManager::Update(). |
|
|
Definition at line 169 of file Geodesy.cpp. References SPosition::alt, ARCSEC_TO_RAD, E, EQ_RAD_SQUARE_M, FeetToMetres(), SPosition::lat, SPosition::lon, and MetresToFeet(). Referenced by GeodToCartesian(), and test_geodesy(). |
|
||||||||||||||||
|
||||||||||||||||
|
Definition at line 336 of file Scenery.cpp. References globe_tile_lat_table, and gtfo. Referenced by CDetailTile::CDetailTile(), CSuperTile::CSuperTile(), init_globe_tile_table(), lat_lon_to_qgt(), PosToFlatCartesian(), and qgt_lat_bounds(). |
|
||||||||||||||||
|
Definition at line 317 of file Scenery.cpp. References globe_tile_lon(), and gtfo. Referenced by CDetailTile::CDetailTile(), CSuperTile::CSuperTile(), lat_lon_to_qgt(), PosToFlatCartesian(), and qgt_lon_bounds(). |
|
|
Definition at line 532 of file Scenery.cpp. References NmToFeet(). |
|
||||||||||||
|
|
|
||||||||||||
|
Definition at line 524 of file Geodesy.cpp. References SPosition::alt, FeetToMetres(), geo_inverse_wgs_84(), SVector::h, SPosition::lat, SPosition::lon, MetresToFeet(), SVector::p, and SVector::r. Referenced by CBKKX155Radio::TimeSlice(), and CNavRadio::TimeSlice(). |
|
||||||||||||
|
Definition at line 376 of file Geodesy.cpp. References SPosition::alt, FeetToMetres(), geo_direct_wgs_84(), SVector::h, SPosition::lat, SPosition::lon, and SVector::r. |
|
|
The globe tile latitude lookup table allows determination of N and S latitude boundaries for all 256 possible globe tile z-indices. Entry zero is latitude 0 (the equator) and successive entries are the latitudes of each globe tile boundary approaching the poles. The formula for globe tile latitude boundaries is: k = (360 / 256) L(0) = 0 L(n) = L(n-1) + k * cos[L(n-1)] Definition at line 61 of file Scenery.cpp. References SPosition::alt, DegToRad(), FormatPosition(), globe_tile_lat_bounds(), globe_tile_lat_table, SPosition::lat, SPosition::lon, and qgt_lat_bounds(). Referenced by Initialize(). |
|
|
Definition at line 294 of file Math.cpp. References KM_PER_NM. |
|
||||||||||||||||||||
|
Definition at line 264 of file Scenery.cpp. References globe_tile_lat_table, and gtfo. Referenced by GetLocalNavaids(), lat_lon_to_qgt(), PosToFlatCartesian(), and PosToScaledFlatCartesian(). |
|
||||||||||||||||||||
|
Definition at line 213 of file Scenery.cpp. References globe_tile_lat_bounds(), globe_tile_lon_bounds(), and lat_lon_to_globe_tile(). Referenced by PosToFlatCartesianQgt(), qgt_position(), and CTerrainManager::SetPosition(). |
|
|
|
Definition at line 465 of file Fonts.cpp. References CBitmappedFont::end, SDefaultFont::end, SFont::font, SFont::fontName, CBitmappedFont::h, SDefaultFont::h, CBitmappedFont::LoadRaw(), SDefaultFont::rawFilename, CBitmappedFont::rawFilename, CBitmappedFont::space, SDefaultFont::space, CBitmappedFont::start, SDefaultFont::start, CBitmappedFont::w, and SDefaultFont::w. Referenced by InitFonts(). |
|
||||||||||||||||
|
||||||||||||||||||||
|
Definition at line 307 of file Bitmaps.cpp. Referenced by CBitmapPBM::Draw(), and CBitmapPBM::DrawPartial(). |
|
|
Definition at line 670 of file Fonts.cpp. References SFont::font, and CBitmappedFont::MaxCharHeight(). Referenced by CFuiLabel::Draw(). |
|
|
Definition at line 689 of file Fonts.cpp. References SFont::font, and CBitmappedFont::MaxCharWidth(). |
|
|
Definition at line 289 of file Math.cpp. References METRES_PER_FOOT. Referenced by CQTRFile::ExtractAbsoluteData(), CQTRFile::ExtractRelativeData(), GeocToGeod(), GeodToGeoc(), and GreatCirclePolar(). |
|
|
Definition at line 261 of file Math.cpp. References MILES_PER_NM. |
|
|
Definition at line 271 of file Math.cpp. References FEET_PER_NM. Referenced by GlobeTileDistance(), PosToFlatCartesian(), and PosToFlatCartesianQgt(). |
|
|
Definition at line 299 of file Math.cpp. References KM_PER_NM. |
|
|
Definition at line 256 of file Math.cpp. References MILES_PER_NM. |
|
|
Definition at line 858 of file Bitmaps.cpp. References SBitmap::bitmap, SBitmap::type, TYPE_FRAMES, and TYPE_SINGLE. Referenced by CGaugeKnob::Draw(), CNavigationGauge::ReadFinished(), and CGaugeNeedle::ReadFinished(). |
|
|
Definition at line 584 of file Scenery.cpp. References SPosition::lat, lat_lon_to_globe_tile(), SPosition::lon, and PosToFlatCartesian(). |
|
||||||||||||||||
|
Definition at line 544 of file Scenery.cpp. Referenced by CDefaultSuperTile::CDefaultSuperTile(), CSlicedSuperTile::Create(), CDetailTile::CreateFanGeometry(), CDetailTile::CreateStripGeometry(), PosToFlatCartesian(), and PosToScaledFlatCartesian(). |
|
|
Definition at line 673 of file Scenery.cpp. References SPosition::lat, lat_lon_to_qgt(), SPosition::lon, and PosToFlatCartesianQgt(). |
|
||||||||||||||||
|
Definition at line 623 of file Scenery.cpp. Referenced by PosToFlatCartesianQgt(), and PosToScaledFlatCartesianQgt(). |
|
|
Definition at line 591 of file Scenery.cpp. References SPosition::lat, lat_lon_to_globe_tile(), SPosition::lon, PosToFlatCartesian(), TerrainScale(), SVector::x, and SVector::y. |
|
|
Definition at line 686 of file Scenery.cpp. References PosToFlatCartesianQgt(), TerrainScale(), SVector::x, and SVector::y. Referenced by CCameraManager::Print(), CTerrainManager::SetCamera(), and CModelObject::SetPosition(). |
|
||||||||||||||||
|
Definition at line 380 of file Scenery.cpp. References globe_tile_lat_bounds(). Referenced by init_globe_tile_table(), PosToFlatCartesianQgt(), and qgt_position(). |
|
||||||||||||||||
|
Definition at line 359 of file Scenery.cpp. References globe_tile_lon_bounds(). Referenced by PosToFlatCartesianQgt(), and qgt_position(). |
|
||||||||||||||||||||||||
|
Definition at line 171 of file Scenery.cpp. References SPosition::lat, lat_lon_to_qgt(), SPosition::lon, qgt_lat_bounds(), and qgt_lon_bounds(). Referenced by delta_qgt(). |
|
|
Definition at line 313 of file Math.cpp. References PI. |
|
|
|
|
||||||||||||
|
Definition at line 233 of file Math.cpp. References SPosition::alt, FEET_PER_LAT_ARCSEC, FeetPerLonArcsec(), SPosition::lat, SPosition::lon, WrapArcsec(), SVector::x, SVector::y, and SVector::z. |
|
||||||||||||
|
Definition at line 220 of file Math.cpp. References AddVector(), SVector::x, SVector::y, and SVector::z. |
|
||||||||||||
|
Definition at line 143 of file Math.cpp. References TagToString(). Referenced by CFuiGroupBox::Read(), CFuiWindow::Read(), and CFuiComponent::Read(). |
|
||||||||||||
|
|
Definition at line 524 of file Scenery.cpp. References DegToRad(), and SPosition::lat. Referenced by CTerrainManager::Draw(), PosToScaledFlatCartesian(), PosToScaledFlatCartesianQgt(), CTerrainManager::SetCamera(), and CTerrainManager::SetPosition(). |
|
|
Definition at line 44 of file Geodesy.cpp. References SPosition::alt, CartesianToGeoc(), FormatPosition(), GeocToCartesian(), GeocToGeod(), GeodToGeoc(), SPosition::lat, and SPosition::lon. |
|
||||||||||||
|
Definition at line 601 of file Fonts.cpp. References SFont::font, and CBitmappedFont::TextHeight(). Referenced by CFuiButton::Draw(), CFuiWindowTitle::Draw(), and CBKADFKR87Gauge::Draw(). |
|
||||||||||||
|
Definition at line 97 of file Bitmaps.cpp. References SSurface::drawBuffer, SSurface::xSize, and SSurface::ySize. Referenced by CDefaultSuperTile::CDefaultSuperTile(), CQuarterGlobeTile::Create(), CDetailTile::CreateFanGeometry(), and CDetailTile::CreateStripGeometry(). |
|
||||||||||||
|
Definition at line 619 of file Fonts.cpp. References SFont::font, and CBitmappedFont::TextWidth(). Referenced by CFuiLabel::Draw(), CFuiRadioButton::Draw(), and CFuiCheckbox::Draw(). |
|
|
Definition at line 365 of file Ini.cpp. Referenced by CFuiManager::CFuiManager(), CFuiTheme::CFuiTheme(), CModelACM::CModelACM(), CStarImages::LoadConstellations(), ParseKeyValue(), and ParseSection(). |
|
||||||||||||||||||||
|
Definition at line 312 of file Bitmaps.cpp. Referenced by CFuiThemeWidget::Print(). |
|
||||||||||||
|
Definition at line 345 of file Math.cpp. References SVector::x, SVector::y, and SVector::z. |
|
||||||||||||
|
Definition at line 332 of file Math.cpp. References SVector::x, SVector::y, and SVector::z. |
|
|
Definition at line 89 of file Math.cpp. References Wrap360(). Referenced by CTimeManager::GetLocalSiderealTime(), and CNavRadio::TimeSlice(). |
|
|
Definition at line 106 of file Math.cpp. Referenced by CTimeManager::GetGreenwichSiderealTime(), CTimeManager::GetLocalSiderealTime(), and CTimeManager::SunriseSunset(). |
|
|
|
|
|
Definition at line 61 of file Math.cpp. Referenced by CNavigationGauge::Draw(), CGaugeNeedle::Draw(), CBasicADFGauge::MouseClick(), CBKKX155Radio::ReceiveMessage(), CTimeManager::SunriseSunset(), CBKKX155Radio::TimeSlice(), CNavRadio::TimeSlice(), and Wrap180(). |
|
|
|
|
|
|
|
|
|
Documentation generated by
|