Package quicktime.std.image

Examples of quicktime.std.image.Matrix


/*     */   public synchronized void setDisplayBounds(QDRect paramQDRect)
/*     */     throws QTException
/*     */   {
/* 154 */     QDRect localQDRect = getDisplayBounds();
/*     */
/* 156 */     Matrix localMatrix = new Matrix();
/*     */
/* 158 */     localMatrix.setTx(paramQDRect.getX());
/* 159 */     localMatrix.setTy(paramQDRect.getY());
/* 160 */     localMatrix.setSx(paramQDRect.getWidth() / localQDRect.getWidth());
/* 161 */     localMatrix.setSy(paramQDRect.getHeight() / localQDRect.getHeight());
/*     */
/* 163 */     setMatrix(localMatrix);
/*     */
/* 165 */     this.pres.setDimensions(null, paramQDRect.getWidth(), paramQDRect.getHeight());
/*     */   }
View Full Code Here

TOP

Related Classes of quicktime.std.image.Matrix

Copyright © 2018 www.massapicom. 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.