课程名称: canvas绘图详解
课程章节: 第4章 星空和图形变换
主讲老师: liuyubobobo
变换矩阵
矩阵:
a c e b d f 0 0 1
字母 语义 默认值 a 水平缩放 1 b 水平倾斜 0 c 垂直倾斜 0 d 垂直缩放 1 e 水平位移 0 f 垂直位移 0
设置变换矩阵:ctx.transform(a, b, c, d, e, f) // 通过参数调用该函数会生成一个矩阵
生成新的矩阵,忽略之前的矩阵状态:ctx.setTransform(a, b, c, d, e, f) // 若之前调用过transform,则相当于删掉了之前调用的transform