dppdppd / The-Boardgame-Insert-Toolkit

This OpenSCAD library was created to make it easy to create board game inserts with lids for either horizontal or vertical storage, without any programming required.
296 stars 46 forks source link

mislabelled variable throws compilation errors, causes object generation issues #30

Closed IllyStorm closed 3 years ago

IllyStorm commented 3 years ago

Line 2591, the variable vecRounded is mistyped as cevRounded, and throws compilation errors for the function

module MakeRoundedCubeAxis( vec3, radius,  cevRounded = [ t, t, t, t ], axis = k_z ) {

should be

module MakeRoundedCubeAxis( vec3, radius,  vecRounded = [ t, t, t, t ], axis = k_z ) {
mdoom23 commented 3 years ago

Pull request #33 submitted to correct typo.