Created
January 7, 2019 13:36
-
-
Save bitvale/fb7d2b0dac8c710a30dbd4ddb510bb17 to your computer and use it in GitHub Desktop.
For Medium article "The power of Android Porter/Duff Mode"
This file contains 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
val topY = textPaint.ascent() * -1 - textBounds.height() | |
lightPath.moveTo(lightPivotX - letterWidth / 2f, topY) | |
lightPath.moveTo(lightPivotX + letterWidth / 2f, topY) | |
lightPath.lineTo(lightPivotX + width / 2f, width.toFloat()) | |
lightPath.lineTo(lightPivotX - width / 2f, width.toFloat()) | |
lightPath.lineTo(lightPivotX - letterWidth / 2f, topY) | |
lightPath.close() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment