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.
function Area_Of_A_Pyramid_By_Sides_And_Height(A,B,h )= A*B+ 2*( (1/2)* A* (sqrt(h*h+(B/2)*(B/2))) ) + 2*( (1/2)* B* (sqrt(h*h+(A/2)*(A/2))) );
No comments:
Post a Comment