From 4f2649f0af45bfdbec40f5fd38023b53b8fa15c2 Mon Sep 17 00:00:00 2001 From: gumyr Date: Tue, 1 Jul 2025 10:23:57 -0400 Subject: [PATCH] Reducing thread size to avoid OCCT fuse issue --- docs/rod_end.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/rod_end.py b/docs/rod_end.py index e0a4364..335743f 100644 --- a/docs/rod_end.py +++ b/docs/rod_end.py @@ -3,9 +3,7 @@ from bd_warehouse.thread import IsoThread from ocp_vscode import * # Create the thread so the min radius is available below -thread = IsoThread( - major_diameter=8, pitch=1.25, length=20, end_finishes=("fade", "raw") -) +thread = IsoThread(major_diameter=6, pitch=1, length=20, end_finishes=("fade", "raw")) inner_radius = 15.89 / 2 inner_gap = 0.2 @@ -52,4 +50,4 @@ with BuildPart() as ball: rod_end.part.joints["socket"].connect_to(ball.part.joints["ball"], angles=(5, 10, 0)) -show(rod_end.part, ball.part) +show(rod_end.part, ball.part, s2)