public static F32Vec2 PowFastest(F32Vec2 a, F32Vec2 b) { return(new F32Vec2(F32.PowFastest(a.x, b.x), F32.PowFastest(a.y, b.y))); }