Composite solid geometry


The way I would calculate volume of your cabinet is in two parts: First calculate a box with dimensions of height x width x depth of your cabinet at its smallest depth. Then calculate the volume of the wedge shape seperately. The dimensions of the wedge would be found as the difference in the cabinet depth at the bottom and depth at the top times the height x width divided by two.

So do two things:

Box = H x W x D (at the thinnest section)
Wedge = (H x W x D) / 2 (calculates the "slanted section")

Add 'em together and you have the total volume. This is called "composite solid geometry" and is simply a matter of dealing with complex shapes by modeling them as a composite group of primitive shapes.


Follow Ups: