How to draw a heart with pylab? I searched with google for ways to draw the picture but i want know how to draw it with pylab. Can someone help? The picture should look like this:

3D Heart

link|improve this question

50% accept rate
1  
can you say cardiod? – GregS Dec 18 '10 at 21:14
3  
related post: stackoverflow.com/questions/1526898/… – Paul Dec 19 '10 at 22:42
feedback

3 Answers

Using the linked formula in the other solution:

import pylab
x = scipy.linspace(-2,2,1000)
y1 = scipy.sqrt(1-(abs(x)-1)**2)
y2 = -3*scipy.sqrt(1-(abs(x)/2)**0.5)
pylab.fill_between(x, y1, color='red')
pylab.fill_between(x, y2, color='red')
pylab.xlim([-2.5, 2.5])
pylab.text(0, -0.4, 'Stack Overflow', fontsize=24, fontweight='bold',
           color='white', horizontalalignment='center')
pylab.savefig('heart.png')

heart

link|improve this answer
The OP links to 3D heart. – J.F. Sebastian Dec 18 '10 at 16:40
feedback

Hint: Take a look at example from Sage: 3D Love Heart:

x, y, z = var('x, y, z') 
f(x, y, z) = (x^2+(9/4)*y^2+z^2-1)^3-x^2*z^3-(9/80)*y^2*z^3
P = implicit_plot3d(f, (x, -3, 3), (y, -3, 3), (z, -3, 3),
                    frame=False, axes=True, figsize=6,color="red") 
P.show(viewer='tachyon')

sage: Heart 3D

link|improve this answer
feedback

Maybe this helps, but it is 2D.

link|improve this answer
thanks for your help , – timger Dec 18 '10 at 13:12
but the heart is not look good – timger Dec 18 '10 at 13:13
ok :) just want to be helper – hilal Dec 18 '10 at 13:14
also thanks for you assistance – timger Dec 18 '10 at 13:19
and wait some python proficient – timger Dec 18 '10 at 13:22
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.