HomeSort by relevance Sort by last modified time
    Searched refs:mCubics (Results 1 - 2 of 2) sorted by null

  /development/apps/GraphicsLab/src/com/android/graphicslab/
GraphicsLab.java 62 private float[] mCubics;
81 mCubics = new float[] {
88 mCubics[i] *= 90;
89 mCubics[i] += 20;
104 float[] pts = mCubics;
132 Interpolator.Result result = mInterp.timeToValues(now, mCubics);
144 mPatch.setCubicBoundary(mCubics, 0, ROWS, COLS);
152 System.arraycopy(mOrig, 0, mCubics, 0, 24);
167 mCubics[index*2 + 0] = mOrig[index*2 + 0] + dx;
168 mCubics[index*2 + 2] = mOrig[index*2 + 2] + dx
    [all...]
  /packages/apps/Browser/src/com/android/browser/
MeshTracker.java 32 private float[] mCubics = new float[24];
43 mPatch.setCubicBoundary(mCubics, 0, mRows, mCols);
47 float[] pts = mCubics;
91 mCubics[index*2 + 0] = mOrig[index*2 + 0] + dx;
92 mCubics[index*2 + 2] = mOrig[index*2 + 2] + dx;
99 mCubics[index*2 + 1] = mOrig[index*2 + 1] + dy;
100 mCubics[index*2 + 3] = mOrig[index*2 + 3] + dy;
115 mCubics[index*2 + 0] = mOrig[index*2 + 0] + dx;
116 mCubics[index*2 + 2] = mOrig[index*2 + 2] + dx;
119 mCubics[index*2 + 0] = mOrig[index*2 + 0] + dx * cornerScale
    [all...]

Completed in 15 milliseconds