コード例 #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
ファイル: F32Vec3.cs プロジェクト: XMunkki/FixPointCS
 public static F32Vec3 FromInt(int x, int y, int z)
 {
     return(new F32Vec3(F32.FromInt(x), F32.FromInt(y), F32.FromInt(z)));
 }