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

  /gdk/samples/PhotoEditor/src/com/android/photoeditor/actions/
RotateView.java 51 private final Paint dashStrokePaint;
68 dashStrokePaint = new Paint();
69 dashStrokePaint.setAntiAlias(true);
70 dashStrokePaint.setStyle(Paint.Style.STROKE);
71 dashStrokePaint.setPathEffect(new DashPathEffect(new float[] {15.0f, 5.0f}, 1.0f));
140 dashStrokePaint.setStrokeWidth(2f);
141 dashStrokePaint.setColor(0x99CCCCCC);
142 canvas.drawPath(grids, dashStrokePaint);
146 dashStrokePaint.setStrokeWidth(2f);
147 dashStrokePaint.setColor(0x99FFCC77)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/actions/
RotateView.java 51 private final Paint dashStrokePaint;
70 dashStrokePaint = new Paint();
71 dashStrokePaint.setAntiAlias(true);
72 dashStrokePaint.setStyle(Paint.Style.STROKE);
73 dashStrokePaint.setPathEffect(new DashPathEffect(new float[] {15.0f, 5.0f}, 1.0f));
74 dashStrokePaint.setStrokeWidth(2f);
142 dashStrokePaint.setColor(gridsColor);
143 canvas.drawPath(grids, dashStrokePaint);
146 dashStrokePaint.setColor(referenceColor);
147 canvas.drawPath(referenceLine, dashStrokePaint);
    [all...]

Completed in 112 milliseconds