should i move everything by the windows Normalised cords to make it so SE is bottom-right, or should i use (1,1) and move everything at or either (1+speedX,1+speedY)
d = (WindowOrigin*2).GetNormalise();
v+=vec2f(0,-d.y);
or
d = (1,1).GetNormalise();
v+=vec2f(0,-d.y);
reason i ask is because using the first one makes it feel like up and down move slower then left and right even though it takes same amount of time
i can post more code but i really dont think its gonna show anything useful
the image shows both options i can use