pen order note

trunk
alexis 2022-06-30 20:59:25 -06:00
parent 05fcd054ca
commit 4f485b4a60
1 changed files with 5 additions and 3 deletions

View File

@ -30,16 +30,18 @@ import os
logging.getLogger().setLevel(logging.DEBUG)
LAYERS = None
# Print will be emitted in ascending order of pen number, in case a specific
# order is desired (e.g. black last to avoid staining the other pens)
PENS = [
# Pen number
# | Pen velocity
# | | DXF color
# | | |
(1, 20, 0x000000), # Use fine black
(1, 20, 0xFFFFFF), # (white default layer)
(3, 20, 0x000000), # Use fine black
(3, 20, 0xFFFFFF), # (white default layer)
(2, 40, 0x0000FF), # Use medium blue
(3, 40, 0xFF9900), # Use medium orange
(1, 40, 0xFF9900), # Use medium orange
]
class Plotter: