Closed IllyStorm closed 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 ) {
Pull request #33 submitted to correct typo.
Line 2591, the variable vecRounded is mistyped as cevRounded, and throws compilation errors for the function
should be