(int shp)
| 15 | private static int sollen; |
| 16 | |
| 17 | private static int getShape2Idx(int shp) { |
| 18 | return Arrays.binarySearch(shapeIdx, shp); |
| 19 | } |
| 20 | |
| 21 | private static int rotate(int layer) { |
| 22 | return ((layer << 1) & 0xFFE) | ((layer >> 11) & 1); |
no test coverage detected