First equation
$((1.2 x)^2 + (1.4 y)^2 - 1)^3 - (1.3 x)^2 y^3 == 0$
I wanna transform it into a parametric equation. I spent a much of a day working on it without success. The equation describes the following curve.
ContourPlot[
((1.2 x)^2 + (1.4 y)^2 - 1)^3 - (1.3 x)^2 y^3 == 0,
{x, -1.5, 1.5}, {y, -3/2, 3/2},
AspectRatio -> Automatic]
I tried to use NSolve to get the $x(t)$ and$y(t)$:
NSolve[{((1.2 x)^2 + (1.4 y)^2 - 1)^3 == t, t == (1.3 x)^2 y^3}, {x, y}]
I get many solutions for $x$ and $y$. As we know a suitable choice of $x(t)$ will give me a unique $y(t)$ and a parametric function.
Second equation
fun[x, y]=
0.0027031 (Sin[x]^4 (Cos[x]^4 + Sin[x]^4)) + 0.0027031 Cos[x]^4 +
00346524 Sin[x]^4 Cos[y]^2 Sin[y]^2 + 0.034624 Sin[x]^2 Cos[x]^2
Actually I want to transform it into a spherical form. But I infer from the Application section of CoordinateTransform that, if I can just get $x(t), y(t), z(t)$, then I can use CoordinateTransform["Cartesian" -> "Spherical", {x[t], y[t], z[t]}] to make the transform.
These two questions are both about transforming a function from implicit Cartesian form to a parametric form. So I thought it would be OK to ask them together in one post.

