I am trying to find the rotated svg rectangle coordinates.
For example,
<svg width="500" height="500">
<rect width="100" height="80" x="250" y="50"/>
</svg>
In this SVG rect, i can calculate all 4 corners as mentioned below.
Point-1 => (250,50)
point-2 => (350,50) i.e (x+width, y)
Point-3 => (350, 130) i.e (x+width, y+height)
point-4 => (250, 130)
But, when i use the rotate, i can't find new 4 coordinates,
<svg width="500" height="500">
<rect width="100" height="80" x="250" y="50" transform="rotate(10 250,50)"/>
</svg>
I found the solution. The below method is working fine.