我想缩放形状。
所以我在仿射变换中使用 setToScale 方法。
然后,不仅形状的长度是反式的,而且形状的起点也会移动
为什么?
public void initResize(int x, int y) {
oldX = x;
oldY = y;
}
public void resize(int x, int y) {
double xratio = (double)(x - shape.getBounds().x) / (shape.getBounds().width);
double yratio = (double)(y - shape.getBounds().y) / (shape.getBounds().height);
af.setToScale(xratio, 1);
shape = af.createTransformedShape(shape);
anchor.resize(shape.getBounds());
oldX = x;
oldY = y;
}
方法调用的顺序是 MousePress : initResize, MouseDrgged : resize
x,y 是鼠标坐标