Project

General

Profile

Download (4.91 KB) Statistics
| Branch: | Revision:

distorted-objectlib / src / main / java / org / distorted / objectlib / objects / TwistyBandaged2Bar.java @ 1d581993

1
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2021 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.objectlib.objects;
21

    
22
import java.io.InputStream;
23

    
24
import org.distorted.library.type.Static3D;
25
import org.distorted.library.type.Static4D;
26

    
27
import org.distorted.objectlib.helpers.ObjectSignature;
28
import org.distorted.objectlib.main.ObjectType;
29

    
30
///////////////////////////////////////////////////////////////////////////////////////////////////
31

    
32
public class TwistyBandaged2Bar extends TwistyBandagedAbstract
33
{
34
  public TwistyBandaged2Bar(int[] numL, int meshState, int iconMode, Static4D quat, Static3D move, float scale, InputStream stream)
35
    {
36
    super(numL, meshState, iconMode, quat, move, scale, stream);
37
    }
38

    
39
///////////////////////////////////////////////////////////////////////////////////////////////////
40

    
41
  float[][] getPositions()
42
    {
43
    if( POSITIONS==null )
44
      {
45
      POSITIONS = new float[][]
46
        {
47
         { 0.0f, +1.0f,  1.0f, 0.0f, +1.0f,  0.0f, 0.0f, +1.0f, -1.0f},
48
         {-1.0f, -1.0f,  0.0f, 0.0f, -1.0f,  0.0f, 1.0f, -1.0f,  0.0f},
49
         {-1.0f, +1.0f, +1.0f},
50
         {-1.0f, +1.0f,  0.0f},
51
         {-1.0f, +1.0f, -1.0f},
52
         {-1.0f,  0.0f, +1.0f},
53
         {-1.0f,  0.0f,  0.0f},
54
         {-1.0f,  0.0f, -1.0f},
55
         {-1.0f, -1.0f, +1.0f},
56
         {-1.0f, -1.0f, -1.0f},
57
         {+1.0f, +1.0f, +1.0f},
58
         {+1.0f, +1.0f,  0.0f},
59
         {+1.0f, +1.0f, -1.0f},
60
         {+1.0f,  0.0f, +1.0f},
61
         {+1.0f,  0.0f,  0.0f},
62
         {+1.0f,  0.0f, -1.0f},
63
         {+1.0f, -1.0f, +1.0f},
64
         {+1.0f, -1.0f, -1.0f},
65
         { 0.0f,  0.0f, +1.0f},
66
         { 0.0f, -1.0f, +1.0f},
67
         { 0.0f,  0.0f, -1.0f},
68
         { 0.0f, -1.0f, -1.0f}
69
        };
70
      }
71

    
72
    return POSITIONS;
73
    }
74

    
75
///////////////////////////////////////////////////////////////////////////////////////////////////
76
// PUBLIC API
77

    
78
  public String getShortName()
79
    {
80
    return ObjectType.BAN2_3.name();
81
    }
82

    
83
///////////////////////////////////////////////////////////////////////////////////////////////////
84

    
85
  public ObjectSignature getSignature()
86
    {
87
    return new ObjectSignature(ObjectType.BAN2_3);
88
    }
89

    
90
///////////////////////////////////////////////////////////////////////////////////////////////////
91

    
92
  public String getObjectName()
93
    {
94
    return "2Bar Cube";
95
    }
96

    
97
///////////////////////////////////////////////////////////////////////////////////////////////////
98

    
99
  public String getInventor()
100
    {
101
    return "Unknown";
102
    }
103

    
104
///////////////////////////////////////////////////////////////////////////////////////////////////
105

    
106
  public int getYearOfInvention()
107
    {
108
    return 0;
109
    }
110

    
111
///////////////////////////////////////////////////////////////////////////////////////////////////
112

    
113
  public int getComplexity()
114
    {
115
    return 2;
116
    }
117

    
118
///////////////////////////////////////////////////////////////////////////////////////////////////
119

    
120
  public String[][] getTutorials()
121
    {
122
    return new String[][]{
123
                          {"ru","lS_EK0PMWI8","Как собрать 2-bar Cube","Алексей Ярыгин"},
124
                          {"pl","tX8ubTLh6p8","Bandaged 3x3 (Two bar)","MrUK"},
125
                          {"kr","NE6XuC1r8xw","밴디지 큐브","Denzel Washington"},
126
                         };
127
    }
128
}
(2-2/36)