05-17-2014, 04:03 AM
Yes, but you don't need to if you have a reference to the block that needs a bounding box. For example we can extend the Block class with a bounding box object. With that you can do:
Code:
if(Block.hasCustonBoundingBox())
{
cBoundingBox CurrentBounding = Block.getBoundingBox();
// Do Stuff ...
// ...
}