public static F32Vec2 NormalizeFastest(F32Vec2 a) { F32 ooLen = F32.RSqrtFastest(LengthSqr(a)); return(ooLen * a); }
public static F32Vec2 RSqrtFastest(F32Vec2 a) { return(new F32Vec2(F32.RSqrtFastest(a.x), F32.RSqrtFastest(a.y))); }