UNPKG
modern-canvacord
Version:
latest (1.0.0)
1.0.0
Easy image manipulation for discord.js bots.
modern-canvacord
/
plugins
/
circle.js
8 lines
•
220 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
module
.
exports
=
(
ctx, w, h
) =>
{ ctx.
globalCompositeOperation
=
"destination-in"
; ctx.
beginPath
(); ctx.
arc
(w /
2
, h /
2
, h /
2
,
0
,
Math
.
PI
*
2
); ctx.
closePath
(); ctx.
fill
();
return
ctx; };