This is what I mean. I have this:
Code: Select all
<path
transform="translate(-531.14286,-574.79076)"
id="opponentBg"
d="m 671.14286,674.79074 30,-49.99998 -30,-50.00002 -140,0 0,100.00002 140,-2e-5 z"
style="fill:#75507b;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
/>
And I want it to become this:
Code: Select all
<path
id="opponentBg"
d="m 140,100 30,-50 -30,-50 -140,0 0,100 140,0 z"
style="fill:#75507b;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
/>
... without me hand-changing the coordinates of the hundreds of sprites I have so far.