I need to draw some curves in Python3 (I am quite used to matplotlib.pyplot
) but I have never drawn such things before and I would really appreciate some tips (especially tips how to code it in a "tidy" way) and help.
There is an example (let's use a heart!):
x^2+(5y/4-sqrt[|x|])^2=1
How can I code such a thing? Should I cut that formula into normal areas and then draw them?