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.
Thursday, August 10, 2017
Volume Of A Cone By Radius And Height
function Volume_Of_A_Cone_By_Radius_And_Height(r,h )=
PI*r*r*h*(1/3);
No comments:
Post a Comment