Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 976 Bytes

File metadata and controls

53 lines (36 loc) · 976 Bytes

Home

Function name : GdipRotateMatrix

Group: GDI+ Matrix - Library: gdiplus


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


Code examples:

Custom GDI+ class

Declaration:

GpStatus WINGDIPAPI GdipRotateMatrix(
	GpMatrix *matrix,
	REAL angle,
	GpMatrixOrder order
)
  

FoxPro declaration:

DECLARE INTEGER GdipRotateMatrix IN gdiplus;
	INTEGER matrix,;
	SINGLE angle,;
	INTEGER ord  

Parameters:

matrix [in] Handle to the Matrix object.

angle [in] Real number that specifies the angle, in degrees, of rotation.

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


Return value:

Returns GpStatus value, 0 means success.