/* */
/* */ /** @deprecated */
/* */ public void setDisplayBounds(QDRect paramQDRect)
/* */ throws StdQTException
/* */ {
/* 501 */ Matrix localMatrix = new Matrix();
/* */
/* 503 */ localMatrix.setTx(paramQDRect.getX());
/* 504 */ localMatrix.setTy(paramQDRect.getY());
/* 505 */ localMatrix.setSx(paramQDRect.getWidth() / this.origWidth);
/* 506 */ localMatrix.setSy(paramQDRect.getHeight() / this.origHeight);
/* */
/* 508 */ if (this.mImageSeq != null) this.mImageSeq.setMatrix(localMatrix);
/* 509 */ this.mat = localMatrix;
/* 510 */ this.mDisplayBounds = paramQDRect;
/* */ }