{@code [ m00, m10, tx ] [ m01, m11, ty ] [ 0, 0, 1 ]}
221222223224225226227
} /** Utility method for capture. */ protected static AffineTransform toAffine (Transform t) { if (t instanceof AffineTransform) return (AffineTransform)t; else return new AffineTransform(t.scaleX(), t.scaleY(), t.rotation(), t.tx(), t.ty()); }