VCHS Computer Science
Computer Science at Valley Catholic High School
Pages
Home
APCSA
APCSP
Ten Commandments
Jump
Ellipse
Draw Ellipse
Source Code
<canvas id="myCanvas" width="200" height="200" style="border:1px solid #000000;"> </canvas> <br> <button id="draw-circle">Draw Ellipse</button> <script> function drawEllipse() { const c = document.getElementById("myCanvas"); var ctx = c.getContext("2d"); ctx.beginPath(); ctx.ellipse(100, 100, 50, 75, Math.PI / 4, 0, 2 * Math.PI); ctx.stroke(); } document.getElementById("draw-circle").addEventListener("click", drawEllipse); </script>
Newer Post
Older Post
Home