国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Dokumentasi pembangunan applet WeChat / 在微信小程序中調(diào)用scale方法對橫縱坐標(biāo)進(jìn)行縮放

在微信小程序中調(diào)用scale方法對橫縱坐標(biāo)進(jìn)行縮放

scale


定義

在調(diào)用scale方法后,之后創(chuàng)建的路徑其橫縱坐標(biāo)會(huì)被縮放。多次調(diào)用scale,倍數(shù)會(huì)相乘。

參數(shù)

QQ截圖20170208145233.png

例子

const ctx = wx.createCanvasContext('myCanvas')

ctx.strokeRect(10, 10, 25, 15)
ctx.scale(2, 2)
ctx.strokeRect(10, 10, 25, 15)
ctx.scale(2, 2)
ctx.strokeRect(10, 10, 25, 15)

ctx.draw()

201612241806425160.png