public static F32Vec4 FromInt(int x, int y, int z, int w) { return(new F32Vec4(F32.FromInt(x), F32.FromInt(y), F32.FromInt(z), F32.FromInt(w))); }
public static F32Vec3 FromInt(int x, int y, int z) { return(new F32Vec3(F32.FromInt(x), F32.FromInt(y), F32.FromInt(z))); }