コード例 #1
0
ファイル: F32Vec2.cs プロジェクト: suzuke/FixPointCS
 public static F32Vec2 FromInt(int x, int y)
 {
     return(new F32Vec2(F32.FromInt(x), F32.FromInt(y)));
 }