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

css - SVG using textPath a symbol not rendering in Firefox -

Java 8 + Maven Javadoc plugin: Error fetching URL -

node.js - How to abort query on demand using Neo4j drivers -