Examples of transformRect()


Examples of quicktime.std.image.Matrix.transformRect()

/*     */       {
/* 191 */         Matrix localMatrix2 = new Matrix();
/* 192 */         this.space.getMatrix().inverse(localMatrix2);
/*     */
/* 195 */         QDRect localQDRect1 = this.space.getDisplayBounds().copy();
/* 196 */         localMatrix2.transformRect(localQDRect1);
/*     */
/* 199 */         QDDimension localQDDimension = this.target.getOriginalSize();
/* 200 */         float f1 = localMatrix1.getTx();
/* 201 */         float f2 = localMatrix1.getTy();
/* 202 */         int i = localQDRect1.getX();
View Full Code Here

Examples of quicktime.std.image.Matrix.transformRect()

/*     */       case 0:
/*     */       case 1:
/* 279 */         break;
/*     */       default:
/* 283 */         QDRect localQDRect = new QDRect(0, 0, m, n);
/* 284 */         localMatrix.transformRect(localQDRect);
/* 285 */         m = localQDRect.getWidth();
/* 286 */         n = localQDRect.getHeight();
/* 287 */         i1 = (int)(localMatrix.getTx() - localQDRect.getX() + 0.5F);
/* 288 */         f1 -= i1;
/* 289 */         i3 = (int)(localMatrix.getTy() - localQDRect.getY() + 0.5F);
View Full Code Here

Examples of quicktime.std.image.Matrix.transformRect()

/* 348 */       this.doMemCleanup = false;
/*     */     }
/*     */
/* 351 */     Matrix localMatrix = paramQTDrawable.getMatrix().copy();
/* 352 */     QDRect localQDRect = new QDRect(paramQTDrawable.getOriginalSize());
/* 353 */     localMatrix.transformRect(localQDRect);
/*     */
/* 355 */     QDGraphics localQDGraphics = new QDGraphics(1, localQDRect);
/* 356 */     localQDGraphics.setBackColor(QDColor.white);
/* 357 */     localQDGraphics.eraseRect(localQDRect);
/* 358 */     paramQTDrawable.setGWorld(localQDGraphics);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.