![]() |
Leap Motion C API
4.1.0
The API to the LeapC library.
|
Functions exported by the LeapC library. More...
Functions | |
| int64_t | LeapGetNow (void) |
| Samples the universal clock used by the system to timestamp image and tracking frames. More... | |
| eLeapRS | LeapCreateConnection (const LEAP_CONNECTION_CONFIG *pConfig, LEAP_CONNECTION *phConnection) |
| Creates a new LEAP_CONNECTION object. More... | |
| eLeapRS | LeapOpenConnection (LEAP_CONNECTION hConnection) |
| Opens a connection to the service. More... | |
| eLeapRS | LeapGetConnectionInfo (LEAP_CONNECTION hConnection, LEAP_CONNECTION_INFO *pInfo) |
| Retrieves status information about the specified connection. More... | |
| eLeapRS | LeapSetPolicyFlags (LEAP_CONNECTION hConnection, uint64_t set, uint64_t clear) |
| Sets or clears one or more policy flags. More... | |
| eLeapRS | LeapSetPause (LEAP_CONNECTION hConnection, bool pause) |
| Pauses the service. More... | |
| eLeapRS | LeapSaveConfigValue (LEAP_CONNECTION hConnection, const char *key, const LEAP_VARIANT *value, uint32_t *pRequestID) |
| Causes the client to commit a configuration change to the Leap Motion service. More... | |
| eLeapRS | LeapRequestConfigValue (LEAP_CONNECTION hConnection, const char *key, uint32_t *pRequestID) |
| Requests the current value of a service configuration setting. More... | |
| eLeapRS | LeapGetDeviceList (LEAP_CONNECTION hConnection, LEAP_DEVICE_REF *pArray, uint32_t *pnArray) |
| Retrieves a list of Leap Motion devices currently attached to the system. More... | |
| eLeapRS | LeapOpenDevice (LEAP_DEVICE_REF rDevice, LEAP_DEVICE *phDevice) |
| Opens a device reference and retrieves a handle to the device. More... | |
| eLeapRS | LeapGetDeviceInfo (LEAP_DEVICE hDevice, LEAP_DEVICE_INFO *info) |
| Gets device properties. More... | |
| eLeapRS | LeapPollConnection (LEAP_CONNECTION hConnection, uint32_t timeout, LEAP_CONNECTION_MESSAGE *evt) |
| Polls the connection for a new event. More... | |
| eLeapRS | LeapGetFrameSize (LEAP_CONNECTION hConnection, int64_t timestamp, uint64_t *pncbEvent) |
| Retrieves the number of bytes required to allocate an interpolated frame at the specified time. More... | |
| eLeapRS | LeapInterpolateFrame (LEAP_CONNECTION hConnection, int64_t timestamp, LEAP_TRACKING_EVENT *pEvent, uint64_t ncbEvent) |
| Constructs a frame at the specified timestamp by interpolating between measured frames. More... | |
| eLeapRS | LeapInterpolateFrameFromTime (LEAP_CONNECTION hConnection, int64_t timestamp, int64_t sourceTimestamp, LEAP_TRACKING_EVENT *pEvent, uint64_t ncbEvent) |
| Constructs a frame at the specified timestamp by interpolating between a frame near the timestamp and a frame near the sourceTimestamp. More... | |
| eLeapRS | LeapInterpolateHeadPose (LEAP_CONNECTION hConnection, int64_t timestamp, LEAP_HEAD_POSE_EVENT *pEvent) |
| Gets the head tracking pose at the specified timestamp by interpolating between measured frames. More... | |
| void | LeapCloseDevice (LEAP_DEVICE hDevice) |
| Closes a device handle previously opened with LeapOpenDevice. More... | |
| void | LeapCloseConnection (LEAP_CONNECTION hConnection) |
| Closes a previously opened connection. More... | |
| void | LeapDestroyConnection (LEAP_CONNECTION hConnection) |
| Destroys a previously opened connection. More... | |
| eLeapRS | LeapCreateClockRebaser (LEAP_CLOCK_REBASER *phClockRebaser) |
| Initializes a new Leap clock-rebaser handle object. More... | |
| eLeapRS | LeapUpdateRebase (LEAP_CLOCK_REBASER hClockRebaser, int64_t userClock, int64_t leapClock) |
| Updates the relationship between the Leap Motion clock and the user clock. More... | |
| eLeapRS | LeapRebaseClock (LEAP_CLOCK_REBASER hClockRebaser, int64_t userClock, int64_t *pLeapClock) |
| Computes the Leap Motion clock corresponding to a specified application clock value. More... | |
| void | LeapDestroyClockRebaser (LEAP_CLOCK_REBASER hClockRebaser) |
| Destroys a previously created clock-rebaser object. More... | |
| LEAP_VECTOR | LeapPixelToRectilinear (LEAP_CONNECTION hConnection, eLeapPerspectiveType camera, LEAP_VECTOR pixel) |
| Provides the corrected camera ray intercepting the specified point on the image. More... | |
| LEAP_VECTOR | LeapRectilinearToPixel (LEAP_CONNECTION hConnection, eLeapPerspectiveType camera, LEAP_VECTOR rectilinear) |
| Provides the point in the image corresponding to a ray projecting from the camera. More... | |
| void | LeapCameraMatrix (LEAP_CONNECTION hConnection, eLeapPerspectiveType camera, float *dest) |
| Returns an OpenCV-compatible camera matrix. More... | |
| void | LeapDistortionCoeffs (LEAP_CONNECTION hConnection, eLeapPerspectiveType camera, float *dest) |
| Returns an OpenCV-compatible lens distortion using the 8-parameter rational model. More... | |
| const char * | LeapDevicePIDToString (eLeapDevicePID pid) |
| Provides the human-readable canonical name of the specified device model. More... | |
| eLeapRS | LeapRecordingOpen (LEAP_RECORDING *ppRecording, const char *filePath, LEAP_RECORDING_PARAMETERS params) |
| Opens or creates a LEAP_RECORDING. More... | |
| eLeapRS | LeapRecordingClose (LEAP_RECORDING *ppRecording) |
| Closes a LEAP_RECORDING. More... | |
| eLeapRS | LeapRecordingGetStatus (LEAP_RECORDING pRecording, LEAP_RECORDING_STATUS *pstatus) |
| Fills in a LEAP_RECORDING_STATUS struct for an open recording. More... | |
| eLeapRS | LeapRecordingReadSize (LEAP_RECORDING pRecording, uint64_t *pncbEvent) |
| Retrieves the number of bytes required to allocate the next frame in a recording. More... | |
| eLeapRS | LeapRecordingRead (LEAP_RECORDING pRecording, LEAP_TRACKING_EVENT *pEvent, uint64_t ncbEvent) |
| Reads a tracking frame from a LEAP_RECORDING file. More... | |
| eLeapRS | LeapRecordingWrite (LEAP_RECORDING pRecording, LEAP_TRACKING_EVENT *pEvent, uint64_t *pnBytesWritten) |
| Writes a tracking frame to a LEAP_RECORDING file. More... | |
Functions exported by the LeapC library.
| void LeapCameraMatrix | ( | LEAP_CONNECTION | hConnection, |
| eLeapPerspectiveType | camera, | ||
| float * | dest | ||
| ) |
Returns an OpenCV-compatible camera matrix.
| hConnection | The connection handle created by LeapCreateConnection(). | |
| camera | The camera to use, a member of the eLeapPerspectiveType enumeration | |
| [out] | dest | A pointer to a single-precision float array of size 9 |
| void LeapCloseConnection | ( | LEAP_CONNECTION | hConnection | ) |
Closes a previously opened connection.
This method closes the specified connection object if it is opened
This method never fails.
| hConnection | A handle to the connection object to be closed. |
| void LeapCloseDevice | ( | LEAP_DEVICE | hDevice | ) |
Closes a device handle previously opened with LeapOpenDevice.
| hDevice | The device handle to close. |
| eLeapRS LeapCreateClockRebaser | ( | LEAP_CLOCK_REBASER * | phClockRebaser | ) |
Initializes a new Leap clock-rebaser handle object.
Pass the filled-in LEAP_CLOCK_REBASER object to calls to LeapUpdateRebase(), LeapRebaseClock(), and LeapDestroyClockRebaser().
| [out] | phClockRebaser | The pointer to the clock-rebaser object to be initialized. |
| eLeapRS LeapCreateConnection | ( | const LEAP_CONNECTION_CONFIG * | pConfig, |
| LEAP_CONNECTION * | phConnection | ||
| ) |
Creates a new LEAP_CONNECTION object.
Pass the LEAP_CONNECTION pointer to LeapOpenConnection() to establish a connection to the Leap Motion service; and to subsequent operations on the same connection.
| pConfig | The configuration to be used with the newly created connection. If pConfig is null, a connection is created with a default configuration. | |
| [out] | phConnection | Receives a pointer to the connection object |
| void LeapDestroyClockRebaser | ( | LEAP_CLOCK_REBASER | hClockRebaser | ) |
Destroys a previously created clock-rebaser object.
This method destroys the specified clock-rebaser object, and releases all resources associated with it.
| hClockRebaser | A handle to the clock-rebaser object to be destroyed. |
| void LeapDestroyConnection | ( | LEAP_CONNECTION | hConnection | ) |
Destroys a previously opened connection.
This method closes the specified connection object if it is opened, destroys the underlying object, and releases all resources associated with it.
This method never fails.
Be sure that no other functions are accessing the connection when this function is called.
| hConnection | A handle to the connection object to be destroyed. |
| const char* LeapDevicePIDToString | ( | eLeapDevicePID | pid | ) |
Provides the human-readable canonical name of the specified device model.
This method is guaranteed to never return null for the LEAP_DEVICE_INFO.pid field returned by a successful call to LeapGetDeviceInfo
| pid | The pid of the device |
| void LeapDistortionCoeffs | ( | LEAP_CONNECTION | hConnection, |
| eLeapPerspectiveType | camera, | ||
| float * | dest | ||
| ) |
Returns an OpenCV-compatible lens distortion using the 8-parameter rational model.
The order of the returned array is: [k1, k2, p1, p2, k3, k4, k5, k6]
| hConnection | The connection handle created by LeapCreateConnection(). | |
| camera | The camera to use, a member of the eLeapPerspectiveType enumeration | |
| [out] | dest | A pointer to a single-precision float array of size 8. |
| eLeapRS LeapGetConnectionInfo | ( | LEAP_CONNECTION | hConnection, |
| LEAP_CONNECTION_INFO * | pInfo | ||
| ) |
Retrieves status information about the specified connection.
Call LeapCreateConnection() to generate the handle for the connection; call LeapOpenConnection() to establish the connection; then call this function to check the connection status.
| hConnection | The handle of the connection of interest. Created by LeapCreateConnection. | |
| [out] | pInfo | A pointer to a buffer that receives additional connection information. One input, the size field of pInfo is the size of the buffer(i.e. the size of a LEAP_CONNECTION_INFO struct); On output, the size field of pInfo receives the size necessary to hold the entire information block. |
| eLeapRS LeapGetDeviceInfo | ( | LEAP_DEVICE | hDevice, |
| LEAP_DEVICE_INFO * | info | ||
| ) |
Gets device properties.
To get the device serial number, you must supply a LEAP_DEVICE_INFO struct whose serial member points to a char array large enough to hold the null-terminated serial number string. To get the required length, call LeapGetDeviceInfo() using a LEAP_DEVICE_INFO struct that has serial set to NULL. LeapC sets serial_length field of the struct to the required length. You can then allocate memory for the string, set the serial field, and call this function again.
| hDevice | A handle to the device to be queried. | |
| [out] | info | The struct to receive the device property data. |
| eLeapRS LeapGetDeviceList | ( | LEAP_CONNECTION | hConnection, |
| LEAP_DEVICE_REF * | pArray, | ||
| uint32_t * | pnArray | ||
| ) |
Retrieves a list of Leap Motion devices currently attached to the system.
To get the number of connected devices, call this function with the pArray parameter set to null. The number of devices is written to the memory specified by pnArray. Use the device count to create an array of LEAP_DEVICE_REF structs large enough to hold the number of connected devices. Finally, call LeapGetDeviceList() with this array and known count to get the list of Leap devices. A device must be opened with LeapOpenDevice() before device properties can be queried.
| hConnection | The connection handle created by LeapCreateConnection(). | |
| [out] | pArray | A pointer to an array that LeapC fills with the device list. |
| [in,out] | pnArray | On input, set to the number of elements in pArray; on output, LeapC sets this to the number of valid device handles. |
| eLeapRS LeapGetFrameSize | ( | LEAP_CONNECTION | hConnection, |
| int64_t | timestamp, | ||
| uint64_t * | pncbEvent | ||
| ) |
Retrieves the number of bytes required to allocate an interpolated frame at the specified time.
Use this function to determine the size of the buffer to allocate when calling LeapInterpolateFrame().
| hConnection | The connection handle created by LeapCreateConnection(). | |
| timestamp | The timestamp of the frame whose size is to be queried. | |
| [out] | pncbEvent | A pointer that receives the number of bytes required to store the specified frame. |
| int64_t LeapGetNow | ( | void | ) |
Samples the universal clock used by the system to timestamp image and tracking frames.
The returned counter value is given in microseconds since an epoch time. The clock used for the counter itself is implementation-defined, but generally speaking, it is global, monotonic, and makes use of the most accurate high-performance counter available on the system.
| eLeapRS LeapInterpolateFrame | ( | LEAP_CONNECTION | hConnection, |
| int64_t | timestamp, | ||
| LEAP_TRACKING_EVENT * | pEvent, | ||
| uint64_t | ncbEvent | ||
| ) |
Constructs a frame at the specified timestamp by interpolating between measured frames.
Caller is responsible for allocating a buffer large enough to hold the data of the frame. Use LeapGetFrameSize() to calculate the minimum size of this buffer.
Use LeapCreateClockRebaser(), LeapUpdateRebase(), and LeapRebaseClock() to synchronize time measurements in the application with time measurements in the Leap Motion service. This process is required to achieve accurate, smooth interpolation.
| hConnection | The connection handle created by LeapCreateConnection(). | |
| timestamp | The timestamp at which to interpolate the frame data. | |
| [out] | pEvent | A pointer to a flat buffer which is filled with an interpolated frame. |
| ncbEvent | The number of bytes pointed to by pEvent. |
| eLeapRS LeapInterpolateFrameFromTime | ( | LEAP_CONNECTION | hConnection, |
| int64_t | timestamp, | ||
| int64_t | sourceTimestamp, | ||
| LEAP_TRACKING_EVENT * | pEvent, | ||
| uint64_t | ncbEvent | ||
| ) |
Constructs a frame at the specified timestamp by interpolating between a frame near the timestamp and a frame near the sourceTimestamp.
Caller is responsible for allocating a buffer large enough to hold the data of the frame. Use LeapGetFrameSize() to calculate the minimum size of this buffer.
Use LeapCreateClockRebaser(), LeapUpdateRebase(), and LeapRebaseClock() to synchronize time measurements in the application with time measurements in the Leap Motion service. This process is required to achieve accurate, smooth interpolation.
| hConnection | The connection handle created by LeapCreateConnection(). | |
| timestamp | The timestamp to which to interpolate the frame data. | |
| sourceTimestamp | The timestamp of the beginning frame from which to interpolate the frame data. | |
| [out] | pEvent | A pointer to a flat buffer which is filled with an interpolated frame. |
| ncbEvent | The number of bytes pointed to by pEvent. |
| eLeapRS LeapInterpolateHeadPose | ( | LEAP_CONNECTION | hConnection, |
| int64_t | timestamp, | ||
| LEAP_HEAD_POSE_EVENT * | pEvent | ||
| ) |
Gets the head tracking pose at the specified timestamp by interpolating between measured frames.
Caller is responsible for allocating a buffer large enough to hold the data of the frame. Use LeapGetFrameSize() to calculate the minimum size of this buffer.
Use LeapCreateClockRebaser(), LeapUpdateRebase(), and LeapRebaseClock() to synchronize time measurements in the application with time measurements in the Leap Motion service. This process is required to achieve accurate, smooth interpolation.
| hConnection | The connection handle created by LeapCreateConnection(). | |
| timestamp | The timestamp at which to interpolate the frame data. | |
| [out] | pEvent | A pointer to a flat buffer which is filled with an interpolated frame. |
| eLeapRS LeapOpenConnection | ( | LEAP_CONNECTION | hConnection | ) |
Opens a connection to the service.
This routine will not block. A connection to the service will not be established until the first invocation of LeapPollConnection.
| hConnection | A handle to the connection object, created by LeapCreateConnection(). |
| eLeapRS LeapOpenDevice | ( | LEAP_DEVICE_REF | rDevice, |
| LEAP_DEVICE * | phDevice | ||
| ) |
Opens a device reference and retrieves a handle to the device.
To ensure resources are properly freed, users must call LeapCloseDevice() when finished with the device, even if the retrieved device has problems or cannot stream.
| rDevice | A device reference. | |
| [out] | phDevice | A pointer that receives the opened device handle. |
| LEAP_VECTOR LeapPixelToRectilinear | ( | LEAP_CONNECTION | hConnection, |
| eLeapPerspectiveType | camera, | ||
| LEAP_VECTOR | pixel | ||
| ) |
Provides the corrected camera ray intercepting the specified point on the image.
Given a point on the image, LeapPixelToRectilinear() corrects for camera distortion and returns the true direction from the camera to the source of that image point within the Leap Motion field of view.
This direction vector has an x and y component [x, y, 1], with the third element always 1. Note that this vector uses the 2D camera coordinate system where the x-axis parallels the longer (typically horizontal) dimension and the y-axis parallels the shorter (vertical) dimension. The camera coordinate system does not correlate to the 3D Leap Motion coordinate system.
| hConnection | The connection handle created by LeapCreateConnection(). |
| camera | The camera to use, a member of the eLeapPerspectiveType enumeration |
| pixel | A Vector containing the position of a pixel in the image. |
| eLeapRS LeapPollConnection | ( | LEAP_CONNECTION | hConnection, |
| uint32_t | timeout, | ||
| LEAP_CONNECTION_MESSAGE * | evt | ||
| ) |
Polls the connection for a new event.
The specific types of events that may be received are not configurable in this entrypoint. Configure the device or connection object directly to change what events will be received.
Pointers in the retrieved event message structure will be valid until the associated connection or device is closed, or the next call to LeapPollConnection().
Calling this method concurrently will return eLeapRS_ConcurrentCall.
| hConnection | The connection handle created by LeapCreateConnection(). | |
| timeout | The maximum amount of time to wait, in milliseconds. If this value is zero, the evt pointer references the next queued message, if there is one, and returns immediately. | |
| [out] | evt | A pointer to a structure that is filled with event information. This structure will be valid as long as the LEAP_CONNECTION object is valid. |
| eLeapRS LeapRebaseClock | ( | LEAP_CLOCK_REBASER | hClockRebaser, |
| int64_t | userClock, | ||
| int64_t * | pLeapClock | ||
| ) |
Computes the Leap Motion clock corresponding to a specified application clock value.
Use this function to translate your application clock to the Leap Motion clock when interpolating frames. LeapUpdateRebase() must be called for every rendered frame for the relationship between the two clocks to remain synchronized.
| hClockRebaser | The handle to a rebaser object created by LeapCreateClockRebaser(). | |
| userClock | The clock in microseconds referenced to the application clock. | |
| [out] | pLeapClock | The corresponding Leap Motion clock value. |
| eLeapRS LeapRecordingClose | ( | LEAP_RECORDING * | ppRecording | ) |
Closes a LEAP_RECORDING.
| [out] | ppRecording | The recording being closed. Will modify *ppRecording to be null. |
| eLeapRS LeapRecordingGetStatus | ( | LEAP_RECORDING | pRecording, |
| LEAP_RECORDING_STATUS * | pstatus | ||
| ) |
Fills in a LEAP_RECORDING_STATUS struct for an open recording.
This struct provides the applicable eLeapRecordingFlags.
| pRecording | The open recording. | |
| [out] | pstatus | A LEAP_RECORDING_STATUS struct to receive the recording status. |
| eLeapRS LeapRecordingOpen | ( | LEAP_RECORDING * | ppRecording, |
| const char * | filePath, | ||
| LEAP_RECORDING_PARAMETERS | params | ||
| ) |
Opens or creates a LEAP_RECORDING.
Pass the LEAP_RECORDING pointer to LeapRecordingOpen() to initiate reading from or writing to a recording. The recording path is relative to the "user path" which is the SD card on Android.
| ppRecording | The recording being opened. |
| filePath | The file path. This will be passed directly to the OS without modification. An ".lmt" suffix is suggested. |
| params | The LEAP_RECORDING_PARAMETERS describing what operations are requested. |
| eLeapRS LeapRecordingRead | ( | LEAP_RECORDING | pRecording, |
| LEAP_TRACKING_EVENT * | pEvent, | ||
| uint64_t | ncbEvent | ||
| ) |
Reads a tracking frame from a LEAP_RECORDING file.
Caller is responsible for allocating a buffer large enough to hold the data of the frame. Use LeapGetFrameSize() to calculate the minimum size of this buffer.
| pRecording | The recording being read from. | |
| [out] | pEvent | A pointer to a flat buffer which is filled with the next recorded frame. |
| ncbEvent | The number of bytes pointed to by pEvent. |
| eLeapRS LeapRecordingReadSize | ( | LEAP_RECORDING | pRecording, |
| uint64_t * | pncbEvent | ||
| ) |
Retrieves the number of bytes required to allocate the next frame in a recording.
Use this function to determine the size of the buffer to allocate before calling LeapRecordingRead().
| pRecording | The recording being read from. | |
| [out] | pncbEvent | A pointer that receives the number of bytes required to store the next frame. |
| eLeapRS LeapRecordingWrite | ( | LEAP_RECORDING | pRecording, |
| LEAP_TRACKING_EVENT * | pEvent, | ||
| uint64_t * | pnBytesWritten | ||
| ) |
Writes a tracking frame to a LEAP_RECORDING file.
| pRecording | The recording being written to. | |
| [out] | pEvent | A pointer to a flat buffer which is filled with an interpolated frame. |
| pnBytesWritten | If non-null the number of bytes written. |
| LEAP_VECTOR LeapRectilinearToPixel | ( | LEAP_CONNECTION | hConnection, |
| eLeapPerspectiveType | camera, | ||
| LEAP_VECTOR | rectilinear | ||
| ) |
Provides the point in the image corresponding to a ray projecting from the camera.
Given a ray projected from the camera in the specified direction, LeapRectilinearToPixel() corrects for camera distortion and returns the corresponding pixel coordinates in the image.
The ray direction is specified in relationship to the camera. The first vector element is the tangent of the "horizontal" view angle; the second element is the tangent of the "vertical" view angle.
The LeapRectilinearToPixel() function returns pixel coordinates outside of the image bounds if you project a ray toward a point for which there is no recorded data.
LeapRectilinearToPixel() is typically not fast enough for realtime distortion correction. For better performance, use a shader program executed on a GPU.
| hConnection | The connection handle created by LeapCreateConnection(). |
| camera | The camera to use, a member of the eLeapPerspectiveType enumeration |
| rectilinear | A Vector containing the ray direction. |
| eLeapRS LeapRequestConfigValue | ( | LEAP_CONNECTION | hConnection, |
| const char * | key, | ||
| uint32_t * | pRequestID | ||
| ) |
Requests the current value of a service configuration setting.
The value is fetched asynchronously since it requires a service transaction. LeapPollConnection() returns this event structure when the request has been processed. Use the pRequestID value to correlate the response to the originating request.
| hConnection | The connection handle created by LeapCreateConnection(). | |
| key | The key of the configuration to request | |
| [out] | pRequestID | A pointer to a memory location to which the id for this request is written. |
| eLeapRS LeapSaveConfigValue | ( | LEAP_CONNECTION | hConnection, |
| const char * | key, | ||
| const LEAP_VARIANT * | value, | ||
| uint32_t * | pRequestID | ||
| ) |
Causes the client to commit a configuration change to the Leap Motion service.
The change is performed asynchronously – and may fail. LeapPollConnection() returns this event structure when the request has been processed. Use the pRequestID value to correlate the response to the originating request.
| hConnection | The connection handle created by LeapCreateConnection(). | |
| key | The key of the configuration to commit. | |
| value | The value of the configuration to commit. | |
| [out] | pRequestID | A pointer to a memory location to which the id for this request is written, or nullptr if this value is not needed. |
| eLeapRS LeapSetPause | ( | LEAP_CONNECTION | hConnection, |
| bool | pause | ||
| ) |
Pauses the service.
Attempts to pause or unpause the service depending on the argument. This is treated as a 'user pause', as though a user had requested a pause through the Leap Control Panel. The connection must have the AllowPauseResume policy set or it will fail with eLeapRS_InvalidArgument.
| hConnection | The connection handle created by LeapCreateConnection(). |
| pause | Set to 'true' to pause, or 'false' to unpause |
| eLeapRS LeapSetPolicyFlags | ( | LEAP_CONNECTION | hConnection, |
| uint64_t | set, | ||
| uint64_t | clear | ||
| ) |
Sets or clears one or more policy flags.
Changing policies is asynchronous. After you call this function, a subsequent call to LeapPollConnection provides a LEAP_POLICY_EVENT containing the current policies, reflecting any changes.
To get the current policies without changes, specify zero for both the set and clear parameters. When ready, LeapPollConnection() provides the a LEAP_POLICY_EVENT containing the current settings.
The eLeapPolicyFlag enumeration defines the policy flags.
| hConnection | The connection handle created by LeapCreateConnection(). |
| set | A bitwise combination of flags to be set. Set to 0 if not setting any flags. |
| clear | A bitwise combination of flags to be cleared. Set to 0 to if not clearing any flags. |
| eLeapRS LeapUpdateRebase | ( | LEAP_CLOCK_REBASER | hClockRebaser, |
| int64_t | userClock, | ||
| int64_t | leapClock | ||
| ) |
Updates the relationship between the Leap Motion clock and the user clock.
When using LeapInterpolateFrame(), call this function for every graphics frame rendered by your application. The function should be called as close to the actual point of rendering as possible.
The relationship between the application clock and the Leap Motion clock is neither fixed nor stable. Simulation restarts can cause user clock values to change instantaneously. Certain systems simulate slow motion, or respond to heavy load, by reducing the tick rate of the user clock. As a result, the LeapUpdateRebase() function must be called for every rendered frame.
| hClockRebaser | The handle to a rebaser object created by LeapCreateClockRebaser(). |
| userClock | A clock value supplied by the application, sampled at about the same time as LeapGetNow() was sampled. |
| leapClock | The Leap Motion clock value sampled by a call to LeapGetNow(). |