예제 #1
0
 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)));
 }
예제 #2
0
 public static F32Vec3 FromInt(int x, int y, int z)
 {
     return(new F32Vec3(F32.FromInt(x), F32.FromInt(y), F32.FromInt(z)));
 }