|
|
|
@ -863,7 +863,11 @@ function calcRectangleFromPoints(points) {
|
|
|
|
|
|
|
|
|
|
|
|
const bottomAngleRad = Math.atan2(p1.y - p4.y, p1.x - p4.x);
|
|
|
|
const bottomAngleRad = Math.atan2(p1.y - p4.y, p1.x - p4.x);
|
|
|
|
const angleDeg = bottomAngleRad * 180 / Math.PI;
|
|
|
|
const angleDeg = bottomAngleRad * 180 / Math.PI;
|
|
|
|
|
|
|
|
console.log({
|
|
|
|
|
|
|
|
width: Number(width.toFixed(2)),
|
|
|
|
|
|
|
|
height: Number(height.toFixed(2)),
|
|
|
|
|
|
|
|
angle: Number(angleDeg.toFixed(6))
|
|
|
|
|
|
|
|
})
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
width: Number(width.toFixed(2)),
|
|
|
|
width: Number(width.toFixed(2)),
|
|
|
|
height: Number(height.toFixed(2)),
|
|
|
|
height: Number(height.toFixed(2)),
|
|
|
|
|