{
// Calculate location of this node in the parent area
int quadrant = parentNode.getIndexOfChild( node );
// Compensate for some texture flipping complications
quadrant = area.flipSubquadrantAcrossY( quadrant );
return area.createSubquadrantBoundingRectangle( quadrant );
}
}
}