OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.llDetectedTouchBinormal C# (CSharp) Method

llDetectedTouchBinormal() public method

See http://wiki.secondlife.com/wiki/LlDetectedTouchBinormal for details
public llDetectedTouchBinormal ( int index ) : OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3
index int
return OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3
        public LSL_Vector llDetectedTouchBinormal(int index)
        {
            m_host.AddScriptLPS(1);
            DetectParams detectedParams = m_ScriptEngine.GetDetectParams(m_item.ItemID, index);
            if (detectedParams == null)
                return new LSL_Vector();
            return detectedParams.TouchBinormal;
        }
LSL_Api