OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osMovePen C# (CSharp) Méthode

osMovePen() public méthode

public osMovePen ( string drawList, int x, int y ) : string
drawList string
x int
y int
Résultat string
        public string osMovePen(string drawList, int x, int y)
        {
            CheckThreatLevel(ThreatLevel.None, "osMovePen");

            m_host.AddScriptLPS(1);
            drawList += "MoveTo " + x + "," + y + ";";
            return drawList;
        }
OSSL_Api