Project

General

Profile

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

distorted-objectlib / src / main / java / org / distorted / objectlib / main / InitData.java @ a8295031

1
///////////////////////////////////////////////////////////////////////////////////////////////////
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
package org.distorted.objectlib.main;
21

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

    
24
public class InitData
25
  {
26
  private final int[] mNumLayers;
27
  private final int mParam;
28
  private final float[][] mPos;
29

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

    
32
  public InitData(int[] numLayers)
33
    {
34
    mNumLayers = numLayers;
35
    mParam = 0;
36
    mPos = null;
37
    }
38

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

    
41
  public InitData(int[] numLayers, int param)
42
    {
43
    mNumLayers = numLayers;
44
    mParam = param;
45
    mPos = null;
46
    }
47

    
48
///////////////////////////////////////////////////////////////////////////////////////////////////
49

    
50
  public InitData(int[] numLayers, float[][] pos)
51
    {
52
    mNumLayers = numLayers;
53
    mParam = 0;
54
    mPos = pos;
55
    }
56

    
57
///////////////////////////////////////////////////////////////////////////////////////////////////
58

    
59
  public int[] getNumLayers()
60
    {
61
    return mNumLayers;
62
    }
63

    
64
///////////////////////////////////////////////////////////////////////////////////////////////////
65

    
66
  public int getParam()
67
    {
68
    return mParam;
69
    }
70

    
71
///////////////////////////////////////////////////////////////////////////////////////////////////
72

    
73
  public float[][] getPos()
74
    {
75
    return mPos;
76
    }
77
}
(2-2/13)