예제 #1
0
 public static F32Vec2 Min(F32Vec2 a, F32Vec2 b)
 {
     return(new F32Vec2(F32.Min(a.x, b.x), F32.Min(a.y, b.y)));
 }