Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llGetAgentSize C# (CSharp) Method

llGetAgentSize() public method

According to http://lslwiki.net/lslwiki/wakka.php?wakka=llGetAgentSize only the height of avatars vary and that says: Width (x) and depth (y) are constant. (0.45m and 0.6m respectively).
public llGetAgentSize ( string id ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
id string
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.Vector3
        public LSL_Vector llGetAgentSize(string id)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return new LSL_Vector();

            IScenePresence avatar = World.GetScenePresence((UUID)id);
            LSL_Vector agentSize;
            if (avatar == null || avatar.IsChildAgent) // Fail if not in the same region
            {
                agentSize = ScriptBaseClass.ZERO_VECTOR;
            }
            else
            {
                IAvatarAppearanceModule appearance = avatar.RequestModuleInterface<IAvatarAppearanceModule>();
                agentSize = appearance != null ? new LSL_Vector(0.45, 0.6, appearance.Appearance.AvatarHeight) : ScriptBaseClass.ZERO_VECTOR;
            }
            return agentSize;
        }
LSL_Api