Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I find it frustrating and strange and find so many people spend a lot of time trying to workout why obvious calculations do not work.
It would be a lot less painful if obvious inferences were made in calculations
For example, working out the hypotenuse of a triangle
sqrt(1 + frameWidth^2)
is compact, concise and obvious
but the following could simple be inferred like above without having to divide each dimension by mm in brackets
( sqrt(1 + ( frameWidth / mm ) ^ 2) ) * 1 mm
which is overly complex and a waste of time
Solved! Go to Solution.