mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
90 lines
1.8 KiB
Typst
90 lines
1.8 KiB
Typst
// Test paths.
|
|
|
|
--- path ---
|
|
#set page(height: 300pt, width: 200pt)
|
|
#table(
|
|
columns: (1fr, 1fr),
|
|
rows: (1fr, 1fr, 1fr),
|
|
align: center + horizon,
|
|
path(
|
|
fill: red,
|
|
closed: true,
|
|
((0%, 0%), (4%, -4%)),
|
|
((50%, 50%), (4%, -4%)),
|
|
((0%, 50%), (4%, 4%)),
|
|
((50%, 0%), (4%, 4%)),
|
|
),
|
|
path(
|
|
fill: purple,
|
|
stroke: 1pt,
|
|
(0pt, 0pt),
|
|
(30pt, 30pt),
|
|
(0pt, 30pt),
|
|
(30pt, 0pt),
|
|
),
|
|
path(
|
|
fill: blue,
|
|
stroke: 1pt,
|
|
closed: true,
|
|
((30%, 0%), (35%, 30%), (-20%, 0%)),
|
|
((30%, 60%), (-20%, 0%), (0%, 0%)),
|
|
((50%, 30%), (60%, -30%), (60%, 0%)),
|
|
),
|
|
path(
|
|
stroke: 5pt,
|
|
closed: true,
|
|
(0pt, 30pt),
|
|
(30pt, 30pt),
|
|
(15pt, 0pt),
|
|
),
|
|
path(
|
|
fill: red,
|
|
fill-rule: "non-zero",
|
|
closed: true,
|
|
(25pt, 0pt),
|
|
(10pt, 50pt),
|
|
(50pt, 20pt),
|
|
(0pt, 20pt),
|
|
(40pt, 50pt),
|
|
),
|
|
path(
|
|
fill: red,
|
|
fill-rule: "even-odd",
|
|
closed: true,
|
|
(25pt, 0pt),
|
|
(10pt, 50pt),
|
|
(50pt, 20pt),
|
|
(0pt, 20pt),
|
|
(40pt, 50pt),
|
|
),
|
|
)
|
|
|
|
--- path-bad-vertex ---
|
|
// Error: 7-9 path vertex must have 1, 2, or 3 points
|
|
#path(())
|
|
|
|
--- path-bad-point-count ---
|
|
// Error: 7-47 path vertex must have 1, 2, or 3 points
|
|
#path(((0%, 0%), (0%, 0%), (0%, 0%), (0%, 0%)))
|
|
|
|
--- path-bad-point-array ---
|
|
// Error: 7-31 point array must contain exactly two entries
|
|
#path(((0%, 0%), (0%, 0%, 0%)))
|
|
|
|
--- path-infinite-length ---
|
|
// Error: 2-42 cannot create path with infinite length
|
|
#path((0pt, 0pt), (float.inf * 1pt, 0pt))
|
|
|
|
--- issue-path-in-sized-container ---
|
|
// Paths used to implement `LayoutMultiple` rather than `LayoutSingle` without
|
|
// fulfilling the necessary contract of respecting region expansion.
|
|
#block(
|
|
fill: aqua,
|
|
width: 20pt,
|
|
height: 15pt,
|
|
path(
|
|
(0pt, 0pt),
|
|
(10pt, 10pt),
|
|
),
|
|
)
|