parent)) {
$parent_hc = $tree->parent->get_height_constraint();
$hc = $tree->get_height_constraint();
if (is_null($parent_hc->constant) &&
$hc->constant[1]) {
$hc->constant = null;
$tree->put_height_constraint($hc);
};
};
};
/**
* Set box height to constrained value
*/
$hc = $tree->get_height_constraint();
$height = $tree->get_height();
$tree->height = $hc->apply($height, $tree);
/**
* Proceed to this box children
*/
if (is_a($tree, 'GenericContainerBox')) {
for ($i=0, $size = count($tree->content); $i<$size; $i++) {
$this->process($tree->content[$i], $data, $pipeline);
};
};
}
}
?>