I wrote a C program which prints a heartbeat (heart star) animation.
The key is to print a heart of stars, which looks like this
consists of line of stars and blanks.
* * * * * * * *
* * * * * * * * * * * *
* * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * * * *
* * * * * * * * * * * * * * *
* * * * * * * * * * * * *
* * * * * * * * * * *
* * * * * * * * *
* * * * * * *
* * * * *
* * *
*
Is there an existing method to make it more like a heart? For example, how many lines should I use to draw the top half of the heart shape?
By "more like", I mean more roundish, like this
and this


