HTML5 中画布旋转后检测画布上点的步骤
每当使用画布并希望旋转该画布时,都需要转换点来绘制与其旋转相关的点。
可在画布旋转后创建转换类以检测画布上的点
var t = new Transform(); console.log(t.transformPoint(5,6)); //Transform point will be [5,6] t.rotate(1); // Same transformations can be applied that we did to the canvas console.log(t.transformPoint(5,6)); // Transformed point will be [-2.347, 7.449]
广告