GdipRotateWorldTransform

 

 

Description

Updates the world transformation matrix of this Graphics object with the product of itself and a rotation matrix.

Syntax

GpStatus WINGDIPAPI GdipRotateWorldTransform(

    GpGraphics *graphics,

    REAL angle,

    GpMatrixOrder order

);

PowerBASIC Syntax

DECLARE FUNCTION GdipRotateWorldTransform ( _

    BYVAL graphics AS DWORD, _

    BYVAL angle AS SINGLE, _

    BYVAL order AS LONG _

) AS LONG

Parameters

 

graphics

[in] Pointer to the Graphics object.

angle

[in] Simple precision value that specifies the angle, in degrees, of rotation.

order

[in] Element of the MatrixOrder enumeration that specifies the order of multiplication. MatrixOrderPrepend specifies that the rotation matrix is on the left, and MatrixOrderAppend specifies that the rotation matrix is on the right. The default value is MatrixOrderPrepend.

 

Valid HTML 4.01 Transitional