Package org.lwjgl.ovr

Class OVRTrackerPose

  • All Implemented Interfaces:
    java.lang.AutoCloseable, NativeResource, Pointer


    public class OVRTrackerPose
    extends Struct
    Specifies the pose for a single sensor.

    Member documentation

    • TrackerFlagsovrTrackerFlags.
    • Pose – the sensor's pose. This pose includes sensor tilt (roll and pitch). For a leveled coordinate system use LeveledPose.
    • LeveledPose – t the sensor's leveled pose, aligned with gravity. This value includes position and yaw of the sensor, but not roll and pitch. It can be used as a reference point to render real-world objects in the correct location.

    Layout

    struct ovrTrackerPose {
        unsigned int TrackerFlags;
        ovrPosef Pose;
        ovrPosef LeveledPose;
        char[4];
    }