I was wondering what is the difference between RenderTransformOrigin and the center property of the RotateTransfrom. If you apply set a RotateTransform as RenderTransfrom with some value for RenderTransfromOrigin (say 0.5, 0.5 the center of the element) what is the point/effect of setting the center point of the RotateTransfrom? Does that override the RenderTransfromOrigin value?
I was wondering what is the difference between RenderTransformOrigin and the center property of
Share
RenderTransformOriginapplies to whatever transform is applied, further it is relative, i.e. 0.5 means 50% whereas the center of aRotateTransformis absolute, 0.5 would mean 0.5 pixels.You can use both, they will both apply. The value of the tranform’s center will be added to the origin set by the
RenderTransformOrigin.