EWindowsDrawAdapter::FilledPolygon

Fills a polygon.

Namespace: Euresys::Open_eVision

[C++]

void FilledPolygon(
   const std::vector<EPoint>& points,
   EPen pen,
   EBrush brush
)

void FilledPolygon(
   const std::vector<EPoint>& points,
   EPen pen
)

void FilledPolygon(
   const std::vector<EPoint>& points
)

Parameters

points

Points of the polygon

pen

Optional pen to use for drawing the contour of the polygon

brush

Optional pen to use for drawing the inside of the polygon

EWindowsDrawAdapter.FilledPolygon

Fills a polygon.

Namespace: Euresys.Open_eVision

[C#]

void FilledPolygon(
   EPoint[] points,
   EPen pen,
   EBrush brush
)

void FilledPolygon(
   EPoint[] points,
   EPen pen
)

void FilledPolygon(
   EPoint[] points
)

Parameters

points

Points of the polygon

pen

Optional pen to use for drawing the contour of the polygon

brush

Optional pen to use for drawing the inside of the polygon

EWindowsDrawAdapter.FilledPolygon

Fills a polygon.

Module: open_evision

[Python]

FilledPolygon(
    points: list[EPoint]
    pen: EPen
    brush: EBrush
) -> None

FilledPolygon(
    points: list[EPoint]
    pen: EPen
) -> None

FilledPolygon(
    points: list[EPoint]
) -> None

Parameters

points

Points of the polygon

pen

Optional pen to use for drawing the contour of the polygon

brush

Optional pen to use for drawing the inside of the polygon