Length and width formula for NOT square rooms, exist or no?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have seen and used multiple formulas for the length in the room tag.
Every formula tried for length (listed below) can be inaccurate to the point of useless.
*Width is always area/length.
- (Perimeter + sqrt(Perimeter^2 - 16 * Area)) / 4
- if(Area = (Perimeter / 4) ^ 2, Perimeter / 4, ((Perimeter / 2) - sqrt((Perimeter / 2) ^ 2 - 4 * Area)) / 2)
- ((Perimeter / 2) - sqrt((Perimeter / 2) ^ 2 - 4 * Area)) / 2
These barely work for rectangular rooms, sometimes giving one decent output with the other being way off.
They don't work at all for L shaped rooms - which is the main application other than rectangular rooms I would need.
I'm really not talking about diagonal or oblong shaped rooms.
Does a formula exist for these rooms or not?
I can do it manually, but it would be ideal if someone could share the formula- if its even possible.
TIA