nophead / NopSCADlib

Library of parts modelled in OpenSCAD and a framework for making projects
GNU General Public License v3.0
1.17k stars 155 forks source link

Update global.scad #267

Closed Minimoed closed 2 months ago

Minimoed commented 7 months ago

Replaced the following functions: foot(x) = x 25.4 12; with foot(x) = inch(x) 12; yard(x) = x 25.4 12 3; with yard(x) = foot(x) 3; m(x) = x 1000.0; with m(x) = cm(x) * 100;

nophead commented 7 months ago

Why, it will just make it slower to execute as yard() will be three function calls?