[Math] Parametric equation for Taubin heart surface

implicit functionparametrization

We know the implicit equation for building a Taubin's heart surface: $$\\\left(x^2+\frac{9y^2}{4}+z^2-1\right)^3-x^2 z^3-\frac{9y^2 z^3}{80}=0$$
Can we convert to parametric equation equivalent?

What tools can we use to solve this?

If the answer is positive, i am interested about parametric equation for this surface

Best Answer

I am not sure, if it's too late for helping, but you can try below an alternative equation to plot a parametric heart surface.

Julia's parametric heart surface equation:

x=Sin[v](15 Sin[u]-4 Sin[3u])

y=8 Cos[v]

z=Sin[v](15 Cos[u]-5 Cos[2u]-2 Cos[3u]-Cos[2u])

In Wolfram Mathematica Code:

ParametricPlot3D[{Sin[v](15Sin[u]-4 Sin[3 u]),8Cos[v],Sin[v](15Cos[u]-5 Cos[2u]-2 Cos[3 u]-Cos[2 u])},{u,0,2Pi},{v,0,Pi},Axes->True,AxesLabel-> {"x","y","z"},PlotStyle->Red,PlotLabel->Style["Julia's Parametric Heart Surface",14,Bold],ViewPoint->Front]

Julia's parametric heart surface

Related Question