Partitioning the interior of Bean curve

euclidean-geometrygeometry

The bean curve is defined as $\left(x^{2}+y^{2}\right)^{2}=x^{3}+y^{3}$ in cartesian coordinates, $r=\left(\cos\left(\theta\right)\right)^{3}+\left(\sin\left(\theta\right)\right)^{3}$ in polar coordinates and $$\gamma(t) = \left(\left(\left(\cos\left(t\right)\right)^{3}+\left(\sin\left(t\right)\right)^{3}\right)\cos\left(t\right),\left(\left(\cos\left(t\right)\right)^{3}+\left(\sin\left(t\right)\right)^{3}\right)\sin\left(t\right)\right)$$ as parametric equation for $0\le t \le \pi$. My aim is to partition the interior in smaller bean curves(just like in the figure). For instance, in the case of unit circle centred at origin, every point in the interior can be written uniquely as $(s\cos(\theta),s\sin(\theta))$ where $s$ is the distance of the point from origin and $\theta$ denotes the angle from the $x$-axis. Thus the interior in this case is the union of smaller circles centred at origin. Is it possible to do the same for the bean curve?

    
                   
             
                   
   enter image description here

A few possibilities that don't work are $s\gamma(t)$ and $s\gamma(t)+\frac{s(1-s)}{2}(1,1)$, because for every $0\le s \le1$, $(0,0) = s\times \gamma(3\pi/4)$ and the same problem with the second one. For the same point there are multiple bean curves.

Best Answer

The comment by @Blue is correct. I've had experience with these parallel curves and plotted them up for the bean curve in the first figure below. The first algorithm in the Wikipedia article was used, but be advised that the algorithm breaks down if the $|d|$ is too large or too small. Here is what I did: I first centered the bean curve at its circumcenter. Then I normalized it to fit in a unit circle. For the parallel curves I took $d\in [-.3,.3]$ in $0.1$ increments. In the complex plane, let's call the bean curve $z(t)$ and the parallel curves $z_d(t)$. The we have

$$ z(t)=(\cos^3t+\sin^3t)e^{it}\\ z_d(t)=z(t)-d\frac{i\dot z}{|\dot z|} $$

where $\dot z=\dot x+i\dot y$. The Cartesian equations are given in the referenced Wiki article.

It's interesting to note the circumcircles of all the parallel curves are concentric (they share the same center) but that the circumcenters of al the beans are in different relative positions. This is demonstrated in the second figure below.

Bean curves Bean curves with circumcircles

Related Question