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 or gradient or pattern
Settable
Question mark

How to fill the path.

When setting a fill, the default stroke disappears. To create a rectangle with both fill and stroke, you have to configure both.

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

Default: none

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

How to stroke the path. This can be:

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
bool
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: