openvk/Web/Util/Makima/ThumbTile.php
celestora c566c7e402 draft masonry picture layout in posts xddd
где мои опиаты???
2022-12-11 19:30:01 +02:00

14 lines
347 B
PHP

<?php declare(strict_types=1);
namespace openvk\Web\Util\Makima;
class ThumbTile {
public $width;
public $height;
public $rowSpan;
public $colSpan;
function __construct(int $rs, int $cs, float $w, float $h)
{
[$this->width, $this->height, $this->rowSpan, $this->colSpan] = [ceil($w), ceil($h), $rs, $cs];
}
}