R bindings for rpic — a Rust reimplementation of Brian Kernighan’s pic picture-drawing language. You describe a diagram by walking around a plane dropping primitives; rpic renders it to SVG / PNG / PDF, pure Rust, no system dependencies (no troff, no LaTeX, no ImageMagick):
circuit_macros
(circuits = TRUE or copy "circuits" in the
source);texlabels = TRUE, KaTeX-grade via a pure-Rust
engine);The language, its extensions and a live playground are documented at rpic.dev; this package wraps the same engine via extendr.
# install.packages("remotes")
remotes::install_github("milkway/rpic-r")Building from source requires a Rust
toolchain (cargo/rustc). Release tarballs
with vendored Rust dependencies (no network needed at build time) are
attached to each GitHub
release.
library(rpic)
rpic_svg('box "input"; arrow; box "process" fill 0.9; arrow; ellipse "output"')
# circuit library — two-terminal elements take two named points:
rpic_png('A:(0,0); B:(2,0)
resistor(A,B)', "circuit.png", scale = 2, circuits = TRUE)
# TeX math labels, typeset natively:
rpic_svg('box "$-\\frac{T}{2}$" fit', texlabels = TRUE)
# the full bundle: svg + animation manifest + diagnostics + warnings
jsonlite::fromJSON(rpic_manifest('box; animate last box with "pop"'))Compile failures raise a classed rpic_error condition
carrying the structured diagnostic — position (always relative to
your source, even with circuits = TRUE), kind, and
a did-you-mean hint:
tryCatch(
rpic_svg("bxo", circuits = TRUE),
rpic_error = function(e) list(line = e$info$line, hint = e$info$hint)
)
#> $line
#> [1] 1
#> $hint
#> [1] "did you mean `box`?"e$info$file names a copy include when the
problem is inside one (NA means your own input).
rpic::rpic_register_knitr()then write pic code directly in a chunk:
```{rpic, circuits=TRUE, scale=2}
A:(0,0); B:(2,0)
resistor(A,B)
```
Chunk options: circuits, texlabels,
scale.
devtools::load_all(".") # compiles the Rust and loads the packageFor an installable/CRAN-style tarball, the Rust dependencies are vendored:
rextendr::vendor_crates(".") # bundles crate sources into src/rust/vendor.tar.xz
R CMD build .pic was created by Brian W. Kernighan;
dpic and circuit_macros are J. D.
Aplevich’s; pikchr is D. Richard
Hipp’s. See ACKNOWLEDGMENTS
in the engine repository.
BSD-2-Clause. Compiled Rust dependencies are acknowledged in inst/AUTHORS.