HandPose Constructors

Definition

Overloads

HandPose()

Creates a blank HandPose instance. In order to obtain a meaningful HandPose, PoseConstraint objects would have to be added manually to the PoseConstraints list.

HandPose(String, PoseConstraint[])

Creates a HandPose instance whose name is name and adds all the constraints to its PoseConstraints list.

HandPose()

Creates a blank HandPose instance. In order to obtain a meaningful HandPose, PoseConstraint objects would have to be added manually to the PoseConstraints list.

public HandPose ();

Applies to

HandPose(String, PoseConstraint[])

Creates a HandPose instance whose name is name and adds all the constraints to its PoseConstraints list.

public HandPose (string name, Microsoft.Gestures.PoseConstraint[] constraints);

Parameters

name
String

The desired name for the new HandPose instance. This String will serve as a unique identifier for this HandPose instance in the Gestures Service debugging interface.

constraints
PoseConstraint[]

A comma separated list of the PoseConstraint objects which will make up the new HandPose.

Applies to