コード例 #1
0
ファイル: Matrix3.cs プロジェクト: MitchellRB/Tank-Game
        public void Translate(float x, float y)
        {
            Matrix3 m = new Matrix3();

            m.SetTranslate(x, y);
            Set(this * m);
        }