Created
February 8, 2017 17:25
-
-
Save eddieberklee/d106832b00cc9857a4f46fab9a15bb7d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 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