我正在用 java swing 制作桌面应用程序。我使用 PointArray[] 从我的 2D 图像制作了 3D 图像。现在我想使用 MouseListener 和 MouseMotionListener 来旋转图像。我使用 MouseRotate 对象来旋转 myImage,但它并不适用,MouseRotate 用原点(0,0,0)旋转图像。但我想使用图像的中心点旋转图像。表示使用中心点而不是原点旋转图像。那么,我该怎么做呢?
问问题
721 次
1 回答
0
嗯,没有代码很难说,但我认为你可以设置一个转换矩阵并用它来旋转它。假设图像面向屏幕的正面,您可以尝试以下操作:
public void mouseDragged(MouseEvent e)
{
int dx = e.getX() - x; //x should be a global variable
int dy = e.getY() - y; //same applies here
x = e.getX(); //to set x for the next update loop
y = e.getY();
double rotation = Math.sqrt(Math.pow(dx, 2) + Math.pow(dy, 2));
Transform3D transform = new Transform3D();
Matrix3d matrix = new Matrix3d();
transformG.getTransform(transform); //assuming the TransformGroup your image is in is transformG
transform.getRotationScale(matrix);
transform.rotZ(rotation);
transformG.setTransform(transform);
}
您可以根据需要设置不同的旋转量,但这应该会给您一个想法
于 2013-08-01T19:18:56.410 回答