osDrawFilledEllipse or string comand FillEllipse identical do Ellipse one

This commit is contained in:
UbitUmarov
2017-06-24 03:21:23 +01:00
parent 191661b51d
commit c3dbf91152
5 changed files with 27 additions and 0 deletions

View File

@@ -1191,6 +1191,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
return drawList;
}
public string osDrawFilledEllipse(string drawList, int width, int height)
{
CheckThreatLevel(ThreatLevel.None, "osDrawFilledEllipse");
m_host.AddScriptLPS(1);
drawList += "FillEllipse " + width + "," + height + "; ";
return drawList;
}
public string osDrawRectangle(string drawList, int width, int height)
{
CheckThreatLevel(ThreatLevel.None, "osDrawRectangle");