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