diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs index e51a078..37f8970 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/OSSL_Api.cs | |||
@@ -1191,6 +1191,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
1191 | return drawList; | 1191 | return drawList; |
1192 | } | 1192 | } |
1193 | 1193 | ||
1194 | public string osDrawFilledEllipse(string drawList, int width, int height) | ||
1195 | { | ||
1196 | CheckThreatLevel(ThreatLevel.None, "osDrawFilledEllipse"); | ||
1197 | |||
1198 | m_host.AddScriptLPS(1); | ||
1199 | drawList += "FillEllipse " + width + "," + height + "; "; | ||
1200 | return drawList; | ||
1201 | } | ||
1202 | |||
1194 | public string osDrawRectangle(string drawList, int width, int height) | 1203 | public string osDrawRectangle(string drawList, int width, int height) |
1195 | { | 1204 | { |
1196 | CheckThreatLevel(ThreatLevel.None, "osDrawRectangle"); | 1205 | CheckThreatLevel(ThreatLevel.None, "osDrawRectangle"); |