我在PAffineTransform
中找到以下代码:
/**
* Scales the transform about the given point by the given scale.
*
* @param scale to transform the transform by
* @param x x coordinate around which the scale should take place
* @param y y coordinate around which the scale should take place
*/
public void scaleAboutPoint(final double scale, final double x, final double y) {
//TODO strange order
translate(x, y);
scale(scale, scale);
translate(-x, -y);
}
做反向不正确:
translate(-x, -y);
scale(scale, scale);
translate(x, y);
所有使用的方法与AffineTransform
中的方法相同。
更新
我的错误。
顺序变换修改意味着从右边开始矩阵乘法。因此,最后应用的修改在转换时首先起作用,因为转换是从左边开始的矩阵乘法。
答案 0 :(得分:1)
PAffineTransform
中的顺序与Piccol2D中的每个节点都有一个仿射变换这一事实有关,该仿射变换定义了该节点的局部坐标系。
通常,要缩放特定点,首先要翻译对象,使点位于原点。然后执行缩放,然后执行原始平移的反转,将固定点移回原始位置。
PNode
有自己的局部坐标系,原点为(0,0)。因此,当在节点上执行scaleAboutPoint()
时,PAffineTransform
中定义的顺序是有意义的。首先,转换为点,使其成为新的原点,然后缩放,然后反转平移。