AABB size

Is there a way to get the center of the bounding box in relation to the origin of a model?

EDIT:
Thanks to pro-rsoft for the following code:

min, max = node.getTightBounds()
boundCenter = (min+max) * 0.5

This seems to also give the same result:

node.getBounds().getApproxCenter()