Skip to content

Instantly share code, notes, and snippets.

@jacksleight
Last active January 13, 2025 12:00
Show Gist options
  • Save jacksleight/d01c88adaba53ec342ef83f55e11aa3d to your computer and use it in GitHub Desktop.
Save jacksleight/d01c88adaba53ec342ef83f55e11aa3d to your computer and use it in GitHub Desktop.
@jacksleight
Copy link
Author

jacksleight commented Jan 10, 2025

I have a rectangle that is 440 wide and 320 high.

I create a 30 degree isometric projection with the rectangle on both the XY and XZ planes.

I now want to calculate the width and height of the visual bounding boxes around the XY and XZ planes of the projection.

I already have three of the four formulas:

xy-plane-width  = (width * sin(pi / 4)) + (height * cos(pi / 4))
xy-plane-height = xy-plane-width * tan(angle)
xz-plane-width  = width * sin(pi / 4)
xz-plane-height = ?

However I can't figure out the formula for the XZ plane height.

The dimensions and angle here are just examples, I need the formulas as the actual width, height and angle will change.

Here's an illustration of the problem if that helps explain further:

measurements

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment