Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 1.13 KB

File metadata and controls

60 lines (41 loc) · 1.13 KB

Home

Function name : GdipShearMatrix

Group: GDI+ Matrix - Library: gdiplus


Updates this matrix with the product of itself and a shearing matrix.


Code examples:

Custom GDI+ class
GDI+: Using Scale and Shear transformations

Declaration:

GpStatus WINGDIPAPI GdipShearMatrix(
	GpMatrix *matrix,
	REAL shearX,
	REAL shearY,
	GpMatrixOrder order
)
  

FoxPro declaration:

DECLARE INTEGER GdipShearMatrix IN gdiplus;
	INTEGER matrix,;
	SINGLE  shearX,;
	SINGLE  shearY,;
	INTEGER ord
  

Parameters:

matrix [in] Handle to a Matrix object.

shearX [in] Real number that specifies the horizontal shear factor.

shearY [in] Real number that specifies the vertical shear factor.

order [in] Element of the MatrixOrder enumeration that specifies the order of the multiplication.


Return value:

Returns GpStatus value, 0 means success.