From 9b978ea2a1d763bfcd9e85686a9651cdb1f801a8 Mon Sep 17 00:00:00 2001
From: Neil Gershenfeld <gersh@cba.mit.edu>
Date: Tue, 23 Nov 2021 20:06:28 -0500
Subject: [PATCH] wip

---
 python/pcb.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/python/pcb.py b/python/pcb.py
index 6fabb95..86b815d 100755
--- a/python/pcb.py
+++ b/python/pcb.py
@@ -25,6 +25,7 @@ output = "top, labels, holes, and exterior"
 #output = "top, bottom, labels, holes, and exterior"
 #output = "top traces"
 #output = "top traces and exterior"
+#output = "bottom traces"
 #output = "bottom traces reversed"
 #output = "bottom traces reversed and exterior"
 #output = "holes"
@@ -8298,6 +8299,9 @@ elif (output == "top traces"):
 elif (output == "top traces and exterior"):
    outputs["function"] = color(White,add(pcb.board,pcb.exterior))
    outputs["layers"] = [zt]
+elif (output == "bottom traces"):
+   outputs["function"] = color(White,pcb.board)
+   outputs["layers"] = [zb]
 elif (output == "bottom traces reversed"):
    outputs["function"] = color(White,
       reflect_x(pcb.board,2*x+width))
-- 
GitLab