svgcanvas/test/tests/emptyArc.js

13 lines
263 B
JavaScript
Raw Normal View History

2021-06-10 20:39:09 +08:00
export default function emptyArc(ctx) {
2015-09-09 00:19:54 -07:00
// Draw shapes
2021-06-10 20:39:09 +08:00
for (let i = 0; i < 4; i++) {
for (let j = 0; j < 3; j++) {
2015-09-09 00:19:54 -07:00
ctx.beginPath();
ctx.arc(100, 100, 100, Math.PI, Math.PI);
ctx.fill();
}
}
};