我知道如何用数学 PI 制作圆形和圆形,但如果我想做这样的事情,我不知道该怎么做:
http://imgur.com/jKh3nMq(一圈有五根刺)
ctx.fillStyle = "red"
ctx.beginPath()
ctx.arc(0 + 50/2, 0 + 50/2, 50/1.75, 0, Math.PI*2, true)
ctx.closePath()
ctx.fill() // Gives me a circle, but how with thorns on?
我需要帮助绘制它,卡住了,请帮助。