I'm trying to find the largest rectangle of a given aspect ratio that can be inscribed in a hexagon.
I'm able to sort of walk through the problem in reverse, i.e. given an x, I can calculate the rectangle and aspect ratio :
- find the point on AB for x
- find the point on DE for x
- find the point on BC across from #1
- calculate height : distance between #1 & #2
- calculate width : distance between #1 & #3
- Aspect ratio is #5 / #4
How would I go about doing this in reverse? Thanks in advance for any guidance!
No comments:
Post a Comment