1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-11 01:04:07 +02:00

add wall_radius

This commit is contained in:
Justin Lin
2019-09-25 15:34:43 +08:00
parent 91b127210b
commit d3611493fb

View File

@@ -6,11 +6,10 @@ include <hollow_out.scad>;
thickness = 4;
height = 15;
radius = 80;
torus_radius = 60;
wall_radius = 71.49125;
// wall_radius still requires some math.
wall_radius = radius + thickness * 3.39375;
walk_torus83_fort(radius, thickness, height, $fn = 36);
walk_torus83_fort(torus_radius, thickness, height, $fn = 36);
wall(wall_radius, height, thickness, $fn = 36);
module wall(radius, height, thickness) {
@@ -24,7 +23,7 @@ module wall(radius, height, thickness) {
module bk() {
for(i = [0:bk_number + 2]) {
translate([(2 * i + 1) * bk_w, 0])
square(bk_w, center = true);
square([bk_w, bk_w * 2], center = true);
}
}