GdipWindingModeOutline

 

 

Description

Transforms and flattens this path, and then converts this path's data points so that they represent only the outline of the path.

Syntax

GpStatus WINGDIPAPI GdipWindingModeOutline(

    GpPath *path,

    GpMatrix *matrix,

    REAL flatness

);

PowerBASIC Syntax

DECLARE FUNCTION GdipWindingModeOutline ( _

    BYVAL path AS DWORD, _

    BYVAL matrix AS DWORD, _

    BYVAL flatness AS SINGLE _

) AS LONG

Parameters

 

path

[in] Pointer to a GraphicsPath object.

matrix

[in] Pointer to a Matrix object that specifies the transformation. If this parameter is NULL, no transformation is applied. The default value is NULL.

flatness

[in] Simple prevision value that specifies the maximum error between the path and its flattened approximation. Reducing the flatness increases the number of line segments in the approximation.. The default value is FlatnessDefault.

 

Valid HTML 4.01 Transitional