Home | History | Annotate | Download | only in filters

Lines Matching refs:mPoints

95         public float[] mPoints = new float[20];
106 mPoints = Arrays.copyOf(copy.mPoints, copy.mPoints.length);
285 mCurrent.mPoints[0] = x;
286 mCurrent.mPoints[1] = y;
293 if ((len+2) > mCurrent.mPoints.length) {
294 mCurrent.mPoints = Arrays.copyOf(mCurrent.mPoints, mCurrent.mPoints.length * 2);
296 mCurrent.mPoints[len] = x;
297 mCurrent.mPoints[len + 1] = y;
338 writer.value(mark.mPoints[j]);
371 if ((count + 1) > stroke.mPoints.length) {
372 stroke.mPoints = Arrays.copyOf(stroke.mPoints, count * 2);
374 stroke.mPoints[count++] = (float) sreader.nextDouble();
377 stroke.mPath.moveTo(stroke.mPoints[0], stroke.mPoints[1]);
379 stroke.mPath.lineTo(stroke.mPoints[i], stroke.mPoints[i + 1]);