Fingers are represented by |Pointable|_ objects. In addition, a separate Finger class specializes the |Pointable| class to provide specific finger information.
You can get the fingers associated with a particular hand from the Hand object. You can also get all detected pointables (fingers) from a Frame object.
|Pointable| objects have many attributes describing the characteristics of the represented finger.
Finger tipPosition and direction vectors provide the positions of the finger tips and the directions in which the fingers are pointing.
The following example illustrates how to get a pointable object from a frame and access its basic characteristics:
To convert a |Pointable|_ object to its Finger subclass, use the Finger constructor (one of the few times that you should use the constructor for a Leap class).
Finger objects extend |Pointable| to represent physical fingers. A finger has a type, a direction and a set of bones.
As of version 2.0 of the Leap Motion SDK, all five fingers are are always present in the list of fingers for a hand. The Leap Motion software estimates positions for fingers and bones that it cannot track clearly. Thus subtle movements of fingers against or behind the hand (as seen from the Leap Motion sensor’s point of view) may not be reflected in the data.
Fingers can be identified by type, e.g. the index, thumb, pinky. Finger IDs are assigned based on the hand ID. If a hand has an ID of “5”, then its fingers are assigned IDs 50 to 55, ordered from thumb to pinky.
The |PointableList|_ and |FingerList|_ classes all have a similar structure. They are designed to act like vector-style arrays and support iterators. You cannot remove or alter the member objects of lists received from the Leap API, but you can combine lists of the same object type.
To use an iterator with one of these lists:
The |PointableList|_ and |FingerList|_ classes define additional functions for getting members of the list based on their relative position within the Leap coordinate system. These functions include leftmost(), rightmost(), and frontmost(). The following snippet illustrates a few ways to use these functions: