/* */ public void initialize(QTDisplaySpace paramQTDisplaySpace, Transformable paramTransformable, int paramInt1, int paramInt2)
/* */ throws QTException
/* */ {
/* 239 */ this.target = paramTransformable;
/* */
/* 241 */ QDRect localQDRect = paramQTDisplaySpace.getDisplayBounds();
/* 242 */ Matrix localMatrix1 = paramQTDisplaySpace.getMatrix();
/* */
/* 244 */ this.invSpaceMatrix = new Matrix();
/* 245 */ Matrix localMatrix2 = localMatrix1.copy();
/* 246 */ localMatrix2.setTx(0.0F);
/* 247 */ localMatrix2.setTy(0.0F);
/* 248 */ localMatrix2.inverse(this.invSpaceMatrix);
/* */
/* 250 */ this.origPt = new QDPoint[1];
/* 251 */ this.origPt[0] = new QDPoint(paramInt1, paramInt2);
/* */
/* 253 */ this.invSpaceMatrix.transformPoints(this.origPt);
/* 254 */ this.origTargetMatrix = this.target.getMatrix();
/* 255 */ this.spaceRect = localQDRect.copy();
/* 256 */ this.spaceRect.setX(0);
/* 257 */ this.spaceRect.setY(0);
/* 258 */ this.invSpaceMatrix.transformRect(this.spaceRect);
/* */ }