예제 #1
0
 private static bool RightOn(FVector2 a, FVector2 b, FVector2 c)
 {
     return(MathUtils.Area(ref a, ref b, ref c) <= 0);
 }
예제 #2
0
 private static bool Left(FVector2 a, FVector2 b, FVector2 c)
 {
     return(MathUtils.Area(ref a, ref b, ref c) > 0);
 }