我知道如何使用数学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?
我需要帮助画画,卡住,请帮助。