Attributes:
Methods:
The HandList class extends the Python array to represent a list of Hand objects.
Get a HandList object by calling Frame.hands().
all_hands = frame.hands
New in version 1.0.
Constructs an empty list.
New in version 1.0.
Type: | boolean |
---|
Reports whether the list is empty.
if not frame.hands.is_empty:
#Process hands...
print str(hand)
New in version 1.0.
Type: | Hand |
---|
The item in this list with the smallest z coordinate.
front_hand = frame.hands.frontmost
New in version 1.0.
Appends the members of the specifed HandList to this HandList.
Parameters: | other (HandList) – A HandList object containing Hand objects to append to the end of this HandList. |
---|
New in version 1.0.