Use the vpype CLI for plotter geometry processing
mastervpype provides a command-line interface for processing plotter geometries. It supports arbitrary units (e.g., cm, in) and integrated help via --help.
Key CLI features include:
- Layer Control: Use
--layer 1,3to apply commands to specific layers. - History: Record command history using the
-Hflag. - Reproducibility: Set a Random Number Generator (RNG) seed using the
-sflag for generative plugins. - Property Substitution: Use properties and expression substitution in CLI inputs.
vpype --help
# Example with units and layers
vpype read input.svg translate 3cm 2in --layer 1
# Example with RNG seed
vpype -s 37 read input.svg ...