Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llFloor C# (CSharp) Метод

llFloor() публичный Метод

public llFloor ( double f ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
f double
Результат Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
        public LSL_Integer llFloor(double f)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return new LSL_Integer();

            return (int)Math.Floor(f);
        }
LSL_Api