BcmFingerHand
A scan callback object is provided by BcmScanController to PBcmFlowDelegate. This data structure is used for the Finger Selection dialog callback.
Interface
public struct BcmFingerHandDo: Hashable {
/**
* Info about which Hand - Left, Right
*/
public var hand: Hand
/**
* Info about which Finger - Thumb, Index, Middle, Ring, Pinky
*/
public var finger: Finger
public init(
hand: Hand,
finger: Finger
){
self.hand = hand
self.finger = finger
}
}
Usage
BcmFingerHand is used for the PBcmFlowDelegate.fingerImagesResult() callback, after the finger
selection in the Finger selection dialog.