# Polygon

The `Polygon` interface represents a polygon defined by multiple points.

```typescript
interface Polygon {
    points: Array<Point>;
}
```

## points

An array of [`Point`](https://www.dynamsoft.com/capture-vision/docs/web/programming/javascript/api-reference/core/basic-structures/point.md) objects defining the vertices of the polygon.
