├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitmodules ├── LICENSE ├── README.md ├── doc ├── example.typ ├── style.typ └── util.typ ├── gallery ├── .gitkeep ├── barchart.png ├── barchart.typ ├── bending.png ├── bending.typ ├── chevron.png ├── chevron.typ ├── circular.png ├── circular.typ ├── cycles.png ├── cycles.typ ├── line.png ├── line.typ ├── piechart.png ├── piechart.typ ├── process.png ├── process.typ ├── pyramid.png └── pyramid.typ ├── justfile ├── manual.pdf ├── manual.typ ├── requirements.json ├── src ├── axes.typ ├── cetz.typ ├── chart.typ ├── chart │ ├── barchart.typ │ ├── barcol-common.typ │ ├── boxwhisker.typ │ ├── columnchart.typ │ ├── piechart.typ │ └── pyramid.typ ├── lib.typ ├── plot.typ ├── plot │ ├── annotation.typ │ ├── bar.typ │ ├── boxwhisker.typ │ ├── contour.typ │ ├── errorbar.typ │ ├── formats.typ │ ├── legend.typ │ ├── line.typ │ ├── mark.typ │ ├── sample.typ │ ├── util.typ │ └── violin.typ ├── smartart.typ └── smartart │ ├── common.typ │ ├── cycle.typ │ └── process.typ ├── tests ├── .gitignore ├── axes │ ├── log-mode │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── self │ │ ├── ref │ │ └── 1.png │ │ └── test.typ ├── chart │ ├── boxwhisker │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── piechart │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── pyramid │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── self │ │ ├── ref │ │ └── 1.png │ │ └── test.typ ├── helper.typ ├── plot │ ├── annotation │ │ ├── ref.png │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── bar │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── boxwhisker │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── broken-axes │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── contour │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── equal-axis │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── format │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── grid │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── hvline │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── legend │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── line │ │ ├── between │ │ │ ├── ref │ │ │ │ └── 1.png │ │ │ └── test.typ │ │ ├── fill │ │ │ ├── ref │ │ │ │ └── 1.png │ │ │ └── test.typ │ │ ├── line-type │ │ │ ├── ref │ │ │ │ └── 1.png │ │ │ └── test.typ │ │ ├── linearization │ │ │ ├── ref.png │ │ │ ├── ref │ │ │ │ └── 1.png │ │ │ └── test.typ │ │ ├── mark │ │ │ ├── ref │ │ │ │ └── 1.png │ │ │ └── test.typ │ │ └── spline │ │ │ ├── ref.png │ │ │ ├── ref │ │ │ └── 1.png │ │ │ └── test.typ │ ├── marks │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── mirror-axes │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── parametric │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── ref.png │ ├── reverse-axis │ │ ├── ref.png │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── sample │ │ └── sample.typ │ ├── self │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ ├── vertical │ │ ├── ref │ │ │ └── 1.png │ │ └── test.typ │ └── violin │ │ ├── ref │ │ └── 1.png │ │ └── test.typ └── smartart │ └── cycle │ ├── .gitignore │ ├── ref │ ├── 1.png │ ├── 2.png │ └── 3.png │ └── test.typ └── typst.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/README.md -------------------------------------------------------------------------------- /doc/example.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/doc/example.typ -------------------------------------------------------------------------------- /doc/style.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/doc/style.typ -------------------------------------------------------------------------------- /doc/util.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/doc/util.typ -------------------------------------------------------------------------------- /gallery/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gallery/barchart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/barchart.png -------------------------------------------------------------------------------- /gallery/barchart.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/barchart.typ -------------------------------------------------------------------------------- /gallery/bending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/bending.png -------------------------------------------------------------------------------- /gallery/bending.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/bending.typ -------------------------------------------------------------------------------- /gallery/chevron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/chevron.png -------------------------------------------------------------------------------- /gallery/chevron.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/chevron.typ -------------------------------------------------------------------------------- /gallery/circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/circular.png -------------------------------------------------------------------------------- /gallery/circular.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/circular.typ -------------------------------------------------------------------------------- /gallery/cycles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/cycles.png -------------------------------------------------------------------------------- /gallery/cycles.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/cycles.typ -------------------------------------------------------------------------------- /gallery/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/line.png -------------------------------------------------------------------------------- /gallery/line.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/line.typ -------------------------------------------------------------------------------- /gallery/piechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/piechart.png -------------------------------------------------------------------------------- /gallery/piechart.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/piechart.typ -------------------------------------------------------------------------------- /gallery/process.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/process.png -------------------------------------------------------------------------------- /gallery/process.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/process.typ -------------------------------------------------------------------------------- /gallery/pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/pyramid.png -------------------------------------------------------------------------------- /gallery/pyramid.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/gallery/pyramid.typ -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/justfile -------------------------------------------------------------------------------- /manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/manual.pdf -------------------------------------------------------------------------------- /manual.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/manual.typ -------------------------------------------------------------------------------- /requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/requirements.json -------------------------------------------------------------------------------- /src/axes.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/axes.typ -------------------------------------------------------------------------------- /src/cetz.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/cetz.typ -------------------------------------------------------------------------------- /src/chart.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/chart.typ -------------------------------------------------------------------------------- /src/chart/barchart.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/chart/barchart.typ -------------------------------------------------------------------------------- /src/chart/barcol-common.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/chart/barcol-common.typ -------------------------------------------------------------------------------- /src/chart/boxwhisker.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/chart/boxwhisker.typ -------------------------------------------------------------------------------- /src/chart/columnchart.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/chart/columnchart.typ -------------------------------------------------------------------------------- /src/chart/piechart.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/chart/piechart.typ -------------------------------------------------------------------------------- /src/chart/pyramid.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/chart/pyramid.typ -------------------------------------------------------------------------------- /src/lib.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/lib.typ -------------------------------------------------------------------------------- /src/plot.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot.typ -------------------------------------------------------------------------------- /src/plot/annotation.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/annotation.typ -------------------------------------------------------------------------------- /src/plot/bar.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/bar.typ -------------------------------------------------------------------------------- /src/plot/boxwhisker.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/boxwhisker.typ -------------------------------------------------------------------------------- /src/plot/contour.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/contour.typ -------------------------------------------------------------------------------- /src/plot/errorbar.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/errorbar.typ -------------------------------------------------------------------------------- /src/plot/formats.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/formats.typ -------------------------------------------------------------------------------- /src/plot/legend.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/legend.typ -------------------------------------------------------------------------------- /src/plot/line.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/line.typ -------------------------------------------------------------------------------- /src/plot/mark.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/mark.typ -------------------------------------------------------------------------------- /src/plot/sample.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/sample.typ -------------------------------------------------------------------------------- /src/plot/util.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/util.typ -------------------------------------------------------------------------------- /src/plot/violin.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/plot/violin.typ -------------------------------------------------------------------------------- /src/smartart.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/smartart.typ -------------------------------------------------------------------------------- /src/smartart/common.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/smartart/common.typ -------------------------------------------------------------------------------- /src/smartart/cycle.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/smartart/cycle.typ -------------------------------------------------------------------------------- /src/smartart/process.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/src/smartart/process.typ -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/axes/log-mode/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/axes/log-mode/ref/1.png -------------------------------------------------------------------------------- /tests/axes/log-mode/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/axes/log-mode/test.typ -------------------------------------------------------------------------------- /tests/axes/self/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/axes/self/ref/1.png -------------------------------------------------------------------------------- /tests/axes/self/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/axes/self/test.typ -------------------------------------------------------------------------------- /tests/chart/boxwhisker/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/chart/boxwhisker/ref/1.png -------------------------------------------------------------------------------- /tests/chart/boxwhisker/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/chart/boxwhisker/test.typ -------------------------------------------------------------------------------- /tests/chart/piechart/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/chart/piechart/ref/1.png -------------------------------------------------------------------------------- /tests/chart/piechart/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/chart/piechart/test.typ -------------------------------------------------------------------------------- /tests/chart/pyramid/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/chart/pyramid/ref/1.png -------------------------------------------------------------------------------- /tests/chart/pyramid/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/chart/pyramid/test.typ -------------------------------------------------------------------------------- /tests/chart/self/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/chart/self/ref/1.png -------------------------------------------------------------------------------- /tests/chart/self/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/chart/self/test.typ -------------------------------------------------------------------------------- /tests/helper.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/helper.typ -------------------------------------------------------------------------------- /tests/plot/annotation/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/annotation/ref.png -------------------------------------------------------------------------------- /tests/plot/annotation/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/annotation/ref/1.png -------------------------------------------------------------------------------- /tests/plot/annotation/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/annotation/test.typ -------------------------------------------------------------------------------- /tests/plot/bar/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/bar/ref/1.png -------------------------------------------------------------------------------- /tests/plot/bar/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/bar/test.typ -------------------------------------------------------------------------------- /tests/plot/boxwhisker/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/boxwhisker/ref/1.png -------------------------------------------------------------------------------- /tests/plot/boxwhisker/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/boxwhisker/test.typ -------------------------------------------------------------------------------- /tests/plot/broken-axes/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/broken-axes/ref/1.png -------------------------------------------------------------------------------- /tests/plot/broken-axes/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/broken-axes/test.typ -------------------------------------------------------------------------------- /tests/plot/contour/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/contour/ref/1.png -------------------------------------------------------------------------------- /tests/plot/contour/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/contour/test.typ -------------------------------------------------------------------------------- /tests/plot/equal-axis/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/equal-axis/ref/1.png -------------------------------------------------------------------------------- /tests/plot/equal-axis/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/equal-axis/test.typ -------------------------------------------------------------------------------- /tests/plot/format/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/format/ref/1.png -------------------------------------------------------------------------------- /tests/plot/format/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/format/test.typ -------------------------------------------------------------------------------- /tests/plot/grid/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/grid/ref/1.png -------------------------------------------------------------------------------- /tests/plot/grid/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/grid/test.typ -------------------------------------------------------------------------------- /tests/plot/hvline/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/hvline/ref/1.png -------------------------------------------------------------------------------- /tests/plot/hvline/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/hvline/test.typ -------------------------------------------------------------------------------- /tests/plot/legend/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/legend/ref/1.png -------------------------------------------------------------------------------- /tests/plot/legend/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/legend/test.typ -------------------------------------------------------------------------------- /tests/plot/line/between/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/between/ref/1.png -------------------------------------------------------------------------------- /tests/plot/line/between/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/between/test.typ -------------------------------------------------------------------------------- /tests/plot/line/fill/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/fill/ref/1.png -------------------------------------------------------------------------------- /tests/plot/line/fill/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/fill/test.typ -------------------------------------------------------------------------------- /tests/plot/line/line-type/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/line-type/ref/1.png -------------------------------------------------------------------------------- /tests/plot/line/line-type/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/line-type/test.typ -------------------------------------------------------------------------------- /tests/plot/line/linearization/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/linearization/ref.png -------------------------------------------------------------------------------- /tests/plot/line/linearization/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/linearization/ref/1.png -------------------------------------------------------------------------------- /tests/plot/line/linearization/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/linearization/test.typ -------------------------------------------------------------------------------- /tests/plot/line/mark/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/mark/ref/1.png -------------------------------------------------------------------------------- /tests/plot/line/mark/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/mark/test.typ -------------------------------------------------------------------------------- /tests/plot/line/spline/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/spline/ref.png -------------------------------------------------------------------------------- /tests/plot/line/spline/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/spline/ref/1.png -------------------------------------------------------------------------------- /tests/plot/line/spline/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/line/spline/test.typ -------------------------------------------------------------------------------- /tests/plot/marks/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/marks/ref/1.png -------------------------------------------------------------------------------- /tests/plot/marks/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/marks/test.typ -------------------------------------------------------------------------------- /tests/plot/mirror-axes/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/mirror-axes/ref/1.png -------------------------------------------------------------------------------- /tests/plot/mirror-axes/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/mirror-axes/test.typ -------------------------------------------------------------------------------- /tests/plot/parametric/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/parametric/ref/1.png -------------------------------------------------------------------------------- /tests/plot/parametric/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/parametric/test.typ -------------------------------------------------------------------------------- /tests/plot/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/ref.png -------------------------------------------------------------------------------- /tests/plot/reverse-axis/ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/reverse-axis/ref.png -------------------------------------------------------------------------------- /tests/plot/reverse-axis/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/reverse-axis/ref/1.png -------------------------------------------------------------------------------- /tests/plot/reverse-axis/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/reverse-axis/test.typ -------------------------------------------------------------------------------- /tests/plot/sample/sample.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/sample/sample.typ -------------------------------------------------------------------------------- /tests/plot/self/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/self/ref/1.png -------------------------------------------------------------------------------- /tests/plot/self/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/self/test.typ -------------------------------------------------------------------------------- /tests/plot/vertical/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/vertical/ref/1.png -------------------------------------------------------------------------------- /tests/plot/vertical/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/vertical/test.typ -------------------------------------------------------------------------------- /tests/plot/violin/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/violin/ref/1.png -------------------------------------------------------------------------------- /tests/plot/violin/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/plot/violin/test.typ -------------------------------------------------------------------------------- /tests/smartart/cycle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/smartart/cycle/.gitignore -------------------------------------------------------------------------------- /tests/smartart/cycle/ref/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/smartart/cycle/ref/1.png -------------------------------------------------------------------------------- /tests/smartart/cycle/ref/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/smartart/cycle/ref/2.png -------------------------------------------------------------------------------- /tests/smartart/cycle/ref/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/smartart/cycle/ref/3.png -------------------------------------------------------------------------------- /tests/smartart/cycle/test.typ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/tests/smartart/cycle/test.typ -------------------------------------------------------------------------------- /typst.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cetz-package/cetz-plot/HEAD/typst.toml --------------------------------------------------------------------------------