PolylineWu
PolylineWu
Draws a polyline using Wu’s anti-aliasing algorithm.
void PolylineWu(
int& x[], // array of X coordinates
int& y[], // array of Y coordinates
const uint clr, // color
const uint style=UINT_MAX // line style
);Parameters
- x[]
[in] Array of X coordinates of a polyline.
- y[]
[in] Array of Y coordinates of a polyline.
- clr
[in] Color in ARGB format.
- style=UINT_MAX
[in] Line style is one of ENUM_LINE_STYLE enumeration’s values or a custom value.
Last updated on