Thread: Size of Avatars
View Single Post
  #2  
Old 02-25-2008, 11:23 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
You can determine the height of any avatar by checking the height of its bounding box. Here is some sample code:
Code:
avatar = viz.add('vcc_female.cfg')

bb = avatar.getBoundingBox()
print bb.height
Reply With Quote