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.
Saturday, July 1, 2017
Area Of A Cone By Radius And Height
function Area_Of_A_Cone_By_Radius_And_Height(r,h )=
PI*r*r+ PI*r*sqrt(r*r+h*h);
No comments:
Post a Comment