OsDrawEllipse

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
 
(9 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:Quicklinks}}
+
{{osslfunc
{| width="100%" style="border: thin solid black"
+
|threat_level=ignored
| colspan="2" align="center" style=background:orange | '''{{SUBPAGENAME}}'''
+
|permissions=true
|- valign="top"
+
|delay=0
|'''Threat Level''' || <Threat Level goes here>
+
|function_syntax=string osDrawEllipse(string drawList, integer width, integer height)
|- valign="top"
+
|ossl_example=<source lang="lsl">
|'''Function Syntax''' || <source lang="lsl">
+
LSL: string osDrawEllipse(string drawList, integer width, integer height)
+
 
+
C#: string osDrawEllipse(string drawList, int width, int height )
+
</source>
+
|- valign="top"
+
|'''Example(s)||<source lang="lsl">
+
 
// Example of osDrawEllipse
 
// Example of osDrawEllipse
 
default
 
default
Line 20: Line 13:
  
 
         CommandList = osSetPenSize( CommandList, 3 );        // Set the pen width to 3 pixels
 
         CommandList = osSetPenSize( CommandList, 3 );        // Set the pen width to 3 pixels
         CommandList = osSetPenColour( 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 = osDrawEllipse( CommandList, 200, 100 ); // 200 pixels by 100 pixels
 
         CommandList = osDrawEllipse( CommandList, 200, 100 ); // 200 pixels by 100 pixels
Line 29: Line 22:
 
}
 
}
 
</source>
 
</source>
|}
+
|description=Appends an [[Drawing commands#Ellipse|Ellipse]] drawing command to the string provided in '''drawList''' and returns the result.
Appends an [[Drawing_commands#Ellipse|Ellipse]] drawing command to the string provided in '''drawList''' and returns the result.
+
  
 
The 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 ellipse is drawn, the width and height values are added to the pen's X and Y position, respectively.
 
The 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 ellipse is drawn, the width and height values are added to the pen's X and Y position, respectively.
 
+
|
 
+
}}
[[Category:OSSL Functions]]
+
[[Category:OSSL]]
+
[[Category:OSSL functions without threat level]]
+

Latest revision as of 13:33, 14 November 2018

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

The 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 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 osDrawEllipse
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 = osDrawEllipse( CommandList, 200, 100 ); // 200 pixels by 100 pixels
 
        // Now draw the ellipse
        osSetDynamicTextureData( "", "vector", CommandList, "width:256,height:256", 0 );
    }
}


Personal tools
General
About This Wiki