WeChat 애플릿 캔버스에서 번역을 사용하여 좌표 원점 크기 조정


translate


Definition

현재 좌표계의 원점(0, 0)을 변환합니다. 좌표계의 기본 원점은 상위입니다. 페이지의 왼쪽 모서리.

매개변수

xNumber가로좌표 환산량y#🎜 🎜 #예
const ctx = wx.createCanvasContext('myCanvas')

ctx.strokeRect(10, 10, 150, 100)
ctx.translate(20, 20)
ctx.strokeRect(10, 10, 150, 100)
ctx.translate(20, 20)
ctx.strokeRect(10, 10, 150, 100)

ctx.draw()
매개변수유형설명#🎜 🎜#
#🎜 🎜 #
Number세로좌표 환산량

201612261753459414.png