TypstDocumentation

pathElement
Question mark

A path through a list of points, connected by Bezier curves.

Example

#path(
  fill: blue.lighten(80%),
  stroke: blue,
  closed: true,
  (0pt, 50pt),
  (100%, 50pt),
  ((50%, 0pt), (40pt, 0pt)),
)
Preview

Parameters
Question mark

fill
none or color
Settable
Question mark

How to fill the path. See the rectangle's documentation for more details.

Currently all paths are filled according to the non-zero winding rule.

Default: none

stroke
none or auto or length or color or dictionary or stroke
Settable
Question mark

How to stroke the path. This can be:

See the line's documentation for more details. Can be set to none to disable the stroke or to auto for a stroke of 1pt black if and if only if no fill is given.

Default: auto

closed
boolean
Settable
Question mark

Whether to close this path with one last bezier curve. This curve will takes into account the adjacent control points. If you want to close with a straight line, simply add one last point that's the same as the start point.

Default: false

vertices
array
RequiredPositional
Question mark
Variadic
Question mark

The vertices of the path.

Each vertex can be defined in 3 ways: