OsDrawFilledEllipse

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
(Created page with "{{osslfunc |threat_level=None |function_syntax=string osDrawFilledEllipse(string drawList, integer width, integer height) |csharp_syntax=string osDrawFilledEllipse(string draw...")
 
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{{osslfunc
 
{{osslfunc
|threat_level=None
+
|threat_level=ignored
 +
|permissions=true
 +
|delay=0
 
|function_syntax=string osDrawFilledEllipse(string drawList, integer width, integer height)
 
|function_syntax=string osDrawFilledEllipse(string drawList, integer width, integer height)
|csharp_syntax=string osDrawFilledEllipse(string drawList, int width, int height )
 
 
|ossl_example=<source lang="lsl">
 
|ossl_example=<source lang="lsl">
 
// Example of osDrawFilledEllipse
 
// Example of osDrawFilledEllipse
 +
 
default
 
default
 
{
 
{
 
     state_entry()
 
     state_entry()
 
     {
 
     {
         string CommandList = ""; // Storage for our drawing commands
+
         string CommandList = "";                                   // Storage for our drawing commands
 
+
         CommandList = osSetPenSize( CommandList, 3 );               // Set the pen width to 3 pixels
         CommandList = osSetPenSize( CommandList, 3 );         // Set the pen width to 3 pixels
+
         CommandList = osSetPenColor( CommandList, "Blue" );         // Set the pen color to blue
         CommandList = osSetPenColor( CommandList, "Blue" ); // Set the pen color to blue
+
         CommandList = osMovePen( CommandList, 28, 78 );             // Upper left corner at <28,78>
         CommandList = osMovePen( CommandList, 28, 78 );       // Upper left corner at <28,78>
+
 
         CommandList = osDrawFilledEllipse( CommandList, 200, 100 ); // 200 pixels by 100 pixels
 
         CommandList = osDrawFilledEllipse( CommandList, 200, 100 ); // 200 pixels by 100 pixels
 
+
         // Now draw the filled ellipse
         // Now draw the ellipse
+
 
         osSetDynamicTextureData( "", "vector", CommandList, "width:256,height:256", 0 );
 
         osSetDynamicTextureData( "", "vector", CommandList, "width:256,height:256", 0 );
 
     }
 
     }
Line 24: Line 24:
  
 
The filled ellipse is drawn with the current pen size and color, with the specified width and height (in pixels), centered on a point which is (width/2) pixels to the right of the pen's current X position, and (height/2) pixels below the pen's current Y position. After the filled ellipse is drawn, the width and height values are added to the pen's X and Y position, respectively.
 
The filled ellipse is drawn with the current pen size and color, with the specified width and height (in pixels), centered on a point which is (width/2) pixels to the right of the pen's current X position, and (height/2) pixels below the pen's current Y position. After the filled ellipse is drawn, the width and height values are added to the pen's X and Y position, respectively.
|
+
|additional_info=This function was added in 0.9.0.1}}
}}
+

Latest revision as of 10:06, 7 December 2018

string osDrawFilledEllipse(string drawList, integer width, integer height)
Appends an FillEllipse drawing command to the string provided in drawList and returns the result.

The filled ellipse is drawn with the current pen size and color, with the specified width and height (in pixels), centered on a point which is (width/2) pixels to the right of the pen's current X position, and (height/2) pixels below the pen's current Y position. After the filled ellipse is drawn, the width and height values are added to the pen's X and Y position, respectively.

Threat Level This function does not do a threat level check
Permissions Use of this function is always allowed by default
Extra Delay 0 seconds
Example(s)
// Example of osDrawFilledEllipse
 
default
{
    state_entry()
    {
        string CommandList = "";                                    // Storage for our drawing commands
        CommandList = osSetPenSize( CommandList, 3 );               // Set the pen width to 3 pixels
        CommandList = osSetPenColor( CommandList, "Blue" );         // Set the pen color to blue
        CommandList = osMovePen( CommandList, 28, 78 );             // Upper left corner at <28,78>
        CommandList = osDrawFilledEllipse( CommandList, 200, 100 ); // 200 pixels by 100 pixels
        // Now draw the filled ellipse
        osSetDynamicTextureData( "", "vector", CommandList, "width:256,height:256", 0 );
    }
}
Notes
This function was added in 0.9.0.1


Personal tools
General
About This Wiki