OpenSim.Region.ScriptEngine.Shared.Api.OSSL_Api.osSetPenSize C# (CSharp) Method

osSetPenSize() public method

public osSetPenSize ( string drawList, int penSize ) : string
drawList string
penSize int
return string
        public string osSetPenSize(string drawList, int penSize)
        {
            CheckThreatLevel(ThreatLevel.None, "osSetPenSize");

            m_host.AddScriptLPS(1);
            drawList += "PenSize " + penSize + "; ";
            return drawList;
        }
OSSL_Api