Home | History | Annotate | Download | only in browser

Lines Matching refs:Path

30 import android.graphics.Path;
167 // Construct a path from a round rect. This will allow drawing with
169 Path path = new Path();
170 path.setFillType(Path.FillType.INVERSE_WINDING);
173 path.addRoundRect(rect, 8f, 8f, Path.Direction.CW);
177 canvas.drawPath(path, paint);