| 1 | <?php |
||
| 26 | class PlaneMethods |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * Height along the Y axis. |
||
| 30 | * |
||
| 31 | * @param array $dom_attributes |
||
| 32 | * @param double $height |
||
| 33 | * @return void |
||
| 34 | */ |
||
| 35 | 4 | public function height(array &$dom_attributes, float $height) |
|
| 39 | |||
| 40 | /** |
||
| 41 | * Width along the X axis. |
||
| 42 | * |
||
| 43 | * @param array $dom_attributes |
||
| 44 | * @param double $width |
||
| 45 | * @return void |
||
| 46 | */ |
||
| 47 | 4 | public function width(array &$dom_attributes, float $width) |
|
| 51 | } |
||
| 52 |