Example #1
0
        }        //end subtract

        public static MATRIXF offsetMatrix(int offsetX, int offsetY)
        {
            MATRIXF mRes = matrix1.Clone();

            mRes.iM31 = offsetX;
            mRes.iM32 = offsetY;
            return(mRes);
        }