OsSetPenCap
From OpenSimulator
(Difference between revisions)
m |
|||
Line 1: | Line 1: | ||
− | {{ | + | {{osslfunc| |
− | + | threat_level = | |
− | + | | | |
− | + | function_syntax = <source lang="lsl"> | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | | | + | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
LSL: string osSetPenCap( string drawList, string direction, string type ) | LSL: string osSetPenCap( string drawList, string direction, string type ) | ||
C#: string osSetPenCap( string drawList, string direction, string type ) | C#: string osSetPenCap( string drawList, string direction, string type ) | ||
</source> | </source> | ||
− | | | + | | |
− | + | ossl_example = <source lang="lsl"> | |
// Example of osSetPenCap | // Example of osSetPenCap | ||
Line 35: | Line 26: | ||
} | } | ||
</source> | </source> | ||
+ | | | ||
+ | additional_info = '''*** This method works only on Windows for now. libgdi+ has a fake implementation and will not draw it. ***''' | ||
− | |||
Appends a [[Drawing_commands#PenCap|PenCap]] drawing command to the string provided in '''drawList''' and returns the result. | Appends a [[Drawing_commands#PenCap|PenCap]] drawing command to the string provided in '''drawList''' and returns the result. | ||
− | |||
This sets the pen's start or/and end cap to either "diamond", "arrow", "round", or default "flat" shape. It can set them in the "end" or "start" of the line, or "both". Possible values are (case insensitive): | This sets the pen's start or/and end cap to either "diamond", "arrow", "round", or default "flat" shape. It can set them in the "end" or "start" of the line, or "both". Possible values are (case insensitive): | ||
Line 52: | Line 43: | ||
*"end" | *"end" | ||
*"both" | *"both" | ||
− | + | | | |
− | + | }} | |
− | + | ||
− | + |
Revision as of 16:33, 12 June 2011
LSL: string osSetPenCap( string drawList, string direction, string type ) C#: string osSetPenCap( string drawList, string direction, string type ) | |
No descriptions provided | |
Threat Level | No threat level specified |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
// Example of osSetPenCap default { state_entry() { string CommandList = ""; // Storage for our drawing commands integer i; CommandList = osSetPenSize( CommandList, 5 ); // Set the pen width to 5 pixels. With 1 pixel, arrow is very hard to see CommandList = osSetPenCap("start", "arrow"); // Sets the beggining of the line with an arrow CommandList = osMovePen(drawList,50,100); // Moves pen to 50,100 CommandList = osLineTo(drawList, 100,150); // Draws line from 50,100 to 100,150 osSetDynamicTextureData( "", "vector", CommandList, "", 0 ); } } | |
Notes | |
*** This method works only on Windows for now. libgdi+ has a fake implementation and will not draw it. ***
Type:
Direction:
|