示例#1
0
		/// <summary>
		/// Negates the values of a matrix.
		/// </summary>
		/// <param name="m">A <see cref="MatrixF"/> instance.</param>
		/// <returns>A new <see cref="MatrixF"/> instance containing the result.</returns>
		public static MatrixF operator-(MatrixF m)
		{
			return MatrixF.Negate(m);
		}