Home | History | Annotate | Download | only in foldinglayout

Lines Matching full:mdst

98     private float [] mDst;
234 mDst = new float[NUM_OF_POLY_POINTS];
413 mDst[0] = (anchorPoint > x * mFoldDrawWidth) ? anchorPoint + (x - midFold) *
415 mDst[1] = isEven ? 0 : topScaledPoint;
416 mDst[2] = mDst[0];
417 mDst[3] = isEven ? mFoldDrawHeight: bottomScaledPoint;
418 mDst[4] = (anchorPoint > (x + 1) * mFoldDrawWidth) ? anchorPoint + (x + 1 - midFold)
420 mDst[5] = isEven ? topScaledPoint : 0;
421 mDst[6] = mDst[4];
422 mDst[7] = isEven ? bottomScaledPoint : mFoldDrawHeight;
425 mDst[0] = isEven ? 0 : leftScaledPoint;
426 mDst[1] = (anchorPoint > x * mFoldDrawHeight) ? anchorPoint + (x - midFold) *
428 mDst[2] = isEven ? leftScaledPoint: 0;
429 mDst[3] = (anchorPoint > (x + 1) * mFoldDrawHeight) ? anchorPoint + (x + 1 -
431 mDst[4] = isEven ? mFoldDrawWidth : rightScaledPoint;
432 mDst[5] = mDst[1];
433 mDst[6] = isEven ? rightScaledPoint : mFoldDrawWidth;
434 mDst[7] = mDst[3];
440 mDst[y] = Math.round(mDst[y]);
448 if (mDst[4] <= mDst[0] || mDst[6] <= mDst[2]) {
453 if (mDst[3] <= mDstmDst[7] <= mDst[5]) {
460 mMatrix[x].setPolyToPoly(mSrc, 0, mDst, 0, NUM_OF_POLY_POINTS / 2);