Consider two circles $C_1((x,y),r)$ and $C_2((x_1,y_1),R)$
the two circles insects when the distance $d=\sqrt{(x-x_1)^2+(y-y_1)^2}$ between the two circles is less than $d < r+R$
I want to know how much I should move $C_1$ by $(d_x ,d_y)$ away/ towards $C_2$ to satisfy the distance $d= m*(r+R)$ where $m \in [0,1.0]$
In other ways, I want the intersection between $C_1$ an $C_2$ to be 20% or 30% and so on, which means $d$ should be equal to $d=(1-\text{percentage})*(r +R)$
Example
$C_1((2,2),1)$ and $C_2((4,2),2)$ so the distance $d=2 < 1_r+2_R$ so in order to satisfy 20% intersection $C_2$ should move $d_x=0.4$ to point $(4.4,2)$ which gives $d=2.4 < 3$ but $2.4/3$ = $0.8$
Hope this example clarify what I want
Thank you in advance for the help