Description Usage Arguments Value Examples
Join backstitch lettering into a single segment data.frame
1 | backstitch_join(x, anchor = c(0, 0), scale = 1, set = "simple")
|
x |
A character vector containing the lettering to use. |
anchor |
The x,y position of the bottom-left corner of the first letter. Default is c(0,0) |
scale |
Scale of the lettering. I recommend you use integer values to make stitching easier! Default is 1. |
set |
Backstitch set to use. Default is "simple". Use names(backstitch_segments) to see all available. |
A segment data.frame with x, xend, y, and yend for use with geom_segment in ggplot2
1 2 3 4 5 6 | backstitch_df <- backstitch_join("Easy backstitch phrases!",
anchor = c(-10, 10),
scale = 2,
set = "simple")
head(backstitch_df)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.