Home | History | Annotate | Download | only in utils

Lines Matching defs:path

23 import android.graphics.Path;
57 return new StrokeDescription(path(point), 0, ViewConfiguration.getTapTimeout(), true);
61 return lastStroke.continueStroke(path(lastPointOf(lastStroke)),
71 return new StrokeDescription(path(point), 0, ViewConfiguration.getTapTimeout());
75 return new StrokeDescription(path(point), 0,
84 return new StrokeDescription(path(from, to), 0, duration);
89 path(lastPointOf(from), to),
93 public static Path path(PointF first, PointF... rest) {
94 Path path = new Path();
95 path.moveTo(first.x, first.y);
97 path.lineTo(point.x, point.y);
99 return path;