Beispiel #1
0
 //
 // Static Methods
 //
 public static fint Angle(FVector2 from, FVector2 to)
 {
     return(FMath.Acos(FMath.Clamp(FVector2.Dot(from.normalized, to.normalized), -fint.one, fint.one)) * FMath.Rad2Deg);
 }