Jump to content

POLYGON

From EDM2
Revision as of 17:44, 8 February 2020 by Martini (talk | contribs) (Created page with "Polygon structure. ==Example Code== <PRE> typedef struct _POLYGON { ULONG ulPoints; Number of points in array.: PPOINTL aPointl; /* Array of points. *...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Polygon structure.

Example Code

typedef struct _POLYGON {
  ULONG       ulPoints;  /*  Number of points in array. */
  PPOINTL     aPointl;   /*  Array of points. */
} POLYGON;

typedef POLYGON *PPOLYGON;