как нарисовать полукруг в canvas с js?

как нарисовать правый полукруг в canvas на js? желательно в этом коде:
```
<html>
<head>
<title>Canvas</title>
</head>
<body>
<canvas id="canvas" width="200" height="200"></canvas>
<script>
var circle = function (x, y, radius) {
var ctx = canvas.getContext("2d");
ctx.lineWidth = 4;
ctx.strokeStyle = "Black";
ctx.beginPath();
ctx.arc(x, y, radius, 0, Math.PI * 2, false);
ctx.stroke();
}
circle(100, 100, 75);
circle(90, 90, 20);
circle(50, 90, 20);
circle(40, 90, 10);
circle(81, 90, 10);
circle(110, 15, 15);
circle(90, 15, 15);
arc(110, 20, 20)
</script>
</body>
</html>
```
09 июня 2019 в 15:03