Using the following terms for Y component of 'translate' option within 'transform' node, I have the box move as follows based on the expression as follows, typed .
bbox(0,D_YMIN) - Box moves down at a distance equals to half of its height. i.e. half of its dimension in Y direction. So a cuboid with a height of 5 units, will move down 2.5 units.
bbox(0,D_YMAX) - Box moves up at a distance equals to half of its height. i.e. half of its dimension in Y direction. So a cuboid with a height of 5 units, will move 2.5 units upwards.
bbox(0,D_YSIZE) - Box moves up at a distance equals to its height. So a cuboid with a height of 5 units, will move 5 units upwards.
What is the exact meaning of YMIN and YMAX? They seem to be half of the Y dimension but the 'MIN' and 'MAX' in their names hints to something else.

