(String scramble)
| 1204 | } |
| 1205 | |
| 1206 | public String solve222(String scramble) { |
| 1207 | switch (APP.solve222) { |
| 1208 | case 1: |
| 1209 | return Cube2Face.solveFace(scramble, APP.solverType[4]); |
| 1210 | case 2: |
| 1211 | return Cube2Layer.solveFirstLayer(scramble, APP.solverType[4]); |
| 1212 | default: |
| 1213 | return ""; |
| 1214 | } |
| 1215 | } |
| 1216 | |
| 1217 | public void drawScramble(int width, Paint p, Canvas c) { |
| 1218 | int[] colors = {pref.getInt("csn1", Color.YELLOW), pref.getInt("csn2", Color.BLUE), pref.getInt("csn3", Color.RED), |
no test coverage detected