如何扩大规模?

时间:2013-11-15 11:09:24

标签: java graphics awt affinetransform piccolo

我在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中的方法相同。

更新

我的错误。

顺序变换修改意味着从右边开始矩阵乘法。因此,最后应用的修改在转换时首先起作用,因为转换是从左边开始的矩阵乘法。

1 个答案:

答案 0 :(得分:1)

PAffineTransform中的顺序与Piccol2D中的每个节点都有一个仿射变换这一事实有关,该仿射变换定义了该节点的局部坐标系。

通常,要缩放特定点,首先要翻译对象,使点位于原点。然后执行缩放,然后执行原始平移的反转,将固定点移回原始位置。

PNode有自己的局部坐标系,原点为(0,0)。因此,当在节点上执行scaleAboutPoint()时,PAffineTransform中定义的顺序是有意义的。首先,转换为点,使其成为新的原点,然后缩放,然后反转平移。