Created
May 26, 2022 18:47
-
-
Save maiatoday/67c843ce8a7d21b3c32765cd68c366f9 to your computer and use it in GitHub Desktop.
heart shape
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
// Thank You https://mahendranv.github.io/posts/compose-shapes-gists/ | |
val HeartShape = GenericShape { size, _ -> | |
val h = size.height | |
val w = size.width | |
lineTo(0.5f*w, 0.25f*h) | |
cubicTo(0.5f*w, 0.225f*h, 0.458333333333333f*w, 0.125f*h, 0.291666666666667f*w, 0.125f*h) | |
cubicTo(0.0416666666666667f*w, 0.125f*h, 0.0416666666666667f*w, 0.4f*h, 0.0416666666666667f*w, 0.4f*h) | |
cubicTo(0.0416666666666667f*w, 0.583333333333333f*h, 0.208333333333333f*w, 0.766666666666667f*h, 0.5f*w, 0.916666666666667f*h) | |
cubicTo(0.791666666666667f*w, 0.766666666666667f*h, 0.958333333333333f*w, 0.583333333333333f*h, 0.958333333333333f*w, 0.4f*h) | |
cubicTo(0.958333333333333f*w, 0.4f*h, 0.958333333333333f*w, 0.125f*h, 0.708333333333333f*w, 0.125f*h) | |
cubicTo(0.583333333333333f*w, 0.125f*h, 0.5f*w, 0.225f*h, 0.5f*w, 0.25f*h) | |
close() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment