1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-21 20:39:10 +02:00

actually use math

This commit is contained in:
Ellpeck 2019-12-29 12:05:49 +01:00
parent 7dbc5dd608
commit fb48386aad

View file

@ -88,26 +88,8 @@ namespace MLEM.Misc {
}
public static float Angle(this Direction2 dir) {
switch (dir) {
case Direction2.Up:
return MathHelper.PiOver2;
case Direction2.Right:
return MathHelper.TwoPi;
case Direction2.Down:
return 3 * MathHelper.PiOver2;
case Direction2.Left:
return MathHelper.Pi;
case Direction2.UpRight:
return MathHelper.PiOver4;
case Direction2.DownRight:
return 7 * MathHelper.PiOver4;
case Direction2.DownLeft:
return 5 * MathHelper.PiOver4;
case Direction2.UpLeft:
return 3 * MathHelper.PiOver4;
default:
return -1;
}
var offset = dir.Offset();
return (float) Math.Atan2(offset.Y, offset.X);
}
}