From ef16559b956fdcdaf722ac7f9405178908477187 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Wed, 4 Dec 2024 14:24:47 -0600 Subject: [PATCH] ensure the frame solid has the proper, complete dimensions something about the sharp corners of the default cylinder was slightly shrinking the overall solid by a fraction of a mm. I thought this was a defect of how I was chopping pieces, but no, it was the core solid. this shouldn't be a reason to rebuild anything, but it makes the models slightly more consistent, especially when looking at the STLs Signed-off-by: Brian S. Stephan --- src/components.scad | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components.scad b/src/components.scad index 44b4e9e..e3b61ff 100644 --- a/src/components.scad +++ b/src/components.scad @@ -274,13 +274,13 @@ module frame_solid() { ]; hull() { for (p = top_points) { - translate(p) cylinder(r=2, h=frame_bevel_height, center=true); + translate(p) cylinder(r=2, h=frame_bevel_height, center=true, $fn=4); } for (p = base_points) { - translate(p) cylinder(r=2, h=frame_z-(frame_bevel_height*2), center=true); + translate(p) cylinder(r=2, h=frame_z-(frame_bevel_height*2), center=true, $fn=4); } for (p = bottom_points) { - translate(p) cylinder(r=2, h=frame_bevel_height, center=true); + translate(p) cylinder(r=2, h=frame_bevel_height, center=true, $fn=4); } } }