<h1>FlipX and FlipY Fix?</h1>
<h2>Issue:</h2>
<p>After rotating, FlipX and FlipY do not act the way you would expect as they ignore any rotation, flipping on the original axis.</p>
<h2>Goal:</h2>
<p>To work similar to how you would expect i.e. How photoshop flips</p>
<canvas id="c" width="600" height="300"></canvas>
<button id="flipY">flipY</button>
<button id="flipX">flipX</button>
<p><b>Proposed Solution:</b> Get the current rotation angle, and apply the negative of that value on flip. </p>
<p><b>Current Issues:</b> <br>1. Flipped object's position changes, likely due to rotation.<br>
2. Controls sometimes get lost after flip. </p>