• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/delivery/packing/box.php
  • Класс: BitrixSaleDeliveryPackingBox
  • Вызов: Box::move
public function move(array $point)
{
	for($i = 0; $i < 3; $i++)
	{
		$this->vMax[$i] = $this->vMax[$i] - $this->vMin[$i] + $point[$i];
		$this->vMin[$i] = $point[$i];
	}
}