right2Left method

void right2Left()
inherited

Implementation

void right2Left() {
  Rect bound = getBoundBox();
  this.each((node, index, startNode) {
    node.x = node.x - (node.x - bound.left) * 2 - node.size.width;

    return false;
  });
}