PHP中的坐标旋转
作者:互联网
(这个问题是特定于PHP的,我知道这是在其他语言中讨论过的,但是在用PHP实现它时遇到了麻烦.)
我正在尝试旋转x&放置在旋转图像上的特征的y坐标.
$x& $y是旋转图像之前块的原始x,y坐标.
$width2& $height2是旋转中心(即图像的中心).
$sin& $cos是正弦&余弦,通过sin($radians)和
cos($radians)关于(背景)图像旋转的角度(以弧度为单位)
function RotatePoints($x,$y,$width2,$height2,$sin,$cos)
{
// translate point back to origin:
$x -= $width2;
$y -= $height2;
// rotate point
$x = $x * $cos - $y * $sin;
$y = $x * $sin + $y * $cos;
// translate point back:
$x += $width2;
$y += $height2;
return array($x,$y);
}
应该考虑到旋转,此功能应该给我块的新坐标.但是定位还很遥远.
我究竟做错了什么?
解决方法:
计算旋转时,应在代码中使用其他变量:
$x = $x * $cos - $y * $sin;
$y = $x * $sin + $y * $cos;
$x被第一个方程式修改,然后在第二个方程中使用了错误的$x值.
改成:
$temp_x = $x * $cos - $y * $sin;
$temp_y = $x * $sin + $y * $cos;
标签:rotation,trigonometry,php 来源: https://codeday.me/bug/20191101/1986714.html