CanvasRenderingContext2D.lineTo()


   html5.jpg

 

설명


    그리는 시작점부터 x, y 위치까지 직선을 그린다.


분류


   경로 API


형태


    void CanvasRenderingContext2D.lineTo(in float x, in float y);


인수


    in     float    x     직선의 종료 가로 좌표

    in     float    y     직선의 종료 세로 좌표


반환


    없음


예제


<html> 

<head> 

   <script type="application/javascript"> 

    function draw() { 

      var canvas = document.getElementById("canvas"); 

      if (canvas.getContext) { 

        var ctx = canvas.getContext("2d"); 

 

         ctx.beginPath();

         ctx.moveTo(10,10);

         ctx.lineTo(90,90);

         ctx.closePath();

         ctx.strokeStyle = "black"; 

         ctx.stroke();

        

      } 

    } 

   </script> 

</head> 

<body onload="draw();"> 

   <canvas id="canvas" width="150" height="150"></canvas> 

</body> 

</html>


결과


    lineTo.png