FsPositionReferential
This enum is used by some camera functions to define the referential to use when setting or getting the camera position.
Syntax
enum FsPositionReferential : int
{
FS_POSITION_REFERENTIAL_NONE = 0,
FS_POSITION_REFERENTIAL_AIRCRAFT,
FS_POSITION_REFERENTIAL_WORLD,
FS_POSITION_REFERENTIAL_EYEPOINT
};
Members
| Enum Member | Description |
|---|---|
FS_POSITION_REFERENTIAL_NONE |
No reference (this should not be used). |
FS_POSITION_REFERENTIAL_AIRCRAFT |
The position is an offset from the aircraft Datum Reference Point (expressed in meters). |
FS_POSITION_REFERENTIAL_WORLD |
The position is expressed using latitude, longitude, and altitude. |
FS_POSITION_REFERENTIAL_EYEPOINT |
The position is an offset from the aircraft pilot eyepoint (expressed in meters). |
Remarks
N/A
Related Topics
0/255