Searched refs:numSample (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/gesture/ |
D | Gesture.java | 142 public Path toPath(int width, int height, int edge, int numSample) { in toPath() argument 143 return toPath(null, width, height, edge, numSample); in toPath() 146 public Path toPath(Path path, int width, int height, int edge, int numSample) { in toPath() argument 153 path.addPath(strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample)); in toPath() 185 public Bitmap toBitmap(int width, int height, int edge, int numSample, int color) { in toBitmap() argument 204 Path path = strokes.get(i).toPath(width - 2 * edge, height - 2 * edge, numSample); in toBitmap()
|
D | GestureStroke.java | 160 public Path toPath(float width, float height, int numSample) { in toPath() argument 161 final float[] pts = GestureUtils.temporalSampling(this, numSample); in toPath()
|