GetValueMatrix() 공개 메소드

public GetValueMatrix ( ) : System.Matrix
리턴 System.Matrix
예제 #1
0
        /// <summary>
        /// Gets the value of the parameter as a matrix.
        /// </summary>
        /// <returns>
        /// The matrix value
        /// </returns>
        public Matrix GetValueMatrix()
        {
            XNA.Matrix xm = _param.GetValueMatrix();
            Matrix     m;

            XNAHelper.ConvertMatrix(ref xm, out m);
            return(m);
        }