Raphael.FreeTransform
Raphael.FreeTransform copied to clipboard
negative circle radius value
When using circle + square you can get a negative value for the circle radius
simple correction at line 194 :
r: Math.abs(Math.max(radius.x, radius.y) * ft.opts.distance)
instead of
r: Math.max(radius.x, radius.y) * ft.opts.distance