SIMCONNECT_POSITION_REFERENTIAL

The SIMCONNECT_POSITION_REFERENTIAL enum is used to define what reference is being used for the camera position.

 

Syntax
enum SIMCONNECT_POSITION_REFERENTIAL
{
    SIMCONNECT_POSITION_REFERENTIAL_NONE,
    SIMCONNECT_POSITION_REFERENTIAL_AIRCRAFT,
    SIMCONNECT_POSITION_REFERENTIAL_WORLD,
    SIMCONNECT_POSITION_REFERENTIAL_EYEPOINT
};

 

Members
Member Description
SIMCONNECT_POSITION_REFERENTIAL_NONE

No reference (this should not be used).

SIMCONNECT_POSITION_REFERENTIAL_AIRCRAFT The position is an offset from the aircraft Datum Reference Point (expressed in meters).
SIMCONNECT_POSITION_REFERENTIAL_WORLD The position is expressed using latitude, longitude, and altitude.
SIMCONNECT_POSITION_REFERENTIAL_EYEPOINT

The position is an offset from the aircraft pilot eyepoint (expressed in meters).

 

Remarks

This enum will be used by the SimConnect_CameraGet and other camera functions.

 

0/255