问答详情
源自:2-3 绘制弧和圆

课程中关于BeginPath与ClosePath在画弧形的未封闭圆弧自动连线的错误讲法


context.beginPath()
context.arc(300,300,200,0,0.5*Math.PI)
context.stroke()
context.closePath()

通过测试正确应该是只当context.stroke()在context.closePath()之后执行时才会出现自动的封口连线,如在closePath()之前执行则不连线。

提问者:pantyhose 2015-02-14 23:52

个回答

  • 慕神2673729
    2016-04-19 22:57:35

    把第三行context.stroke()与第四行context.closePath()的顺序转过来就行,如下:

    context.beginPath()

    context.arc(300,300,200,0,0.5*Math.PI)

    context.closePath()

    context.stroke()

    这样最后就会闭合路径


  • Plum226410
    2016-01-13 10:43:39

    好像是这样的

  • crazy world
    2015-12-17 11:17:01

    这样啊