gpt4 book ai didi

input - 根据触摸或鼠标的 delta x,y 移动计算旋转度数

转载 作者:行者123 更新时间:2023-12-01 11:21:06 25 4
gpt4 key购买 nike

我在 2D 空间中有一个对象,我想根据 2D 空间中输入的移动方式对其进行旋转。基本上,假设您在屏幕上顺时针或逆时针移动手指或鼠标,对象会根据您旋转手指的方式旋转。对象的位置根本无关紧要,这意味着旋转仅从手指移动转换到对象,对象的位置与手指移动位置之间没有关系。

我正在使用 libGdx,并且在调用方法“touchDragged”时获得 X 和 Y 增量移动(正整数和负整数取决于移动方向)。

我如何使用这个增量 X 和 Y 来计算我可以应用到我的对象的移动度数。最好我只想增加弧度或度数。

如果只使用一个轴,我可以让它正常工作。 IE。如果我向上或向下移动手指,或者顺时针或逆时针旋转。我的问题是让它因 X 和 Y 运动而工作。

PS:在发布这个问题之前,我四处看了看,我知道有类似的问题,但我无法根据它们找出答案。我不知道为什么,但似乎所有不同的问题都在解决不同的用例,每个用例都与我的不同。

最佳答案

[编辑:正如 Barodapride 所述,libgdx 提供了 Vector2 API Vector2.angle(Vector2 Reference),它已经将浮点角度值返回给您,但最好知道幕后发生了什么]

使用笛卡尔坐标到极坐标,你的轴位置将是你笛卡尔平面中的 0,0,我现在无法测试但你可以通过我编写的以下代码了解这个想法,看看 this进一步引用:

public boolean touchDragged(InputEvent event, float posX, float posY, int pointer){
//Declare and get the position of your axis (in screen coords, you can get that by camera.project()
Float axisX,axisY;
axisX = getAxisX();
axisY = getAxisY();
//Transform the clicked position to the cartesian plane given the axis
Float cartesianX,cartesianY;
cartesianX = posX-axisX;
cartesianY = posY-axisY;
//Calculate de radius
Float radius = Math.sqrt( cartesianX * cartesianX + cartesianY * cartesianY );
//Get the angle in radians
Float angleInRadians = Math.acos( cartesianX / radius );
//Get the angle in degrees
Float angleInDegrees = angleInRadians *57.2958;
return true;
}

相反,从给定的半径和角度得到 x,y:

double x = getAxisX() + Math.cos( angleInRadians ) * radius;
double y = getAxisY() + Math.sin( angleInRadians ) * radius;

关于input - 根据触摸或鼠标的 delta x,y 移动计算旋转度数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36727257/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com