Skip to content

Instantly share code, notes, and snippets.

@eddieberklee
Created February 8, 2017 17:25
Show Gist options
  • Select an option

  • Save eddieberklee/d106832b00cc9857a4f46fab9a15bb7d to your computer and use it in GitHub Desktop.

Select an option

Save eddieberklee/d106832b00cc9857a4f46fab9a15bb7d to your computer and use it in GitHub Desktop.
/*
Paint strokePaint = new Paint();
strokePaint.setStyle(Paint.Style.STROKE);
strokePaint.setStrokeWidth(Etils.dpToPx(1));
strokePaint.setColor(Color.RED);
canvas.drawRect(innerRectHump, strokePaint);
canvas.drawRect(outerRectHump, strokePaint);
canvas.drawPath(humpCirclePath, strokePaint);
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment