Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

วิธีตรวจจับจุดบนผืนผ้าใบหลังจากการหมุนผืนผ้าใบใน 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]