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, August 26, 2017
Area Of A Isosceles Prism By Base Heights
function Area_Of_A_Isosceles_Prism_By_Base_Heights(A,h,H)=
2*((1/2)*A*h)+ A*sqrt((a/2)*(a/2)+h*h)*H;
No comments:
Post a Comment