Prior to reading this post we recommend reading “Revit Families 103 – Formula Basics” to get the complete overview of all the basic operations allowed in Revit formulas.
Many times when working with Revit Formula in family creation you will want to work with right triangles. The following is meant as a handy reference for you to make working with right triangles a little easier.
Known: a, b
c = sqrt(a ^ 2 + b ^ 2) Known: a, c b = sqrt(c ^ 2 – a ^ 2) Known: b, c a = sqrt(c ^ 2 – b ^ 2) Known: c, A a = c * sin(A) Known: c, B a = c * cos(B) |
Known: a, B
b = a * tan(B) Known: b, A a = b * tan(A) Known: a, A b = a / tan(A) Known: b, B a = b / tan(B) |