1 | <?php |
||
26 | class DefaultMethods |
||
27 | { |
||
28 | |||
29 | /** |
||
30 | * Roll, rotation about the X-axis. |
||
31 | * |
||
32 | * @param array $dom_attributes |
||
33 | * @param float|int $scale_x |
||
|
|||
34 | * @return void |
||
35 | */ |
||
36 | 51 | public function scaleX(array &$dom_attributes, float $scale_x) |
|
40 | |||
41 | /** |
||
42 | * Pitch, rotation about the Y-axis. |
||
43 | * |
||
44 | * @param array $dom_attributes |
||
45 | * @param float|int $scaling_y |
||
46 | * @return void |
||
47 | */ |
||
48 | 51 | public function scaleY(array &$dom_attributes, float $scale_y) |
|
52 | |||
53 | /** |
||
54 | * Yaw, rotation about the Z-axis. |
||
55 | * |
||
56 | * @param array $dom_attributes |
||
57 | * @param float|int $scale_z |
||
58 | * @return void |
||
59 | */ |
||
60 | 51 | public function scaleZ(array &$dom_attributes, float $scale_z) |
|
64 | } |
||
65 |