Examples of QDPoint


Examples of quicktime.qd.QDPoint

/*     */   }
/*     */
/*     */   public PathPointInfo getPathPoint(int paramInt1, int paramInt2)
/*     */     throws StdQTException
/*     */   {
/* 109 */     QDPoint localQDPoint = new QDPoint(0.0F, 0.0F);
/* 110 */     byte[] arrayOfByte = new byte[1];
/* 111 */     int i = CurveGetPathPoint(QTObject.ID(this.comp), getBytes(), paramInt1, paramInt2, localQDPoint.getGXPoint(), arrayOfByte);
/* 112 */     StdQTException.checkError(i);
/* 113 */     return new PathPointInfo(localQDPoint, arrayOfByte[0] != 0);
/*     */   }
View Full Code Here

Examples of quicktime.qd.QDPoint

/*     */   }
/*     */
/*     */   public QDPoint[] lengthToPoint(int paramInt1, int paramInt2)
/*     */     throws StdQTException
/*     */   {
/* 124 */     QDPoint localQDPoint1 = new QDPoint(0.0F, 0.0F);
/* 125 */     QDPoint localQDPoint2 = new QDPoint(0.0F, 0.0F);
/*     */
/* 127 */     int i = CurveLengthToPoint(QTObject.ID(this.comp), getBytes(), paramInt1, paramInt2, localQDPoint1.getGXPoint(), localQDPoint2.getGXPoint());
/* 128 */     StdQTException.checkError(i);
/* 129 */     QDPoint[] arrayOfQDPoint = new QDPoint[2];
/* 130 */     arrayOfQDPoint[0] = localQDPoint1;
/* 131 */     arrayOfQDPoint[1] = localQDPoint2;
/* 132 */     return arrayOfQDPoint;
View Full Code Here

Examples of quicktime.qd.QDPoint

/* 256 */           bool1 = this.filter.execute(this.movCont, paramShort, getIntFromPointer(paramInt2, 0), localAFStringHandle2);
/*     */         }
/*     */       }
/* 258 */       break;
/*     */     case 67:
/* 261 */       bool1 = this.filter.execute(this.movCont, paramShort, new QDPoint(paramInt2 & 0xFFFF, paramInt2 >>> 16));
/* 262 */       break;
/*     */     case 72:
/* 264 */       if (paramInt2 != 0)
/*     */       {
/* 266 */         i = getIntFromPointer(paramInt2, 4);
View Full Code Here

Examples of quicktime.qd.QDPoint

/*     */   private int setYBottom;
/*     */
/*     */   /** @deprecated */
/*     */   protected TransformMatrix()
/*     */   {
/*  89 */     this.newPt[0] = new QDPoint(0, 0);
/*     */   }
View Full Code Here

Examples of quicktime.qd.QDPoint

/* 212 */     localMatrix2.setTx(0.0F);
/* 213 */     localMatrix2.setTy(0.0F);
/* 214 */     localMatrix2.inverse(this.invSpaceMatrix);
/*     */
/* 216 */     this.origPt = new QDPoint[1];
/* 217 */     this.origPt[0] = new QDPoint(0, 0);
/*     */
/* 219 */     this.origTargetMatrix = this.target.getMatrix();
/* 220 */     this.spaceRect = localQDRect.copy();
/* 221 */     this.spaceRect.setX(0);
/* 222 */     this.spaceRect.setY(0);
View Full Code Here

Examples of quicktime.qd.QDPoint

/* 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);
View Full Code Here

Examples of quicktime.qd.QDPoint

/*      */   public final QDPoint translatePoint(int paramInt1, int paramInt2)
/*      */     throws QTUnknownOSException, NativeGraphicsException
/*      */   {
/*  304 */     Point localPoint = getNGLocation();
/*      */
/*  306 */     return new QDPoint(paramInt1 + localPoint.x, paramInt2 + localPoint.y);
/*      */   }
View Full Code Here

Examples of quicktime.qd.QDPoint

/* 230 */       Matrix localMatrix = this.space.getMatrix().copy();
/* 231 */       localMatrix.setTx(0.0F);
/* 232 */       localMatrix.setTy(0.0F);
/* 233 */       localMatrix.inverse(this.invSpaceMatrix);
/* 234 */       this.origPt = new QDPoint[1];
/* 235 */       this.origPt[0] = new QDPoint(paramMouseEvent.getX(), paramMouseEvent.getY());
/* 236 */       this.invSpaceMatrix.transformPoints(this.origPt);
/* 237 */       this.origTargetMatrix = this.target.getMatrix();
/* 238 */       this.spaceRect = localQDRect.copy();
/* 239 */       this.spaceRect.setX(0);
/* 240 */       this.spaceRect.setY(0);
View Full Code Here

Examples of quicktime.qd.QDPoint

/*     */   {
/*     */     try
/*     */     {
/* 256 */       int i = 0;
/* 257 */       QDPoint[] arrayOfQDPoint = new QDPoint[1];
/* 258 */       arrayOfQDPoint[0] = new QDPoint(paramMouseEvent.getX(), paramMouseEvent.getY());
/* 259 */       this.invSpaceMatrix.transformPoints(arrayOfQDPoint);
/* 260 */       int j = arrayOfQDPoint[0].getX() - this.origPt[0].getX();
/* 261 */       int k = arrayOfQDPoint[0].getY() - this.origPt[0].getY();
/* 262 */       Matrix localMatrix = this.origTargetMatrix.copy();
/* 263 */       localMatrix.translate(j, k);
View Full Code Here

Examples of quicktime.qd.QDPoint

/* 416 */     setFloatAt(60, paramFloat);
/*     */   }
/*     */
/*     */   public QDPoint getDefaultViewCenter()
/*     */   {
/* 424 */     return new QDPoint(getFloatAt(64), getFloatAt(68));
/*     */   }
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.