February 3, 2024
Description
Written in OpenSCAD. Requires the following libraries:
You can pass to the main module a list of clearances.
clearences = [0.1, 0.2, 0.3];
main(clearences);
As alternative you can use the calculate_clearences function. It accepts 4 parameters:
line_height: the line height at which you will slice the model;tests_number: how many test you want to create;step: how much each test should grow;difference: how much you want to go down from line_height for the first test.clearences = calculate_clearences(.1, 5, .05, .05);
main(clearences);License:
Creative Commons — Public Domain
7