OsDrawPolygon
From OpenSimulator
(Difference between revisions)
m (some format conversions) |
m |
||
Line 1: | Line 1: | ||
{{osslfunc | {{osslfunc | ||
|threat_level=None | |threat_level=None | ||
− | |function_syntax= | + | |function_syntax=string osDrawPolygon( string drawList, list xpoints, list ypoints ) |
− | + | |csharp_syntax=string osDrawPolygon( string drawList, LSL_List xpoints, LSL_List ypoints ) | |
− | + | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
// Example of osDrawPolygon | // Example of osDrawPolygon |
Revision as of 01:05, 2 July 2011
string osDrawPolygon( string drawList, list xpoints, list ypoints )
C#: string osDrawPolygon( string drawList, LSL_List xpoints, LSL_List ypoints ) | |
| |
Threat Level | None |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
// Example of osDrawPolygon default { state_entry() { // Storage for our drawing commands string CommandList = ""; // "PenSize 3;" CommandList = osSetPenSize( CommandList, 3 ); // "PenColor Blue;" CommandList = osSetPenColor( CommandList, "Blue" ); // "Polygon 128,20,20,186,236,186;" CommandList = osDrawPolygon( CommandList, [128,20,236], [20,186,186] ); // "PenColor Green;" CommandList = osSetPenColor( CommandList, "Green" ); // "Polygon 128,236,20,70,236,70;" CommandList = osDrawPolygon( CommandList, [128,20,236], [236,70,70] ); // "PenSize 5;" CommandList = osSetPenSize( CommandList, 5 ); // "PenColor Red;" CommandList = osSetPenColor( CommandList, "Red" ); // "Polygon 20,20,236,20,236,236,20,236;" CommandList = osDrawPolygon( CommandList, [20,236,236,20], [20,20,236,236] ); // Now draw the polygon osSetDynamicTextureData( "", "vector", CommandList, "", 0 ); } } |