Set Caps style to Round : lineStyle « Graphics « Flash / Flex / ActionScript






Set Caps style to Round

 

package{
  import flash.display.Sprite;
  import flash.display.*;
  public class Main extends Sprite{
    public function Main(){

         graphics.lineStyle(1, 0xff0000, 1, true, LineScaleMode.NONE, CapsStyle.ROUND, JointStyle.ROUND, 20);
            for(var i:int=0;i<100;i++) {
                graphics.lineTo(Math.random(  ) * 400, Math.random(  ) * 400);
            }

    }
  }
}

        








Related examples in the same category

1.To turn the stroke off completely, set thickness to undefined or call lineStyle( ) with no parameters.
2.The following code sets the line style to 1 pixel-thick, solid black:
3.Set the line style to 1 pixel-thick, solid green
4.Set the line style to 2 pixels thick, 50% transparent green
5.Apply a 3 pixel-thick blue stroke
6.Change line style while drawing
7.To set the rendering style for corners, we use lineStyle( )'s joints parameter.