php-spinner/src/Style/BrailleWideSpinnerStyle.php

52 lines
2.5 KiB
PHP
Raw Normal View History

2022-10-05 18:59:13 +00:00
<?php
namespace NoccyLabs\Spinner\Style;
class BrailleWideSpinnerStyle implements StyleInterface
{
public function getFrames(): array
{
return [
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
"",
];
}
2024-03-07 00:06:40 +00:00
public function getWidth(): int
{
return 2;
}
2022-10-05 18:59:13 +00:00
}
/*
| xxx0 xxx1 xxx2 xxx3 xxx4 xxx5 xxx6 xxx7 xxx8 xxx9 xxxA xxxB xxxC xxxD xxxE xxxF
280x |
281x |
282x |
283x |
284x |
285x |
286x |
287x |
288x |
289x |
28Ax |
28Bx |
28Cx |
28Dx |
28Ex |
28Fx |
2024-03-07 00:06:40 +00:00
*/