├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── render-rmarkdown.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── borrowed_gridtext.R ├── coord_curvedpolar.R ├── data.R ├── geom_labelpath.R ├── geom_textabline.R ├── geom_textcontour.R ├── geom_textcurve.R ├── geom_textdensity.R ├── geom_textdensity2d.R ├── geom_texthline.R ├── geom_textpath.R ├── geom_textsegment.R ├── geom_textsf.R ├── geom_textsmooth.R ├── geom_textvline.R ├── geomtextpath-package.R ├── grob_labelpath.R ├── grob_textpath.R ├── guide_axis_textpath.R ├── onload.R ├── path_handling.R ├── scales.R ├── sf_helpers.R ├── smoothing.R ├── text_helpers.R ├── text_params.R ├── text_placement.R ├── trig_helpers.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── cran_checklist.md ├── data └── waterways.rda ├── geomtextpath.Rproj ├── inst ├── font │ ├── Open_Sans_Regular.ttf │ └── Web_Hebrew_Monospace_Regular.ttf ├── scripts │ ├── generate_logo.R │ └── generate_sf.R └── sf │ └── rivers.RDS ├── man ├── GeomTextpath.Rd ├── coord_curvedpolar.Rd ├── figures │ ├── README-coord_curvedpolar-1.png │ ├── README-coord_curvedpolar2-1.png │ ├── README-coords_cartesian-1.png │ ├── README-coords_polar-1.png │ ├── README-curve-1.png │ ├── README-density2d-1.png │ ├── README-density_demo-1.png │ ├── README-density_vjust-1.png │ ├── README-fancy_cartesian-1.png │ ├── README-fancy_polar-1.png │ ├── README-geom_textsf-1.png │ ├── README-intro_label-1.png │ ├── README-plotmath-1.png │ ├── README-pointlike-1.png │ ├── README-polar_compare-1.png │ ├── README-richtext-1.png │ ├── README-smooth-1.png │ ├── README-smooth2-1.png │ ├── README-spiral-1.png │ ├── README-stat_function-1.png │ ├── README-textline_demo-1.png │ ├── README-vline-1.png │ ├── README-volcano-1.png │ └── logo.png ├── geom_textabline.Rd ├── geom_textcontour.Rd ├── geom_textcurve.Rd ├── geom_textdensity.Rd ├── geom_textdensity2d.Rd ├── geom_textpath.Rd ├── geom_textsegment.Rd ├── geom_textsf.Rd ├── geom_textsmooth.Rd ├── geomtextpath-package.Rd ├── guide_axis_textpath.Rd ├── scale_hjust_discrete.Rd ├── sibling_layers.Rd ├── static_text_params.Rd ├── textpathGrob.Rd └── waterways.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── tests ├── testthat.R └── testthat │ ├── .gitignore │ ├── _snaps │ ├── coord_curvedpolar.md │ └── utils.md │ ├── test-coord_curvedpolar.R │ ├── test-geom_labelpath.R │ ├── test-geom_textcontour.R │ ├── test-geom_textcurve.R │ ├── test-geom_textpath.R │ ├── test-geom_textsegment.R │ ├── test-geometry_helpers.R │ ├── test-grob_labelpath.R │ ├── test-guide_axis_textpath.R │ ├── test-scales.R │ ├── test-sf.R │ ├── test-text_helpers.R │ ├── test-textpathgrob.R │ ├── test-trig_helpers.R │ └── test-utils.R └── vignettes ├── .gitignore ├── aesthetics.Rmd ├── curved_polar.Rmd └── geomtextpath.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/render-rmarkdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/.github/workflows/render-rmarkdown.yaml -------------------------------------------------------------------------------- /.github/workflows/rhub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/.github/workflows/rhub.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/borrowed_gridtext.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/borrowed_gridtext.R -------------------------------------------------------------------------------- /R/coord_curvedpolar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/coord_curvedpolar.R -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/data.R -------------------------------------------------------------------------------- /R/geom_labelpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_labelpath.R -------------------------------------------------------------------------------- /R/geom_textabline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textabline.R -------------------------------------------------------------------------------- /R/geom_textcontour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textcontour.R -------------------------------------------------------------------------------- /R/geom_textcurve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textcurve.R -------------------------------------------------------------------------------- /R/geom_textdensity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textdensity.R -------------------------------------------------------------------------------- /R/geom_textdensity2d.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textdensity2d.R -------------------------------------------------------------------------------- /R/geom_texthline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_texthline.R -------------------------------------------------------------------------------- /R/geom_textpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textpath.R -------------------------------------------------------------------------------- /R/geom_textsegment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textsegment.R -------------------------------------------------------------------------------- /R/geom_textsf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textsf.R -------------------------------------------------------------------------------- /R/geom_textsmooth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textsmooth.R -------------------------------------------------------------------------------- /R/geom_textvline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geom_textvline.R -------------------------------------------------------------------------------- /R/geomtextpath-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/geomtextpath-package.R -------------------------------------------------------------------------------- /R/grob_labelpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/grob_labelpath.R -------------------------------------------------------------------------------- /R/grob_textpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/grob_textpath.R -------------------------------------------------------------------------------- /R/guide_axis_textpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/guide_axis_textpath.R -------------------------------------------------------------------------------- /R/onload.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/onload.R -------------------------------------------------------------------------------- /R/path_handling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/path_handling.R -------------------------------------------------------------------------------- /R/scales.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/scales.R -------------------------------------------------------------------------------- /R/sf_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/sf_helpers.R -------------------------------------------------------------------------------- /R/smoothing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/smoothing.R -------------------------------------------------------------------------------- /R/text_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/text_helpers.R -------------------------------------------------------------------------------- /R/text_params.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/text_params.R -------------------------------------------------------------------------------- /R/text_placement.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/text_placement.R -------------------------------------------------------------------------------- /R/trig_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/trig_helpers.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/cran-comments.md -------------------------------------------------------------------------------- /cran_checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/cran_checklist.md -------------------------------------------------------------------------------- /data/waterways.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/data/waterways.rda -------------------------------------------------------------------------------- /geomtextpath.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/geomtextpath.Rproj -------------------------------------------------------------------------------- /inst/font/Open_Sans_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/inst/font/Open_Sans_Regular.ttf -------------------------------------------------------------------------------- /inst/font/Web_Hebrew_Monospace_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/inst/font/Web_Hebrew_Monospace_Regular.ttf -------------------------------------------------------------------------------- /inst/scripts/generate_logo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/inst/scripts/generate_logo.R -------------------------------------------------------------------------------- /inst/scripts/generate_sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/inst/scripts/generate_sf.R -------------------------------------------------------------------------------- /inst/sf/rivers.RDS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/inst/sf/rivers.RDS -------------------------------------------------------------------------------- /man/GeomTextpath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/GeomTextpath.Rd -------------------------------------------------------------------------------- /man/coord_curvedpolar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/coord_curvedpolar.Rd -------------------------------------------------------------------------------- /man/figures/README-coord_curvedpolar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-coord_curvedpolar-1.png -------------------------------------------------------------------------------- /man/figures/README-coord_curvedpolar2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-coord_curvedpolar2-1.png -------------------------------------------------------------------------------- /man/figures/README-coords_cartesian-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-coords_cartesian-1.png -------------------------------------------------------------------------------- /man/figures/README-coords_polar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-coords_polar-1.png -------------------------------------------------------------------------------- /man/figures/README-curve-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-curve-1.png -------------------------------------------------------------------------------- /man/figures/README-density2d-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-density2d-1.png -------------------------------------------------------------------------------- /man/figures/README-density_demo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-density_demo-1.png -------------------------------------------------------------------------------- /man/figures/README-density_vjust-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-density_vjust-1.png -------------------------------------------------------------------------------- /man/figures/README-fancy_cartesian-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-fancy_cartesian-1.png -------------------------------------------------------------------------------- /man/figures/README-fancy_polar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-fancy_polar-1.png -------------------------------------------------------------------------------- /man/figures/README-geom_textsf-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-geom_textsf-1.png -------------------------------------------------------------------------------- /man/figures/README-intro_label-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-intro_label-1.png -------------------------------------------------------------------------------- /man/figures/README-plotmath-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-plotmath-1.png -------------------------------------------------------------------------------- /man/figures/README-pointlike-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-pointlike-1.png -------------------------------------------------------------------------------- /man/figures/README-polar_compare-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-polar_compare-1.png -------------------------------------------------------------------------------- /man/figures/README-richtext-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-richtext-1.png -------------------------------------------------------------------------------- /man/figures/README-smooth-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-smooth-1.png -------------------------------------------------------------------------------- /man/figures/README-smooth2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-smooth2-1.png -------------------------------------------------------------------------------- /man/figures/README-spiral-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-spiral-1.png -------------------------------------------------------------------------------- /man/figures/README-stat_function-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-stat_function-1.png -------------------------------------------------------------------------------- /man/figures/README-textline_demo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-textline_demo-1.png -------------------------------------------------------------------------------- /man/figures/README-vline-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-vline-1.png -------------------------------------------------------------------------------- /man/figures/README-volcano-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/README-volcano-1.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/geom_textabline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geom_textabline.Rd -------------------------------------------------------------------------------- /man/geom_textcontour.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geom_textcontour.Rd -------------------------------------------------------------------------------- /man/geom_textcurve.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geom_textcurve.Rd -------------------------------------------------------------------------------- /man/geom_textdensity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geom_textdensity.Rd -------------------------------------------------------------------------------- /man/geom_textdensity2d.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geom_textdensity2d.Rd -------------------------------------------------------------------------------- /man/geom_textpath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geom_textpath.Rd -------------------------------------------------------------------------------- /man/geom_textsegment.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geom_textsegment.Rd -------------------------------------------------------------------------------- /man/geom_textsf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geom_textsf.Rd -------------------------------------------------------------------------------- /man/geom_textsmooth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geom_textsmooth.Rd -------------------------------------------------------------------------------- /man/geomtextpath-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/geomtextpath-package.Rd -------------------------------------------------------------------------------- /man/guide_axis_textpath.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/guide_axis_textpath.Rd -------------------------------------------------------------------------------- /man/scale_hjust_discrete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/scale_hjust_discrete.Rd -------------------------------------------------------------------------------- /man/sibling_layers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/sibling_layers.Rd -------------------------------------------------------------------------------- /man/static_text_params.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/static_text_params.Rd -------------------------------------------------------------------------------- /man/textpathGrob.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/textpathGrob.Rd -------------------------------------------------------------------------------- /man/waterways.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/man/waterways.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/.gitignore: -------------------------------------------------------------------------------- 1 | Rplots.pdf 2 | -------------------------------------------------------------------------------- /tests/testthat/_snaps/coord_curvedpolar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/_snaps/coord_curvedpolar.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/_snaps/utils.md -------------------------------------------------------------------------------- /tests/testthat/test-coord_curvedpolar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-coord_curvedpolar.R -------------------------------------------------------------------------------- /tests/testthat/test-geom_labelpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-geom_labelpath.R -------------------------------------------------------------------------------- /tests/testthat/test-geom_textcontour.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-geom_textcontour.R -------------------------------------------------------------------------------- /tests/testthat/test-geom_textcurve.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-geom_textcurve.R -------------------------------------------------------------------------------- /tests/testthat/test-geom_textpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-geom_textpath.R -------------------------------------------------------------------------------- /tests/testthat/test-geom_textsegment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-geom_textsegment.R -------------------------------------------------------------------------------- /tests/testthat/test-geometry_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-geometry_helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-grob_labelpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-grob_labelpath.R -------------------------------------------------------------------------------- /tests/testthat/test-guide_axis_textpath.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-guide_axis_textpath.R -------------------------------------------------------------------------------- /tests/testthat/test-scales.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-scales.R -------------------------------------------------------------------------------- /tests/testthat/test-sf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-sf.R -------------------------------------------------------------------------------- /tests/testthat/test-text_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-text_helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-textpathgrob.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-textpathgrob.R -------------------------------------------------------------------------------- /tests/testthat/test-trig_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-trig_helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/aesthetics.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/vignettes/aesthetics.Rmd -------------------------------------------------------------------------------- /vignettes/curved_polar.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/vignettes/curved_polar.Rmd -------------------------------------------------------------------------------- /vignettes/geomtextpath.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllanCameron/geomtextpath/HEAD/vignettes/geomtextpath.Rmd --------------------------------------------------------------------------------