Wish - additional overload for GeometryBase.GetBoundingBox()

Currently we have 4 options:

For the Plane option, we have this:

I would like it to accept an additional second argument (Boolean value) to return a plane-oriented bounding box, but in world coordinates

GeometryBase.GetBoundingBox(plane) (default, returns plane coordinates)
GeometryBase.GetBoundingBox(plane,True) (also returns plane coordinates)
GeometryBase.GetBoundingBox(plane,False) (returns world coordinates)

Seems like this would work with the structure and not invalidate any existing stuff, since currently the overload already accepts a second argument (box)…

Thanks,
–Mitch