Package org.lwjgl.ovr

Class OVRPoseStatef

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


    public class OVRPoseStatef
    extends Struct
    A full pose (rigid body) configuration with first and second derivatives.

    Body refers to any object for which ovrPoseStatef is providing data. It can be the HMD, Touch controller, sensor or something else. The context depends on the usage of the struct.

    Member documentation

    • ThePose – position and orientation
    • AngularVelocity – angular velocity in radians per second
    • LinearVelocity – velocity in meters per second
    • AngularAcceleration – angular acceleration in radians per second per second
    • LinearAcceleration – acceleration in meters per second per second
    • TimeInSeconds – absolute time that this pose refers to. See OVR.ovr_GetTimeInSeconds()

    Layout

    struct ovrPoseStatef {
        ovrPosef ThePose;
        ovrVector3f AngularVelocity;
        ovrVector3f LinearVelocity;
        ovrVector3f AngularAcceleration;
        ovrVector3f LinearAcceleration;
        double TimeInSeconds;
    }