PgPath

data class PgPath(val closed: Boolean, val points: List<PgPoint>)

Represents a geometric path, consisting of a sequence of connected points.

Constructors

Link copied to clipboard
constructor(closed: Boolean, points: List<PgPoint>)

Properties

Link copied to clipboard

Indicates whether the path is closed (forms a polygon) or open.

Link copied to clipboard

The list of points defining the path.