<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>非零环绕原则</title>
</head>
<body style="padding: 100px;">
<canvas id="canvas" width="900" height="600" style="border:1px solid #000"></canvas>
<script>
// 1. 获取标签
var canvas = document.getElementById("canvas");
var ctx = canvas.getContext("2d");
// 2.绘制圆环
// 内圆
ctx.beginPath();
ctx.arc(200, 200, 100, 0, 360 * Math.PI / 180, false);
// 外圆
ctx.arc(200, 200, 200, 0, 360 * Math.PI / 180, true);
ctx.fillStyle = 'orange';
ctx.fill();
</script>
</body>
</html>
、、此外:false表示内环
true表示外环
arc(x , y, 半径,起始角度,终点角度,内外环)
网友评论