I may be very dumb, cos i cant understand how you go from this
To thisCode:var radius1 = clip1._width/2
var radius2 = clip2._width/2
I mean, if its all to the power of 2, why its notCode:var radius1 = (clip1._width * clip1._width)/2
var radius2 = (clip2._width * clip2._width)/2
(clip1._width * clip1._width)/ 4
?
Or this power of 2 has nothing to do?
