Project

General

Profile

« Previous | Next » 

Revision a8295031

Added by Leszek Koltunski almost 2 years ago

Introduce InitData, a data structure used to initialize a TwistyObject.
Current (optional) members: int[] numLayers, int param [intended: type of the Crazy 3x3 planet], float[][] pos [position of a bandaged cube] )

View differences:

src/main/java/org/distorted/objectlib/objects/TwistyPyraminx.java
29 29

  
30 30
import org.distorted.objectlib.helpers.ObjectFaceShape;
31 31
import org.distorted.objectlib.helpers.ObjectSignature;
32
import org.distorted.objectlib.main.InitData;
32 33
import org.distorted.objectlib.touchcontrol.TouchControlTetrahedron;
33 34
import org.distorted.objectlib.main.ObjectType;
34 35
import org.distorted.objectlib.helpers.ObjectShape;
......
53 54

  
54 55
///////////////////////////////////////////////////////////////////////////////////////////////////
55 56

  
56
  public TwistyPyraminx(int[] numL, int meshState, int iconMode, Static4D quat, Static3D move, float scale, InputStream stream)
57
  public TwistyPyraminx(InitData data, int meshState, int iconMode, Static4D quat, Static3D move, float scale, InputStream stream)
57 58
    {
58
    super(numL, meshState, iconMode, numL[0], quat, move, scale, stream);
59
    super(data, meshState, iconMode, data.getNumLayers()[0], quat, move, scale, stream);
59 60
    }
60 61

  
61 62
///////////////////////////////////////////////////////////////////////////////////////////////////

Also available in: Unified diff