mirror of
https://github.com/opensim/opensim.git
synced 2026-08-08 10:15:33 +08:00
LSL/OSSL lacks Math.Min & Math.Max implementations.
This commit is contained in:
committed by
Justin Clark-Casey (justincc)
parent
7e89b99e6a
commit
72d29bdb40
@@ -935,5 +935,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
{
|
||||
return m_OSSL_Functions.osIsUUID(thing);
|
||||
}
|
||||
|
||||
public LSL_Float osMin(double a, double b)
|
||||
{
|
||||
return m_OSSL_Functions.osMin(a, b);
|
||||
}
|
||||
|
||||
public LSL_Float osMax(double a, double b)
|
||||
{
|
||||
return m_OSSL_Functions.osMax(a, b);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user