vb.net - Visual basic Kinect -
i trying set value of right hand joint label value remains 0 .
label2.text = handright.position.x.tostring & "," & handright.position.y.tostring
the value of x , y single
is there way ?
provided there actual values in handright.position, should work:
label2.text = string.format("{0}.{1}", handright.position.x, handright.position.y)
Comments
Post a Comment