OsDrawFilledRectangle

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
m
Line 1: Line 1:
{{Quicklinks}}
+
{{osslfunc|
{| width="100%" style="border: thin solid black"
+
threat_level = None
| colspan="2" align="center" style=background:orange | '''{{SUBPAGENAME}}'''
+
|
|- valign="top"
+
function_syntax = <source lang="lsl">
|'''Threat Level''' || None
+
|- valign="top"
+
|'''Function Syntax''' || <source lang="lsl">
+
 
LSL: string osDrawFilledRectangle( string drawList, integer width, integer height )
 
LSL: string osDrawFilledRectangle( string drawList, integer width, integer height )
 
C#: string osDrawFilledRectangle( string drawList, int width, int height )
 
C#: string osDrawFilledRectangle( string drawList, int width, int height )
 
</source>
 
</source>
|- valign="top"
+
|
|'''Example(s)||<source lang="lsl">
+
ossl_example = <source lang="lsl">
 
// Example of osDrawFilledRectangle
 
// Example of osDrawFilledRectangle
 
default
 
default
Line 28: Line 25:
 
}
 
}
 
</source>
 
</source>
|}
+
|  
Appends a [[Drawing_commands#FillRectangle|FillRectangle]] drawing command to the string provided in '''drawList''' and returns the result.
+
additional_info = Appends a [[Drawing_commands#FillRectangle|FillRectangle]] drawing command to the string provided in '''drawList''' and returns the result.
  
 
The filled rectangle is drawn with the current pen size and color, at the specified width and height (in pixels), with the upper left corner of the rectangle placed at the pen's current position. After the rectangle is drawn, the width and height values are added to the pen's X and Y position, respectively (that is, the pen is positioned at the lower right corner of the rectangle.  
 
The filled rectangle is drawn with the current pen size and color, at the specified width and height (in pixels), with the upper left corner of the rectangle placed at the pen's current position. After the rectangle is drawn, the width and height values are added to the pen's X and Y position, respectively (that is, the pen is positioned at the lower right corner of the rectangle.  
 
+
|
 
+
}}
[[Category:OSSL Functions]]
+

Revision as of 15:03, 12 June 2011

LSL: string osDrawFilledRectangle( string drawList, integer width, integer height )
C#: string osDrawFilledRectangle( string drawList, int width, int height )
No descriptions provided
Threat Level None
Permissions No permissions specified
Extra Delay No function delay specified
Example(s)
// Example of osDrawFilledRectangle
default
{
    state_entry()
    {
        string CommandList = ""; // Storage for our drawing commands
 
        CommandList = osSetPenSize( CommandList, 3 );                 // Set the pen width to 3 pixels
        CommandList = osSetPenColour( CommandList, "Red" );           // Set the pen color to red
        CommandList = osMovePen( CommandList, 28, 78 );               // Upper left corner at <28,78>
        CommandList = osDrawFilledRectangle( CommandList, 200, 100 ); // 200 pixels by 100 pixels
 
        // Now draw the rectangle
        osSetDynamicTextureData( "", "vector", CommandList, "width:256,height:256", 0 );
    }
}
Notes
Appends a FillRectangle drawing command to the string provided in drawList and returns the result.

The filled rectangle is drawn with the current pen size and color, at the specified width and height (in pixels), with the upper left corner of the rectangle placed at the pen's current position. After the rectangle is drawn, the width and height values are added to the pen's X and Y position, respectively (that is, the pen is positioned at the lower right corner of the rectangle.

Personal tools
General
About This Wiki