GdipScaleTextureTransform

 

 

Description

Updates this texture brush's current transformation matrix with the product of itself and a scaling matrix.

Syntax

GpStatus WINGDIPAPI GdipScaleTextureTransform(

    GpTexture* brush,

    REAL sx,

    REAL sy,

    GpMatrixOrder order

);

PowerBASIC Syntax

DECLARE FUNCTION GdipScaleTextureTransform ( _

    BYVAL brush AS DWORD, _

    BYVAL sx AS SINGLE, _

    BYVAL sy AS SINGLE, _

    BYVAL order AS LONG _

) AS LONG

Parameters

 

brush

[in] Pointer to the TextureBrush object.

sx

[in] Single precision value that specifies the amount to scale in the x direction.

sy

[in] Single precision value that specifies the amount to scale in the y direction.

order

[in] Element of the MatrixOrder enumeration that specifies the order of the 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