Added vero_size function.

This commit is contained in:
Martin Budden 2021-01-08 11:47:34 +00:00
parent 16c1eeef27
commit 760e3a890d
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,8 @@ function vero_track_width(type) = vero_pitch(type) * 0.8; //! The width of th
function vero_length(type) = vero_holes(type) * vero_pitch(type); //! Length of the board
function vero_width(type) = vero_strips(type) * vero_pitch(type); //! Width of the board
function vero_size(type) = [vero_length(type), vero_width(type), vero_thickness(type)]; //! Board size
module solder_meniscus(type) {
h = 1;
r = vero_track_width(type) / 2;