Project

General

Profile

Download (2.44 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / java / org / distorted / patterns / PatternMegaminx.java @ 3c4495ac

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2020 Leszek Koltunski                                                               //
3
//                                                                                               //
4
// This file is part of Magic Cube.                                                              //
5
//                                                                                               //
6
// Magic Cube is free software: you can redistribute it and/or modify                            //
7
// it under the terms of the GNU General Public License as published by                          //
8
// the Free Software Foundation, either version 2 of the License, or                             //
9
// (at your option) any later version.                                                           //
10
//                                                                                               //
11
// Magic Cube is distributed in the hope that it will be useful,                                 //
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of                                //
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the                                 //
14
// GNU General Public License for more details.                                                  //
15
//                                                                                               //
16
// You should have received a copy of the GNU General Public License                             //
17
// along with Magic Cube.  If not, see <http://www.gnu.org/licenses/>.                           //
18
///////////////////////////////////////////////////////////////////////////////////////////////////
19

    
20
package org.distorted.patterns;
21

    
22
///////////////////////////////////////////////////////////////////////////////////////////////////
23

    
24
public class PatternMegaminx
25
{
26
public static final String[][] patterns =
27
 {
28
  {
29
	"Test patterns",
30
	"R: ",
31
	"R': ",
32
	"R2: ",
33
	"R2': ",
34
	"L: ",
35
	"L': ",
36
	"L2: ",
37
	"L2': ",
38
	"U: ",
39
	"U': ",
40
	"U2: ",
41
	"U2': ",
42
	"D: ",
43
	"D': ",
44
	"D2: ",
45
	"D2': ",
46
	"F: ",
47
	"F': ",
48
	"F2: ",
49
	"F2': ",
50
	"B: ",
51
	"B': ",
52
	"B2: ",
53
	"B2': ",
54
	"BL: ",
55
	"BL': ",
56
	"BL2: ",
57
	"BL2': ",
58
	"BR: ",
59
	"BR': ",
60
	"BR2: ",
61
	"BR2': ",
62
	"UR: ",
63
	"UR': ",
64
	"UR2: ",
65
	"UR2': ",
66
	"UL: ",
67
	"UL': ",
68
	"UL2: ",
69
	"UL2': ",
70
	"DL: ",
71
	"DL': ",
72
	"DL2: ",
73
	"DL2': ",
74
	"DR: ",
75
	"DR': ",
76
	"DR2: ",
77
	"DR2': ",
78
	}
79
 };
80
}
(5-5/10)