亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

Dokumentasi pembangunan applet WeChat / 在微信小程序繪圖API中創(chuàng)建二次方貝塞爾曲線

在微信小程序繪圖API中創(chuàng)建二次方貝塞爾曲線

quadraticCurveTo


定義

創(chuàng)建二次貝塞爾曲線路徑。

Tip: 曲線的起始點(diǎn)為路徑中前一個(gè)點(diǎn)。

參數(shù)

QQ截圖20170208143203.png

例子

const ctx = wx.createCanvasContext('myCanvas')// Draw pointsctx.beginPath()
ctx.arc(20, 20, 2, 0, 2 * Math.PI)
ctx.setFillStyle('red')
ctx.fill()

ctx.beginPath()
ctx.arc(200, 20, 2, 0, 2 * Math.PI)
ctx.setFillStyle('lightgreen')
ctx.fill()

ctx.beginPath()
ctx.arc(20, 100, 2, 0, 2 * Math.PI)
ctx.setFillStyle('blue')
ctx.fill()

ctx.setFillStyle('black')
ctx.setFontSize(12)// Draw guidesctx.beginPath()
ctx.moveTo(20, 20)
ctx.lineTo(20, 100)
ctx.lineTo(200, 20)
ctx.setStrokeStyle('#AAAAAA')
ctx.stroke()// Draw quadratic curvectx.beginPath()
ctx.moveTo(20, 20)
ctx.quadraticCurveTo(20, 100, 200, 20)
ctx.setStrokeStyle('black')
ctx.stroke()

ctx.draw()

QQ截圖20170208143223.png

針對(duì) moveTo(20, 20) quadraticCurveTo(20, 100, 200, 20) 的三個(gè)關(guān)鍵坐標(biāo)如下:

  • 紅色:起始點(diǎn)(20, 20)
  • 藍(lán)色:控制點(diǎn)(20, 100)
  • 綠色:終止點(diǎn)(200, 20)