From 38c973b316a853fcbef3ccb857d99404a772d9dd Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Fri, 1 Oct 2021 12:34:49 +0100 Subject: [PATCH] FR4 veroboard made the correct colour. veroboard track cuts made slightly bigger. --- vitamins/veroboard.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vitamins/veroboard.scad b/vitamins/veroboard.scad index 6998773..293b38d 100644 --- a/vitamins/veroboard.scad +++ b/vitamins/veroboard.scad @@ -82,7 +82,7 @@ module veroboard(type) { //! Draw specified veroboard with missing tracks and tr width = strips * pitch; hole_d = 1; tw = vero_track_width(type); - colour = vero_fr4(type) ? "green" : "goldenrod"; + colour = vero_fr4(type) ? "#BEB564" : "goldenrod"; tc = vero_fr4(type) ? "silver" : copper; no_track = vero_no_track(type); @@ -124,9 +124,9 @@ module veroboard(type) { //! Draw specified veroboard with missing tracks and tr for(p = vero_breaks(type)) vero_grid_pos(type, p.x, p.y) if(ceil(p.x) == p.x) - circle(d = pitch); + circle(d = pitch * 1.1); else - square([pitch * 0.2, pitch], center = true); + square([pitch * 0.3, pitch], center = true); } } }