By using the function Drawcircle()
in <script>
code we can draw the circle on canvas.
<script> // to more about arc, visit http://simeonvisser.hubpages.com/hub/HTML5-Tutorial-Drawing-Circles-and-Arcs function DrawCircle() { var context = document.getElementById("myCanvas").getContext("2d"); // context.beginPath(); context.lineWidth = "5"; // arc(x center coordinate, y center coordinate, radius, start angle value, end angle value, clock wise/anti clock wise=true) // start and end angles are measured in radius. 360 degree = Mapth.PI * 2 context.arc(400, 250, 100, 0, 5, false); context.strokeStyle = "red"; context.stroke(); // mandatory to call context.beginPath(); context.lineWidth = "2"; context.strokeStyle = "green"; context.arc(100, 110, 90, 0, 4, false); context.stroke(); // mandatory to call again context.beginPath(); context.arc(350, 150, 90, 0, Math.PI * 1.5, false); context.fillStyle = "green"; context.globalAlpha = 0.2; context.fill(); } </script> <body> <canvas id="myCanvas" width="600" height="400" style="border: 1px solid red;">Canvas is not supported in your browser </canvas> <br /> <input type="button" onclick="DrawCircle()" value="Draw Circle" /> </body>
In the above code snippet we have given getElementById as the <canvas>
Id and there are six parameters used in the code. They are as follows
Below the <canvas>
element there is an <input>
element which consists of "Button". In the output you can observe empty canvas area and below that button with value "Draw Circle" initially. By clicking on the button you can observe the formation of circles inside the canvas area as per the given input values.
OUTPUT
These are used to create circles
<canvas id="myCanvas" width="600" height="400"></canvas> <script> var canvas = document.getElementById('myCanvas'); var context = canvas.getContext('2d'); var centerX = canvas.width / 6; var centerY = canvas.height / 4; var radius = 40; context.beginPath(); context.arc(centerX, centerY, radius, 0, 2 * Math.PI, false); context.fillStyle = 'lime'; context.fill(); context.lineWidth = 4; context.strokeStyle = 'green'; context.stroke(); </script>
In the above code snippet we have defined the circles
we have defined id as "mycanvas"
output
In order to create the semicircle we need to follow this approach
<canvas id="myCanvas" width="600" height="400"></canvas> <script> var canvas = document.getElementById('myCanvas'); var context = canvas.getContext('2d'); var centerX = canvas.width / 8; var centerY = canvas.height / 4; var radius = 50; context.beginPath(); context.arc(centerX, centerY, radius, 0, Math.PI, false); context.fillStyle = 'lime'; context.fill(); context.lineWidth = 4; context.strokeStyle = 'green'; context.stroke(); </script>
In the above code snippet we have created the semicircle. we need to add the math.pi to create the semicircle
output
Views: 11311 | Post Order: 43