GetValueMatrix() public method

public GetValueMatrix ( ) : System.Matrix
return System.Matrix
Example #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);
        }