Parametric ball joint
by Erik, published
Description
In OpenSCAD, you can choose to see an animation of the ball joint in action. Do this by uncommeting "demo();" and commenting "print();". To print it, choose the latter, press F6 and export to STL.
For a very cool implementation of this 'part' used in a camera mount, see thingiverse.com/thing:2631
Recent Comments
view allSorry Erik. This was not a critic on you or your part. I justed wanted to help to improve your useful thing..
Just create a derivative. This was more a proof-of-concept showing how easy it was to make something like this in OpenSCAD. OpenSCAD at the time was still very new... Now it has matured more and there are more free solutions that do what *SCAD does.
Remixed From
Tags
License
Give a Shout Out
Instructions
size=10; // size of the ball joint
joint_spacing =0.5; // some space between them?
joint_thickness = 2; // thickness of the arms
joint_arms = 5; // how many arms do you want?
arm_width = 10; // actually: how much is removed from the arms Larger values will remove more
File Name
Downloads
Size
Comments
You must be logged in to post a comment.
Very nice - I've got a windshield linkage that's broken on my car, due to poor (GM) design. This will be a good challenge, to modify your part and make it do what I need. We'll see how it goes.
Beautiful! Is the STL oriented just like the rendered picture? If so, the ball joint probably needs to be turned upside right to be printed.
Hi Makerblock,
Good point, I added two different views for OpenSCAD. You can choose to see an animation of the ball joint in action. Do this by uncommenting "demo();" and commenting "print();". To print it, choose the latter, press F6 and export to STL.
Did it print?
The issue with the original one was that skeinforge die not like it.
I've never had an openSCAD generated STL file that didn't print OK. So I'm assuming it will.

I think there is a small failure.
The ball had not enough place inside. the joint. because it touched the cylinder on the bottom.
module joint2(){
difference()
{
joint();
sphere(r=size+joint_spacing);
}}
Just create a derivative. This was more a proof-of-concept showing how easy it was to make something like this in OpenSCAD. OpenSCAD at the time was still very new... Now it has matured more and there are more free solutions that do what *SCAD does.