View Single Post
  #8  
Old 06-26-2007, 12:18 PM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Hi,

You should be able to compute the distance between the bone positions to get the arm length. For example:
Code:
pos1 = shoulderBone.getPosition()
pos2 = elbowBone.getPosition()

length = vizmat.Distance(pos1,pos2)
Reply With Quote