Revision 8145d8b8
Added by Leszek Koltunski over 2 years ago
| src/main/java/org/distorted/screens/RubikScreenSolver.java | ||
|---|---|---|
| 9 | 9 |
|
| 10 | 10 |
package org.distorted.screens; |
| 11 | 11 |
|
| 12 |
import static org.distorted.objectlib.main.TwistyObject.*; |
|
| 13 |
|
|
| 12 | 14 |
import java.lang.ref.WeakReference; |
| 13 | 15 |
|
| 14 | 16 |
import android.content.SharedPreferences; |
| ... | ... | |
| 180 | 182 |
mNumColors = ShapeIcosahedron.NUM_FACES; |
| 181 | 183 |
mFaceColors = ShapeIcosahedron.FACE_COLORS; |
| 182 | 184 |
} |
| 185 |
else if( object== ObjectSignatures.DIN4_3 ) |
|
| 186 |
{
|
|
| 187 |
mNumColors = 4; |
|
| 188 |
mFaceColors = new int[] { COLOR_YELLOW, COLOR_RED, COLOR_BLUE, COLOR_WHITE };
|
|
| 189 |
} |
|
| 183 | 190 |
else |
| 184 | 191 |
{
|
| 185 | 192 |
mNumColors = ShapeHexahedron.NUM_FACES; |
Also available in: Unified diff
Dino4 solver: skeleton.