/// <summary> /// Applies the specified shearing operation to the transformation matrix of this object /// in the specified order. /// </summary> public void ShearTransform(double shearX, double shearY, XMatrixOrder order) { XMatrix matrix = new XMatrix(); //XMatrix.Identity; matrix.ShearPrepend(shearX, shearY); AddTransform(matrix, order); }