Raphael.FreeTransform
                                
                                 Raphael.FreeTransform copied to clipboard
                                
                                    Raphael.FreeTransform copied to clipboard
                            
                            
                            
                        pivot point
does free transform support changing the rotation pivot point?
FreeTransform always uses the center point for rotation but you could try changing the value of attrs.center and/or attrs.offset.translate, e.g. something like this:
var ft = paper.freeTransform(rect);
ft.attrs.center = { x: 50, y: 50 };
ft.attrs.rotate += 45;
ft.apply();
that works. would be amazing if you could do something like ft.attrs.rotate = "45,50,50"
I'll consider implementing that. I'll leave this issue open for now.