PDA

View Full Version : Size of Avatars


Micha
02-24-2008, 01:58 PM
Hi guys,

the viewpoint in Vizard is 1.82 m above the ground. That looks like the viewpoint of your avatars (eye hight).

Do you have an exact total size of your avatars in meters?

Thanks Mike

farshizzo
02-25-2008, 11:23 AM
You can determine the height of any avatar by checking the height of its bounding box. Here is some sample code:avatar = viz.add('vcc_female.cfg')

bb = avatar.getBoundingBox()
print bb.height

Micha
02-26-2008, 03:01 AM
Thanks, looks more elegant than my wired calculations!
Cheers Mike