This is my notepad where i collect the useful snippets of OpenSCAD code that i use over and over. Some better curated than others, some formatted for clarity some for efficiency.
line([1,-1],[2,2]); module line(p1, p2 ,width=0.05)
{ hull() { translate(p1) sphere(width); translate(p2) sphere(width); } }
No comments:
Post a Comment