(int shp)
| 22 | int parity; |
| 23 | |
| 24 | static int getShape2Idx(int shp) { |
| 25 | return Arrays.binarySearch(ShapeIdx, shp & 0xffffff) <<1 | shp>>24; |
| 26 | } |
| 27 | |
| 28 | private int getIdx() { |
| 29 | return Arrays.binarySearch(ShapeIdx, top << 12 | bottom) << 1 | parity; |
no test coverage detected