Esempio n. 1
0
 public static SVector2 CreateMax(SVector2 a, SVector2 b)
 {
     return(new SVector2(Math.Max(a.X, b.X), Math.Max(a.Y, b.Y)));
 }