OsMovePen

From OpenSimulator

(Difference between revisions)
Jump to: navigation, search
 
(10 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Template:Quicklinks}}
+
{{osslfunc
 
+
|threat_level=ignored
LSL: '''[[string]] osMovePen( [[string]] drawList, [[integer]] x, [[integer]] y )'''<br />
+
|permissions=true
C#: '''[[string]] osMovePen( [[string]] drawList, [[int]] x, [[int]] y )'''
+
|delay=0
 
+
|function_syntax=string osMovePen(string drawList, integer x, integer y)
 
+
|ossl_example=<source lang="lsl">
Appends a [[Drawing_commands#MoveTo|MoveTo]] drawing command to the string provided in '''drawList''' and returns the result.
+
 
+
This moves the pen's location to the coordinates specified by the '''x''' and '''y''' parameters, without drawing anything.
+
 
+
Example:
+
<source lang="lsl">
+
 
// Example of osMovePen
 
// Example of osMovePen
 
default
 
default
Line 20: Line 14:
  
 
         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
  
 
         for (i = 0; i < 256; i += 20)
 
         for (i = 0; i < 256; i += 20)
Line 33: Line 27:
 
}
 
}
 
</source>
 
</source>
 +
|description=Appends a [[Drawing commands#MoveTo|MoveTo]] drawing command to the string provided in '''drawList''' and returns the result.
  
 
+
This moves the pen's location to the coordinates specified by the '''x''' and '''y''' parameters, without drawing anything.
[[Category:OSSL]]
+
|
[[Category:OSSL functions without threat level]]
+
}}

Latest revision as of 11:39, 7 December 2018

string osMovePen(string drawList, integer x, integer y)
Appends a MoveTo drawing command to the string provided in drawList and returns the result.

This moves the pen's location to the coordinates specified by the x and y parameters, without drawing anything.

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 osMovePen
default
{
    state_entry()
    {
        string CommandList = ""; // Storage for our drawing commands
        integer i;
 
        CommandList = osSetPenSize( CommandList, 3 );              // Set the pen width to 3 pixels
        CommandList = osSetPenColor( CommandList, "Blue" );       // Set the pen color to blue
 
        for (i = 0; i < 256; i += 20)
        {
          CommandList = osMovePen( CommandList, 255, i );          // Move to the right side
          CommandList = osDrawLine( CommandList, 0, i+20 );        // Draw left and slightly down
        }
 
        // Now draw the lines
        osSetDynamicTextureData( "", "vector", CommandList, "width:256,height:256", 0 );
    }
}


Personal tools
General
About This Wiki