Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要做的是让我的鼠标围绕一个点(距离所述点 500 像素)以圆形方式移动。我希望鼠标逆时针执行此操作。
所以我想说的是......我希望鼠标使用Robot类方法mouseMove围绕500px的点移动。我只是不知道在数学方面我会怎么做。
使用圆方程得到 x 值和 y 值之间的依赖关系。
现在遍历 -500 到 500 之间的每个 x(跳跃 1),计算 y 值,然后移动鼠标。
我认为一点点三角法可以发挥作用。然后你可以通过以下方式连续移动:
Robot r = new Robot(); r.mouseMove(calculatedX,calculatedY);