Project

General

Profile

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

magiccube / src / main / java / org / distorted / objects / RubikPyraminx.java @ 8f53e513

1 e844c116 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
2
// Copyright 2019 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 1f9772f3 Leszek Koltunski
package org.distorted.objects;
21 e844c116 Leszek Koltunski
22 ccf9fec5 Leszek Koltunski
import android.content.res.Resources;
23 e844c116 Leszek Koltunski
import android.graphics.Canvas;
24
import android.graphics.Paint;
25
26 40ab026e Leszek Koltunski
import org.distorted.library.effect.VertexEffectDeform;
27
import org.distorted.library.effect.VertexEffectMove;
28
import org.distorted.library.effect.VertexEffectRotate;
29
import org.distorted.library.effect.VertexEffectScale;
30 f0fa83ae Leszek Koltunski
import org.distorted.library.effect.VertexEffectSink;
31 e844c116 Leszek Koltunski
import org.distorted.library.main.DistortedEffects;
32
import org.distorted.library.main.DistortedTexture;
33
import org.distorted.library.mesh.MeshBase;
34 988f434e Leszek Koltunski
import org.distorted.library.mesh.MeshJoined;
35 e844c116 Leszek Koltunski
import org.distorted.library.mesh.MeshRectangles;
36 988f434e Leszek Koltunski
import org.distorted.library.mesh.MeshTriangles;
37
import org.distorted.library.type.Static1D;
38 e844c116 Leszek Koltunski
import org.distorted.library.type.Static3D;
39
import org.distorted.library.type.Static4D;
40
41
///////////////////////////////////////////////////////////////////////////////////////////////////
42
43
public class RubikPyraminx extends RubikObject
44
{
45 9f4c44fe Leszek Koltunski
  private static final float SQ2 = (float)Math.sqrt(2);
46
  private static final float SQ3 = (float)Math.sqrt(3);
47 10585385 Leszek Koltunski
  private static final float SQ6 = (float)Math.sqrt(6);
48 9f4c44fe Leszek Koltunski
49 37a25788 Leszek Koltunski
  static final Static3D[] AXIS = new Static3D[]
50 e844c116 Leszek Koltunski
         {
51 9f4c44fe Leszek Koltunski
           new Static3D(         0,        1,       0 ),
52 49f67f9b Leszek Koltunski
           new Static3D(         0,  -1.0f/3, 2*SQ2/3 ),
53 9f4c44fe Leszek Koltunski
           new Static3D(-SQ2*SQ3/3,  -1.0f/3,  -SQ2/3 ),
54 49f67f9b Leszek Koltunski
           new Static3D( SQ2*SQ3/3,  -1.0f/3,  -SQ2/3 )
55 e844c116 Leszek Koltunski
         };
56
57
  private static final int[] FACE_COLORS = new int[]
58
         {
59 906cc928 Leszek Koltunski
           0xff00ff00, 0xffffff00,  // AXIS[0]right (GREEN ) AXIS[1]right (YELLOW )
60
           0xff0000ff, 0xffff0000   // AXIS[2]right (BLUE  ) AXIS[3]right (RED    )
61 e844c116 Leszek Koltunski
         };
62
63 9f4c44fe Leszek Koltunski
  // computed with res/raw/compute_quats.c
64 10585385 Leszek Koltunski
  private static final Static4D[] QUATS = new Static4D[]
65 e844c116 Leszek Koltunski
         {
66 10585385 Leszek Koltunski
           new Static4D(  0.0f,   0.0f,   0.0f,  1.0f),
67
           new Static4D(  0.0f,  SQ3/2,   0.0f,  0.5f),
68
           new Static4D( SQ2/2, -SQ3/6, -SQ6/6,  0.5f),
69
           new Static4D(-SQ2/2, -SQ3/6, -SQ6/6,  0.5f),
70
           new Static4D(  0.0f, -SQ3/6,  SQ6/3,  0.5f),
71
           new Static4D(  0.0f,  SQ3/2,   0.0f, -0.5f),
72
           new Static4D( SQ2/2, -SQ3/6, -SQ6/6, -0.5f),
73
           new Static4D(-SQ2/2, -SQ3/6, -SQ6/6, -0.5f),
74
           new Static4D(  0.0f, -SQ3/6,  SQ6/3, -0.5f),
75
           new Static4D( SQ2/2, -SQ3/3,  SQ6/6,  0.0f),
76
           new Static4D(  0.0f, -SQ3/3, -SQ6/3,  0.0f),
77
           new Static4D(-SQ2/2, -SQ3/3,  SQ6/6,  0.0f)
78 e844c116 Leszek Koltunski
         };
79
80 89a11f7b Leszek Koltunski
  private int[] mRotArray;
81 40ab026e Leszek Koltunski
  private static VertexEffectRotate[] ROTATION;
82
83
  private static MeshBase mMesh =null;
84
  private static MeshBase[] mMeshRotated = new MeshBase[AXIS.length];
85 89a11f7b Leszek Koltunski
86
  static
87
    {
88
    Static3D center = new Static3D(0,0,0);
89
    Static1D angle  = new Static1D(180.0f);
90
91 40ab026e Leszek Koltunski
    ROTATION = new VertexEffectRotate[AXIS.length];
92 89a11f7b Leszek Koltunski
93
    for(int i=0; i<AXIS.length; i++)
94
      {
95 40ab026e Leszek Koltunski
      ROTATION[i] = new VertexEffectRotate( angle, AXIS[i], center);
96
      mMeshRotated[i] = null;
97 89a11f7b Leszek Koltunski
      }
98
    }
99 49f67f9b Leszek Koltunski
100 e844c116 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
101
102 4da7d87a Leszek Koltunski
  RubikPyraminx(int size, Static4D quat, DistortedTexture texture,
103 5b893eee Leszek Koltunski
                MeshRectangles mesh, DistortedEffects effects, int[][] moves, Resources res, int scrWidth)
104 e844c116 Leszek Koltunski
    {
105 5b893eee Leszek Koltunski
    super(size, 30, quat, texture, mesh, effects, moves, RubikObjectList.PYRA, res, scrWidth);
106 e844c116 Leszek Koltunski
    }
107
108
///////////////////////////////////////////////////////////////////////////////////////////////////
109
110 89a11f7b Leszek Koltunski
  private void emitRow(float x, float y, float z, float dx, float dy, float dz, int n, int rot, Static3D[] array, int index)
111 49f67f9b Leszek Koltunski
    {
112
    for(int i=0; i<n; i++)
113
      {
114
      mRotArray[i+index] = rot;
115
      array[i+index] = new Static3D(x+0.5f,y+SQ2*SQ3/12,z+SQ3/6);
116
      x += dx;
117
      y += dy;
118
      z += dz;
119
      }
120
    }
121
122
///////////////////////////////////////////////////////////////////////////////////////////////////
123
124
  private int emitLowermost(float x, float y, float z, int n, Static3D[] array)
125
    {
126
    int added = 0;
127
128 769409d2 Leszek Koltunski
    emitRow( x      +0.5f, y+SQ3*SQ2/9, z+ SQ3/18,  1.0f, 0,     0, n-1, 1, array, added);
129
    added += (n-1);
130
    emitRow( x    +1.0f/3, y+SQ3*SQ2/9, z+2*SQ3/9,  0.5f, 0, SQ3/2, n-1, 3, array, added);
131
    added += (n-1);
132
    emitRow( x+n-1-1.0f/3, y+SQ3*SQ2/9, z+2*SQ3/9, -0.5f, 0, SQ3/2, n-1, 2, array, added);
133
    added += (n-1);
134
135 49f67f9b Leszek Koltunski
    for(int i=n; i>=1; i--)
136
      {
137 769409d2 Leszek Koltunski
      emitRow(x     , y, z      , 1,0,0, i  , -1, array, added);
138 49f67f9b Leszek Koltunski
      added += i;
139 769409d2 Leszek Koltunski
      emitRow(x+0.5f, y, z+SQ3/6, 1,0,0, i-1,  0, array, added);
140
      added += (i-1);
141 49f67f9b Leszek Koltunski
      x += 0.5f;
142
      y += 0.0f;
143
      z += SQ3/2;
144
      }
145
146
    return added;
147
    }
148
149
///////////////////////////////////////////////////////////////////////////////////////////////////
150
151
  private int emitUpper(float x, float y, float z, int n, Static3D[] array, int index)
152
    {
153
    if( n>1 )
154
      {
155 769409d2 Leszek Koltunski
      emitRow( x           , y          , z        ,  1.0f, 0,     0, n-1, -1, array, index);
156
      index += (n-1);
157
      emitRow( x+0.5f      , y+SQ3*SQ2/9, z+SQ3/18 ,  1.0f, 0,     0, n-1,  1, array, index);
158
      index += (n-1);
159
      emitRow( x+0.5f      , y          , z+SQ3/2  ,  0.5f, 0, SQ3/2, n-1, -1, array, index);
160
      index += (n-1);
161
      emitRow( x    +1.0f/3, y+SQ3*SQ2/9, z+2*SQ3/9,  0.5f, 0, SQ3/2, n-1,  3, array, index);
162 49f67f9b Leszek Koltunski
      index += (n-1);
163 769409d2 Leszek Koltunski
      emitRow( x+n-1       , y          , z        , -0.5f, 0, SQ3/2, n-1, -1, array, index);
164 49f67f9b Leszek Koltunski
      index += (n-1);
165 769409d2 Leszek Koltunski
      emitRow( x+n-1-1.0f/3, y+SQ3*SQ2/9, z+2*SQ3/9, -0.5f, 0, SQ3/2, n-1,  2, array, index);
166 49f67f9b Leszek Koltunski
      index += (n-1);
167
      }
168
    else
169
      {
170 89a11f7b Leszek Koltunski
      mRotArray[index] = -1;
171 49f67f9b Leszek Koltunski
      array[index] = new Static3D(x+0.5f,y+SQ2*SQ3/12,z+SQ3/6);
172
      index++;
173
      }
174
175
    return index;
176
    }
177
178
///////////////////////////////////////////////////////////////////////////////////////////////////
179
// size^2 + 3*(size-1) in the lowermost layer, then 6*(size-2) in the next, 6*(size-3) in the next,
180
// ... 6 in the forelast, 1 in the last = 4size^2 - 6size +4 (if size>1)
181
182 e844c116 Leszek Koltunski
  Static3D[] getCubitPositions(int size)
183
    {
184 769409d2 Leszek Koltunski
    int numCubits = size>1 ? 4*size*size - 6*size +4 : 1;
185 c2cb520d Leszek Koltunski
    Static3D[] tmp = new Static3D[numCubits];
186 89a11f7b Leszek Koltunski
    mRotArray = new int[numCubits];
187 49f67f9b Leszek Koltunski
188
    int currentIndex = emitLowermost( -0.5f*size, -(SQ2*SQ3/12)*size, -(SQ3/6)*size, size, tmp);
189 c2cb520d Leszek Koltunski
190 49f67f9b Leszek Koltunski
    for(int i=size-1; i>=1; i--)
191 cc7dc72a Leszek Koltunski
      {
192 49f67f9b Leszek Koltunski
      currentIndex = emitUpper( -0.5f*i, ((SQ2*SQ3)/12)*(3*size-4*i), -(SQ3/6)*i, i, tmp, currentIndex);
193 cc7dc72a Leszek Koltunski
      }
194 49f67f9b Leszek Koltunski
195 c2cb520d Leszek Koltunski
    return tmp;
196 e844c116 Leszek Koltunski
    }
197
198
///////////////////////////////////////////////////////////////////////////////////////////////////
199
200 10585385 Leszek Koltunski
  Static4D[] getQuats()
201 e844c116 Leszek Koltunski
    {
202 10585385 Leszek Koltunski
    return QUATS;
203 e844c116 Leszek Koltunski
    }
204
205
///////////////////////////////////////////////////////////////////////////////////////////////////
206
207
  int getNumFaces()
208
    {
209
    return FACE_COLORS.length;
210
    }
211
212 8f53e513 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
213
214
  int getNumCubitFaces()
215
    {
216
    return FACE_COLORS.length;
217
    }
218
219 f0fa83ae Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
220
221
  float getScreenRatio()
222
    {
223 7381193e Leszek Koltunski
    return 0.82f;
224 f0fa83ae Leszek Koltunski
    }
225
226
///////////////////////////////////////////////////////////////////////////////////////////////////
227
228 14bd7976 Leszek Koltunski
  private MeshBase createStaticMesh(int cubit)
229 e844c116 Leszek Koltunski
    {
230 40ab026e Leszek Koltunski
    final float SQ2 = (float)Math.sqrt(2);
231
    final float SQ3 = (float)Math.sqrt(3);
232 988f434e Leszek Koltunski
    final float angleFaces = (float)((180/Math.PI)*(2*Math.asin(SQ3/3))); // angle between two faces of a tetrahedron
233
    final int MESHES=4;
234
235 40ab026e Leszek Koltunski
    int association = 1;
236 988f434e Leszek Koltunski
    MeshBase[] meshes = new MeshTriangles[MESHES];
237
238 fbca0033 Leszek Koltunski
    meshes[0] = new MeshTriangles(9);
239 e82f3f9c Leszek Koltunski
    meshes[0].setEffectAssociation(0,association,0);
240 988f434e Leszek Koltunski
241 40ab026e Leszek Koltunski
    for(int i=1; i<MESHES; i++)
242
      {
243
      association <<= 1;
244
      meshes[i] = meshes[0].copy(true);
245 e82f3f9c Leszek Koltunski
      meshes[i].setEffectAssociation(0,association,0);
246 40ab026e Leszek Koltunski
      }
247 988f434e Leszek Koltunski
248 40ab026e Leszek Koltunski
    MeshBase result = new MeshJoined(meshes);
249
250
    Static3D a0 = new Static3D(         0,        1,       0 );
251
    Static3D a1 = new Static3D(         0,  -1.0f/3, 2*SQ2/3 );
252
    Static3D a2 = new Static3D(-SQ2*SQ3/3,  -1.0f/3,  -SQ2/3 );
253
    Static3D a3 = new Static3D( SQ2*SQ3/3,  -1.0f/3,  -SQ2/3 );
254
255
    float tetraHeight = SQ2*SQ3/3;
256
    float d1 = 0.75f*tetraHeight;
257
    float d2 =-0.10f*tetraHeight;
258
    float d3 = 0.20f*tetraHeight;
259
260
    Static3D dCen0 = new Static3D( d1*a0.get0(), d1*a0.get1(), d1*a0.get2() );
261
    Static3D dCen1 = new Static3D( d1*a1.get0(), d1*a1.get1(), d1*a1.get2() );
262
    Static3D dCen2 = new Static3D( d1*a2.get0(), d1*a2.get1(), d1*a2.get2() );
263
    Static3D dCen3 = new Static3D( d1*a3.get0(), d1*a3.get1(), d1*a3.get2() );
264
265
    Static3D dVec0 = new Static3D( d2*a0.get0(), d2*a0.get1(), d2*a0.get2() );
266
    Static3D dVec1 = new Static3D( d2*a1.get0(), d2*a1.get1(), d2*a1.get2() );
267
    Static3D dVec2 = new Static3D( d2*a2.get0(), d2*a2.get1(), d2*a2.get2() );
268
    Static3D dVec3 = new Static3D( d2*a3.get0(), d2*a3.get1(), d2*a3.get2() );
269
270
    Static4D dReg  = new Static4D(0,0,0,d3);
271
    Static1D dRad  = new Static1D(1);
272
273
    Static1D angle  = new Static1D(angleFaces);
274
    Static3D axis1  = new Static3D(  -1, 0,      0);
275
    Static3D axis2  = new Static3D(0.5f, 0, -SQ3/2);
276
    Static3D axis3  = new Static3D(0.5f, 0, +SQ3/2);
277
    Static3D center1= new Static3D(0,-SQ3*SQ2/12,-SQ3/6);
278
    Static3D center2= new Static3D(0,-SQ3*SQ2/12,+SQ3/3);
279
280 14bd7976 Leszek Koltunski
    Static3D center = new Static3D(0,0,0);
281
    Static4D region = new Static4D(0,0,0,0.6f);
282
283 e82f3f9c Leszek Koltunski
    VertexEffectScale   effect1 = new VertexEffectScale ( new Static3D(1,SQ3/2,1) );
284 40ab026e Leszek Koltunski
    VertexEffectRotate  effect2 = new VertexEffectRotate( new Static1D(90), new Static3D(1,0,0), new Static3D(0,0,0) );
285 e82f3f9c Leszek Koltunski
    VertexEffectMove    effect3 = new VertexEffectMove  ( new Static3D(0,-SQ3*SQ2/12,SQ3/12) );
286 40ab026e Leszek Koltunski
    VertexEffectRotate  effect4 = new VertexEffectRotate( new Static1D(180), new Static3D(0,0,1), center1 );
287
    VertexEffectRotate  effect5 = new VertexEffectRotate( angle, axis1, center1 );
288
    VertexEffectRotate  effect6 = new VertexEffectRotate( angle, axis2, center2 );
289
    VertexEffectRotate  effect7 = new VertexEffectRotate( angle, axis3, center2 );
290
291 e82f3f9c Leszek Koltunski
    VertexEffectDeform  effect8 = new VertexEffectDeform(dVec0, dRad, dCen0, dReg);
292
    VertexEffectDeform  effect9 = new VertexEffectDeform(dVec1, dRad, dCen1, dReg);
293
    VertexEffectDeform  effect10= new VertexEffectDeform(dVec2, dRad, dCen2, dReg);
294
    VertexEffectDeform  effect11= new VertexEffectDeform(dVec3, dRad, dCen3, dReg);
295 40ab026e Leszek Koltunski
296 e82f3f9c Leszek Koltunski
    VertexEffectSink    effect12= new VertexEffectSink( new Static1D(1.3f), center, region );
297 14bd7976 Leszek Koltunski
298 e82f3f9c Leszek Koltunski
    effect4.setMeshAssociation(14,-1);  // apply to mesh[1], [2] and [3]
299
    effect5.setMeshAssociation( 2,-1);  // apply only to mesh[1]
300
    effect6.setMeshAssociation( 4,-1);  // apply only to mesh[2]
301
    effect7.setMeshAssociation( 8,-1);  // apply only to mesh[3]
302 40ab026e Leszek Koltunski
303
    result.apply(effect1);
304
    result.apply(effect2);
305
    result.apply(effect3);
306
    result.apply(effect4);
307
    result.apply(effect5);
308
    result.apply(effect6);
309
    result.apply(effect7);
310
    result.apply(effect8);
311
    result.apply(effect9);
312
    result.apply(effect10);
313
    result.apply(effect11);
314 14bd7976 Leszek Koltunski
    result.apply(effect12);
315 89a11f7b Leszek Koltunski
316
    if( mRotArray[cubit]>=0 )
317
      {
318
      result.apply( ROTATION[mRotArray[cubit]] );
319
      }
320
321 470820a7 Leszek Koltunski
    result.mergeEffComponents();
322
323 89a11f7b Leszek Koltunski
    return result;
324 e844c116 Leszek Koltunski
    }
325
326 40ab026e Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
327
328 14bd7976 Leszek Koltunski
  MeshBase createCubitMesh(int cubit)
329 40ab026e Leszek Koltunski
    {
330
    int kind = mRotArray[cubit];
331
332
    if( kind>=0 )
333
      {
334 14bd7976 Leszek Koltunski
      if( mMeshRotated[kind]==null ) mMeshRotated[kind] = createStaticMesh(cubit);
335 470820a7 Leszek Koltunski
      return mMeshRotated[kind].copy(true);
336 40ab026e Leszek Koltunski
      }
337
    else
338
      {
339 14bd7976 Leszek Koltunski
      if( mMesh==null ) mMesh = createStaticMesh(cubit);
340 470820a7 Leszek Koltunski
      return mMesh.copy(true);
341 40ab026e Leszek Koltunski
      }
342
    }
343
344 7289fd6c Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
345
346
  void createFaceTexture(Canvas canvas, Paint paint, int face, int left, int top, int side)
347
    {
348
    float STROKE = 0.06f*side;
349
    float OFF = STROKE/2 -1;
350
    float OFF2 = 0.5f*side + OFF;
351
    float HEIGHT = side - OFF;
352
    float RADIUS = side/12.0f;
353
    float ARC1_H = 0.2f*side;
354
    float ARC1_W = side*0.5f;
355
    float ARC2_W = 0.153f*side;
356
    float ARC2_H = 0.905f*side;
357
    float ARC3_W = side-ARC2_W;
358
359
    paint.setAntiAlias(true);
360
    paint.setStrokeWidth(STROKE);
361
    paint.setColor(FACE_COLORS[face]);
362
    paint.setStyle(Paint.Style.FILL);
363
364
    canvas.drawRect(left,top,left+side,top+side,paint);
365
366 14bd7976 Leszek Koltunski
    paint.setColor(INTERIOR_COLOR);
367 7289fd6c Leszek Koltunski
    paint.setStyle(Paint.Style.STROKE);
368
369
    canvas.drawLine(           left, HEIGHT,  side       +left, HEIGHT, paint);
370
    canvas.drawLine(      OFF +left, side  ,       OFF2  +left,      0, paint);
371
    canvas.drawLine((side-OFF)+left, side  , (side-OFF2) +left,      0, paint);
372
373
    canvas.drawArc( ARC1_W-RADIUS+left, ARC1_H-RADIUS, ARC1_W+RADIUS+left, ARC1_H+RADIUS, 225, 90, false, paint);
374
    canvas.drawArc( ARC2_W-RADIUS+left, ARC2_H-RADIUS, ARC2_W+RADIUS+left, ARC2_H+RADIUS, 105, 90, false, paint);
375
    canvas.drawArc( ARC3_W-RADIUS+left, ARC2_H-RADIUS, ARC3_W+RADIUS+left, ARC2_H+RADIUS, 345, 90, false, paint);
376
    }
377
378 e844c116 Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
379
// PUBLIC API
380
381 12ad3fca Leszek Koltunski
  public Static3D[] getRotationAxis()
382
    {
383
    return AXIS;
384
    }
385
386
///////////////////////////////////////////////////////////////////////////////////////////////////
387
388 e844c116 Leszek Koltunski
  public int getBasicAngle()
389
    {
390
    return 3;
391
    }
392 39e74052 Leszek Koltunski
393
///////////////////////////////////////////////////////////////////////////////////////////////////
394 8bbac3c2 Leszek Koltunski
// I don't quite understand it, but 0.82 works better than the theoretically correct SQ3/2 ( 0.866 )
395 39e74052 Leszek Koltunski
396 9621255f Leszek Koltunski
  public float returnMultiplier()
397 39e74052 Leszek Koltunski
    {
398 8bbac3c2 Leszek Koltunski
    return getSize()/0.82f;//(SQ3/2);
399 39e74052 Leszek Koltunski
    }
400 e46e17fb Leszek Koltunski
401 5cf34c5f Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
402
403
  public float[] getRowChances()
404
    {
405
    int size = getSize();
406
    int total = size*(size+1)/2;
407
    float running=0.0f;
408
    float[] chances = new float[size];
409
410
    for(int i=0; i<size; i++)
411
      {
412
      running += (size-i);
413
      chances[i] = running / total;
414
      }
415
416
    return chances;
417
    }
418
419 e46e17fb Leszek Koltunski
///////////////////////////////////////////////////////////////////////////////////////////////////
420
421
  public float returnRotationFactor(float offset)
422
    {
423
    int size = getSize();
424
    int row  = (int)(size*offset/(SQ3/2));
425
426
    return ((float)size)/(size-row);
427
    }
428 f0336037 Leszek Koltunski
429
///////////////////////////////////////////////////////////////////////////////////////////////////
430 418aa554 Leszek Koltunski
// TODO  (only needed for solvers - there are no Pyraminx solvers ATM)
431 f0336037 Leszek Koltunski
432 20931cf6 Leszek Koltunski
  public String retObjectString()
433 f0336037 Leszek Koltunski
    {
434
    return "";
435
    }
436 e844c116 Leszek Koltunski
}