Advertisement
metalx1000

Quadratic Curve

Jun 28th, 2013
260
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.50 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3.   <head>
  4.   </head>
  5.   <body>
  6.         <canvas id="MyCanvas" width="600" height="300"></canvas>
  7.  
  8.         <script>
  9.                 var canvas = document.getElementById('MyCanvas');
  10.                 var context = canvas.getContext('2d');
  11.  
  12.         context.beginPath();
  13.         context.moveTo(188,150);
  14.         context.quadraticCurveTo(288, 0, 488, 50);
  15.         context.lineCap = "round";
  16.         context.lineWidth = 15;
  17.  
  18.         context.strokeStyle = 'Blue';
  19.         context.stroke();
  20.         </script>
  21.   </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement