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

Popular posts from this blog

Java 8 + Maven Javadoc plugin: Error fetching URL -

c++ - Msgpack packing bools bug -

java - POJO with list of POJO to JSON display size and index -