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, July 6, 2017
Volume Of A Prism By Sides Height
function Volume_Of_A_Prism_By_Sides_Height(A,B,C,H)=
let(s=(a+b+c)/2) sqrt(abs(s*(s-a)*(s-b)*(s-c)))*H;
No comments:
Post a Comment